Explorar el Código

Fix GCP master haproxy install check

Was failing if package was already installed.
Clayton Coleman hace 7 años
padre
commit
b81dda8e92
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      roles/openshift_gcp/tasks/configure_master_healthcheck.yml

+ 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