registry_service_account.yml 577 B

123456789101112131415
  1. ---
  2. - name: create registry serviceaccount
  3. oc_serviceaccount:
  4. state: present
  5. name: "{{ openshift_hosted_registry_serviceaccount }}"
  6. namespace: "{{ openshift_hosted_registry_namespace }}"
  7. changed_when: no
  8. - name: grant the system:registry role to registry serviceaccount
  9. oc_adm_policy_user:
  10. state: present
  11. namespace: "{{ openshift_hosted_registry_namespace }}"
  12. resource_kind: cluster-role
  13. resource_name: system:registry
  14. user: "system:serviceaccount:{{ openshift_hosted_registry_namespace }}:{{ openshift_hosted_registry_serviceaccount }}"