accounts.yml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. ---
  2. # This role task file is responsible for user/system account creation,
  3. # and ensuring correct access is provided as required.
  4. # TODO: This is currently not idempotent, bug report will be filed
  5. # after this. Currently this task will return 'changed' if it just
  6. # created a user, updated a user, or doesn't modify a user at
  7. # all. Seems to be failing some kind of 'does it need updating' test
  8. # condition and running the replace command regardless.
  9. - name: Check if the miq-httpd scc exists
  10. oc_obj:
  11. namespace: "{{ openshift_cfme_project }}"
  12. state: list
  13. kind: scc
  14. name: miq-httpd
  15. register: miq_httpd_scc_exists
  16. # TODO: Cleanup when conditions
  17. - name: Copy the miq-httpd SCC to the cluster
  18. copy:
  19. src: miq-scc-httpd.yaml
  20. dest: "{{ template_dir }}"
  21. when:
  22. - miq_httpd_scc_exists.results.results | length == 1
  23. - miq_httpd_scc_exists.results.results[0] == {}
  24. - name: Ensure the CFME miq-httpd SCC exists
  25. oc_obj:
  26. state: present
  27. name: miq-httpd
  28. namespace: "{{ openshift_cfme_project }}"
  29. kind: scc
  30. files:
  31. - "{{ template_dir }}/miq-scc-httpd.yaml"
  32. delete_after: True
  33. run_once: True
  34. when:
  35. - miq_httpd_scc_exists.results.results | length == 1
  36. - miq_httpd_scc_exists.results.results[0] == {}
  37. - name: Ensure the CFME system users exist
  38. oc_serviceaccount:
  39. namespace: "{{ openshift_cfme_project }}"
  40. state: present
  41. name: "{{ item.name }}"
  42. with_items:
  43. - "{{ openshift_system_account_sccs }}"
  44. - name: Ensure the CFME system accounts have all the required SCCs
  45. oc_adm_policy_user:
  46. namespace: "{{ openshift_cfme_project }}"
  47. user: "system:serviceaccount:{{ openshift_cfme_project }}:{{ item.name }}"
  48. resource_kind: scc
  49. resource_name: "{{ item.resource_name }}"
  50. with_items:
  51. - "{{ openshift_system_account_sccs }}"
  52. - name: Ensure the CFME system accounts have the required roles
  53. oc_adm_policy_user:
  54. namespace: "{{ openshift_cfme_project }}"
  55. user: "system:serviceaccount:{{ openshift_cfme_project }}:{{ item.name }}"
  56. resource_kind: role
  57. resource_name: "{{ item.resource_name }}"
  58. with_items:
  59. - "{{ openshift_cfme_system_account_roles }}"