Browse Source

Fix GCP master haproxy install check

Was failing if package was already installed.
Clayton Coleman 7 years ago
parent
commit
b81dda8e92
1 changed files with 1 additions and 1 deletions
  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