Ver Fonte

Fix GCP master haproxy install check

Was failing if package was already installed.
Clayton Coleman há 7 anos atrás
pai
commit
b81dda8e92

+ 1 - 1
roles/openshift_gcp/tasks/configure_master_healthcheck.yml

@@ -8,7 +8,7 @@
 - name: install haproxy
   package: name=haproxy state=present
   register: result
-  until: '"failed" not in result'
+  until: result is succeeded
   retries: 10
   delay: 10