1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- ---
- - name: Ensure project exists
- oc_project:
- name: openshift-node
- state: present
- node_selector:
- - ""
- - name: Make temp directory for templates
- command: mktemp -d /tmp/ansible-XXXXXX
- register: mktemp
- changed_when: False
- - name: Copy templates to temp directory
- copy:
- src: "{{ item }}"
- dest: "{{ mktemp.stdout }}/{{ item | basename }}"
- with_fileglob:
- - "files/*.yaml"
- - name: Update the image tag
- yedit:
- src: "{{ mktemp.stdout }}/sync-images.yaml"
- key: 'tag.from.name'
- value: "{{ osn_image }}"
- - name: Ensure the service account can run privileged
- oc_adm_policy_user:
- namespace: "openshift-node"
- resource_kind: scc
- resource_name: privileged
- state: present
- user: "system:serviceaccount:openshift-node:sync"
- # TODO: temporary until we fix apply for image stream tags
- - name: Remove the image stream tag
- command: >
- {{ openshift_client_binary }}
- --config={{ openshift.common.config_base }}/master/admin.kubeconfig
- delete -n openshift-node istag node:v3.11 --ignore-not-found
- register: l_os_istag_del
- # The istag might not be there, so we want to not fail in that case.
- failed_when:
- - l_os_istag_del.rc != 0
- - "'have a resource type' not in l_os_istag_del.stderr"
- - name: Apply the config
- shell: >
- {{ openshift_client_binary }} --config={{ openshift.common.config_base }}/master/admin.kubeconfig apply -f {{ mktemp.stdout }}
- - name: Remove temp directory
- file:
- state: absent
- name: "{{ mktemp.stdout }}"
- changed_when: False
- - name: Wait for the sync daemonset to become ready and available
- oc_obj:
- state: list
- kind: daemonset
- name: sync
- namespace: openshift-node
- register: __status_of_sync_ds
- until:
- - __status_of_sync_ds.results is defined
- - __status_of_sync_ds.results.results is defined
- - __status_of_sync_ds.results.results | length > 0
- - __status_of_sync_ds.results.results[0].status is defined
- - __status_of_sync_ds.results.results[0].status.numberAvailable is defined
- - __status_of_sync_ds.results.results[0].status.desiredNumberScheduled is defined
- - __status_of_sync_ds.results.results[0].status.numberAvailable == __status_of_sync_ds.results.results[0].status.desiredNumberScheduled
- retries: 60
- delay: 30
- failed_when: false
|