main.yml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ---
  2. - name: Ensure project exists
  3. oc_project:
  4. name: openshift-sdn
  5. state: present
  6. node_selector:
  7. - ""
  8. - name: Make temp directory for templates
  9. command: mktemp -d /tmp/ansible-XXXXXX
  10. register: mktemp
  11. changed_when: False
  12. - name: Copy templates to temp directory
  13. copy:
  14. src: "{{ item }}"
  15. dest: "{{ mktemp.stdout }}/{{ item | basename }}"
  16. with_fileglob:
  17. - "files/*.yaml"
  18. when:
  19. - not ((item | basename == 'sdn-ovs.yaml') and openshift_use_external_openvswitch)
  20. - name: Update the image tag
  21. yedit:
  22. src: "{{ mktemp.stdout }}/sdn-images.yaml"
  23. key: 'tag.from.name'
  24. value: "{{ osn_image }}"
  25. - name: Ensure the service account can run privileged
  26. oc_adm_policy_user:
  27. namespace: "openshift-sdn"
  28. resource_kind: scc
  29. resource_name: privileged
  30. state: present
  31. user: "system:serviceaccount:openshift-sdn:sdn"
  32. # TODO: temporary until we fix apply for image stream tags
  33. - name: Remove the image stream tag
  34. command: >
  35. {{ openshift_client_binary }}
  36. --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  37. delete -n openshift-sdn istag node:v3.11 --ignore-not-found
  38. register: l_os_istag_del
  39. # The istag might not be there, so we want to not fail in that case.
  40. failed_when:
  41. - l_os_istag_del.rc != 0
  42. - "'have a resource type' not in l_os_istag_del.stderr"
  43. - name: Apply the config
  44. shell: >
  45. {{ openshift_client_binary }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig apply -f "{{ mktemp.stdout }}"
  46. - name: Remove temp directory
  47. file:
  48. state: absent
  49. name: "{{ mktemp.stdout }}"
  50. changed_when: False