From f97c972fb9848327e9d66678d81d296928deb520 Mon Sep 17 00:00:00 2001 From: Jason DeTiberus Date: Thu, 14 Jan 2016 14:57:28 -0500 Subject: Fix hardcoded api_port in openshift_master_cluster --- roles/openshift_master_cluster/tasks/configure.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'roles/openshift_master_cluster') diff --git a/roles/openshift_master_cluster/tasks/configure.yml b/roles/openshift_master_cluster/tasks/configure.yml index 7ab9afb51..1b94598dd 100644 --- a/roles/openshift_master_cluster/tasks/configure.yml +++ b/roles/openshift_master_cluster/tasks/configure.yml @@ -34,11 +34,10 @@ - name: Disable stonith command: pcs property set stonith-enabled=false -# TODO: handle case where api port is not 8443 - name: Wait for the clustered master service to be available wait_for: host: "{{ openshift_master_cluster_vip }}" - port: 8443 + port: "{{ openshift.master.api_port }}" state: started timeout: 180 delay: 90 -- cgit v1.2.1