sync.yml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. ---
  2. - name: Ensure project exists
  3. oc_project:
  4. name: openshift-node
  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. - name: Update the image tag
  19. yedit:
  20. src: "{{ mktemp.stdout }}/sync-images.yaml"
  21. key: 'tag.from.name'
  22. value: "{{ osn_image }}"
  23. - name: Ensure the service account can run privileged
  24. oc_adm_policy_user:
  25. namespace: "openshift-node"
  26. resource_kind: scc
  27. resource_name: privileged
  28. state: present
  29. user: "system:serviceaccount:openshift-node:sync"
  30. # TODO: temporary until we fix apply for image stream tags
  31. - name: Remove the image stream tag
  32. command: >
  33. {{ openshift_client_binary }}
  34. --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  35. delete -n openshift-node istag node:v3.11 --ignore-not-found
  36. register: l_os_istag_del
  37. # The istag might not be there, so we want to not fail in that case.
  38. failed_when:
  39. - l_os_istag_del.rc != 0
  40. - "'have a resource type' not in l_os_istag_del.stderr"
  41. - name: Apply the config
  42. shell: >
  43. {{ openshift_client_binary }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig apply -f {{ mktemp.stdout }}
  44. - name: Remove temp directory
  45. file:
  46. state: absent
  47. name: "{{ mktemp.stdout }}"
  48. changed_when: False
  49. - name: Wait for the sync daemonset to become ready and available
  50. oc_obj:
  51. state: list
  52. kind: daemonset
  53. name: sync
  54. namespace: openshift-node
  55. register: __status_of_sync_ds
  56. until:
  57. - __status_of_sync_ds.results is defined
  58. - __status_of_sync_ds.results.results is defined
  59. - __status_of_sync_ds.results.results | length > 0
  60. - __status_of_sync_ds.results.results[0].status is defined
  61. - __status_of_sync_ds.results.results[0].status.numberAvailable is defined
  62. - __status_of_sync_ds.results.results[0].status.desiredNumberScheduled is defined
  63. - __status_of_sync_ds.results.results[0].status.numberAvailable == __status_of_sync_ds.results.results[0].status.desiredNumberScheduled
  64. retries: 60
  65. delay: 30
  66. failed_when: false