|
@@ -47,12 +47,12 @@
|
|
|
|
|
|
- name: Pull node image
|
|
|
command: >
|
|
|
- docker pull {{ openshift.node.node_image }}
|
|
|
+ docker pull {{ openshift.node.node_image }}:{{ openshift_version }}
|
|
|
when: openshift.common.is_containerized | bool
|
|
|
|
|
|
- name: Pull OpenVSwitch image
|
|
|
command: >
|
|
|
- docker pull {{ openshift.node.ovs_image }}
|
|
|
+ docker pull {{ openshift.node.ovs_image }}:{{ openshift_version }}
|
|
|
when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | bool
|
|
|
|
|
|
- name: Install Node docker service file
|
|
@@ -124,9 +124,9 @@
|
|
|
# Using curl here since the uri module requires python-httplib2 and
|
|
|
# wait_for port doesn't provide health information.
|
|
|
command: >
|
|
|
- curl -k --head --silent {{ openshift_node_master_api_url }}
|
|
|
+ curl -k --silent {{ openshift_node_master_api_url }}/healthz/ready
|
|
|
register: api_available_output
|
|
|
- until: api_available_output.stdout.find("200 OK") != -1
|
|
|
+ until: api_available_output.stdout == 'ok'
|
|
|
retries: 120
|
|
|
delay: 1
|
|
|
changed_when: false
|