main.yml 1.1 KB

12345678910111213141516171819202122232425262728
  1. - name: Create service account configs
  2. template:
  3. src: serviceaccount.j2
  4. dest: "/tmp/{{ item }}-serviceaccount.yaml"
  5. with_items: accounts
  6. - name: Create {{ item }} service account
  7. command: >
  8. {{ openshift.common.client_binary }} create -f "/tmp/{{ item }}-serviceaccount.yaml"
  9. with_items: accounts
  10. register: _sa_result
  11. failed_when: "'serviceaccounts \"{{ item }}\" already exists' not in _sa_result.stderr and _sa_result.rc != 0"
  12. changed_when: "'serviceaccounts \"{{ item }}\" already exists' not in _sa_result.stderr and _sa_result.rc == 0"
  13. - name: Get current security context constraints
  14. shell: >
  15. {{ openshift.common.client_binary }} get scc privileged -o yaml
  16. --output-version=v1 > /tmp/scc.yaml
  17. - name: Add security context constraint for {{ item }}
  18. lineinfile:
  19. dest: /tmp/scc.yaml
  20. line: "- system:serviceaccount:default:{{ item }}"
  21. insertafter: "^users:$"
  22. with_items: accounts
  23. - name: Apply new scc rules for service accounts
  24. command: "{{ openshift.common.client_binary }} update -f /tmp/scc.yaml --api-version=v1"