summaryrefslogtreecommitdiffstats
path: root/roles/etcd
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2015-12-16 14:14:42 -0500
committerScott Dodson <sdodson@redhat.com>2015-12-16 14:14:42 -0500
commit48778f29f265380a3e6fa2e882621ebc3781736b (patch)
tree72f5ff520cd5d5bc3594ece643b77bcde7a712f9 /roles/etcd
parent5e2e55e4aa09468a054ce7c9901c51d9563cc85a (diff)
downloadopenshift-48778f29f265380a3e6fa2e882621ebc3781736b.tar.gz
openshift-48778f29f265380a3e6fa2e882621ebc3781736b.tar.bz2
openshift-48778f29f265380a3e6fa2e882621ebc3781736b.tar.xz
openshift-48778f29f265380a3e6fa2e882621ebc3781736b.zip
Add some guards to wait for images to be pulled before moving on
Diffstat (limited to 'roles/etcd')
-rw-r--r--roles/etcd/tasks/main.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/roles/etcd/tasks/main.yml b/roles/etcd/tasks/main.yml
index a03c693d6..2160ed817 100644
--- a/roles/etcd/tasks/main.yml
+++ b/roles/etcd/tasks/main.yml
@@ -20,6 +20,16 @@
- name: Pull etcd container
command: docker pull {{ openshift.etcd.etcd_image }}
when: openshift.common.is_containerized | bool and openshift.etcd.etcd_image not in docker_images.stdout
+
+- name: Wait for etcd image
+ command: >
+ docker images
+ register: docker_images
+ until: openshift.etcd.etcd_image in docker_images.stdout
+ retries: 30
+ delay: 10
+ changed_when: false
+ when: openshift.common.is_containerized | bool
- name: Install etcd container service file
template: