main.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 }}
  21. --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  22. delete -n openshift-infra istag node:v3.11 --ignore-not-found
  23. register: l_os_istag_del
  24. # The istag might not be there, so we want to not fail in that case.
  25. failed_when:
  26. - l_os_istag_del.rc != 0
  27. - "'have a resource type' not in l_os_istag_del.stderr"
  28. - name: Apply the config
  29. command: >
  30. {{ openshift_client_binary }} apply -f "{{ mktemp.stdout }}"
  31. --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  32. - name: Remove temp directory
  33. file:
  34. state: absent
  35. name: "{{ mktemp.stdout }}"
  36. changed_when: False