1
0
mirror of https://github.com/openshift/openshift-ansible.git synced 2026-02-05 15:45:57 +01:00

Use mcd_endpoint in deploy_cluster_40 playbook

This commit is contained in:
Vadim Rutkovsky
2018-12-14 10:01:34 +01:00
parent 1ccb6964ee
commit c4f28fab9c
2 changed files with 3 additions and 3 deletions

View File

@@ -44,7 +44,7 @@
tasks:
# This is required for openshift_node40/config.yml
- set_fact:
openshift_bootstrap_endpoint: "https://{{ openshift_master_cluster_hostname }}:{{ mcd_port }}/config/master"
openshift_bootstrap_endpoint: "{{ mcd_endpoint }}/config/master"
- name: Wait for bootstrap endpoint to show up
uri:
url: "{{ openshift_bootstrap_endpoint }}"
@@ -70,7 +70,7 @@
tasks:
# This is required for openshift_node40/config.yml
- set_fact:
openshift_bootstrap_endpoint: "https://{{ openshift_master_cluster_hostname }}:{{ mcd_port }}/config/worker"
openshift_bootstrap_endpoint: "{{ mcd_endpoint }}/config/worker"
- name: Wait for bootstrap endpoint to show up
uri:
url: "{{ openshift_bootstrap_endpoint }}"