main.yml 1.5 KB

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