main.yml 1012 B

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. - name: Make temp directory for templates
  3. command: mktemp -d /tmp/ansible-XXXXXX
  4. register: mktemp
  5. changed_when: False
  6. - name: Copy templates to temp directory
  7. copy:
  8. src: "{{ item }}"
  9. dest: "{{ mktemp.stdout }}/{{ item | basename }}"
  10. with_fileglob:
  11. - "files/*.yaml"
  12. - name: Update the image tag
  13. yedit:
  14. src: "{{ mktemp.stdout }}/openshift-bootstrap-images.yaml"
  15. key: 'tag.from.name'
  16. value: "{{ osn_image }}"
  17. # TODO: temporary until we fix apply for image stream tags
  18. - name: Remove the image stream tag
  19. command: >
  20. {{ openshift_client_binary }} delete -n openshift-infra istag node:v3.11 --ignore-not-found
  21. --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  22. - name: Apply the config
  23. command: >
  24. {{ openshift_client_binary }} apply -f "{{ mktemp.stdout }}"
  25. --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  26. - name: Remove temp directory
  27. file:
  28. state: absent
  29. name: "{{ mktemp.stdout }}"
  30. changed_when: False