Skip to content

Commit

Permalink
OpenStack: use apiFloatingIP rather than lbFloatingIP
Browse files Browse the repository at this point in the history
We deprecated `lbFloatingIP` in favor of `apiFloatingIP` in
openshift/installer#4244.

Fixes OSASINFRA-2157
  • Loading branch information
mandre committed Jan 18, 2021
1 parent a2de6e7 commit 257d989
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ platform:
cloud: ${OS_CLOUD}
externalNetwork: ${OPENSTACK_EXTERNAL_NETWORK}
computeFlavor: ${OPENSTACK_COMPUTE_FLAVOR}
lbFloatingIP: ${LB_FIP_IP}
apiFloatingIP: ${LB_FIP_IP}
pullSecret: >
${PULL_SECRET}
sshKey: |
Expand All @@ -37,4 +37,4 @@ fi
# Lets check the syntax of yaml file by reading it.
python -c 'import yaml;
import sys;
data = yaml.safe_load(open(sys.argv[1]))' ${SHARED_DIR}/install-config.yaml
data = yaml.safe_load(open(sys.argv[1]))' ${SHARED_DIR}/install-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ objects:
cloud: ${OS_CLOUD}
externalNetwork: ${OPENSTACK_EXTERNAL_NETWORK}
computeFlavor: ${OPENSTACK_FLAVOR}
lbFloatingIP: ${LB_FIP}
apiFloatingIP: ${LB_FIP}
pullSecret: >
${PULL_SECRET}
sshKey: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ objects:
cloud: ${OS_CLOUD}
computeFlavor: ${OPENSTACK_FLAVOR}
externalNetwork: ${OPENSTACK_EXTERNAL_NETWORK}
lbFloatingIP: ${LB_FIP_IP}
apiFloatingIP: ${LB_FIP_IP}
pullSecret: >
${PULL_SECRET}
Expand Down

0 comments on commit 257d989

Please sign in to comment.