main.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. - name: test if service accounts exists
  3. command: >
  4. {{ openshift.common.client_binary }} get sa {{ item }} -n {{ openshift_serviceaccounts_namespace }}
  5. with_items: "{{ openshift_serviceaccounts_names }}"
  6. failed_when: false
  7. changed_when: false
  8. register: account_test
  9. - name: create the service account
  10. shell: >
  11. echo {{ lookup('template', '../templates/serviceaccount.j2')
  12. | from_yaml | to_json | quote }} | {{ openshift.common.client_binary }}
  13. -n {{ openshift_serviceaccounts_namespace }} create -f -
  14. when: item.1.rc != 0
  15. with_together:
  16. - "{{ openshift_serviceaccounts_names }}"
  17. - "{{ account_test.results }}"
  18. - name: test if scc needs to be updated
  19. command: >
  20. {{ openshift.common.client_binary }} get scc {{ item }} -o yaml
  21. changed_when: false
  22. failed_when: false
  23. register: scc_test
  24. with_items: "{{ openshift_serviceaccounts_sccs }}"
  25. - name: Grant the user access to the appropriate scc
  26. command: >
  27. {{ openshift.common.client_binary }} adm policy add-scc-to-user
  28. {{ item.1.item }} system:serviceaccount:{{ openshift_serviceaccounts_namespace }}:{{ item.0 }}
  29. when: "openshift.common.version_gte_3_1_or_1_1 and item.1.rc == 0 and 'system:serviceaccount:{{ openshift_serviceaccounts_namespace }}:{{ item.0 }}' not in {{ (item.1.stdout | from_yaml).users | default([]) }}"
  30. with_nested:
  31. - "{{ openshift_serviceaccounts_names }}"
  32. - "{{ scc_test.results }}"
  33. - include: legacy_add_scc_to_user.yml
  34. when: not openshift.common.version_gte_3_1_or_1_1