accounts.yml 1.1 KB

12345678910111213141516171819202122232425262728
  1. ---
  2. # This role task file is responsible for user/system account creation,
  3. # and ensuring correct access is provided as required.
  4. - name: Ensure the CFME system accounts exist
  5. oc_serviceaccount:
  6. namespace: "{{ openshift_cfme_project }}"
  7. state: present
  8. name: "{{ openshift_cfme_flavor_short }}{{ item.name }}"
  9. with_items:
  10. - "{{ __openshift_system_account_sccs }}"
  11. - name: Ensure the CFME system accounts have all the required SCCs
  12. oc_adm_policy_user:
  13. namespace: "{{ openshift_cfme_project }}"
  14. user: "system:serviceaccount:{{ openshift_cfme_project }}:{{ openshift_cfme_flavor_short }}{{ item.name }}"
  15. resource_kind: scc
  16. resource_name: "{{ item.resource_name }}"
  17. with_items:
  18. - "{{ __openshift_system_account_sccs }}"
  19. - name: Ensure the CFME system accounts have the required roles
  20. oc_adm_policy_user:
  21. namespace: "{{ openshift_cfme_project }}"
  22. user: "system:serviceaccount:{{ openshift_cfme_project }}:{{ openshift_cfme_flavor_short }}{{ item.name }}"
  23. resource_kind: role
  24. resource_name: "{{ item.resource_name }}"
  25. with_items:
  26. - "{{ __openshift_cfme_system_account_roles }}"