main.yml 1.1 KB

12345678910111213141516171819202122232425262728
  1. ---
  2. - name: create the service account
  3. oc_serviceaccount:
  4. name: "{{ item }}"
  5. namespace: "{{ openshift_serviceaccounts_namespace }}"
  6. state: present
  7. with_items:
  8. - "{{ openshift_serviceaccounts_names }}"
  9. - name: test if scc needs to be updated
  10. command: >
  11. {{ openshift.common.client_binary }} get scc {{ item }} -o yaml
  12. changed_when: false
  13. failed_when: false
  14. register: scc_test
  15. with_items: "{{ openshift_serviceaccounts_sccs }}"
  16. - name: Grant the user access to the appropriate scc
  17. command: >
  18. {{ openshift.common.client_binary }} adm policy add-scc-to-user
  19. {{ item.1.item }} system:serviceaccount:{{ openshift_serviceaccounts_namespace }}:{{ item.0 }}
  20. 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([]) }}"
  21. with_nested:
  22. - "{{ openshift_serviceaccounts_names }}"
  23. - "{{ scc_test.results }}"
  24. - include: legacy_add_scc_to_user.yml
  25. when: not openshift.common.version_gte_3_1_or_1_1