We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12d5ff7 commit 09da02cCopy full SHA for 09da02c
bin/update-ips.bash
@@ -521,7 +521,9 @@ allow_subnet() {
521
522
# Allowing the subnet is currently only supported for clusters setup with
523
# CAPI on OpenStack. Fallback on allowing individual nodes otherwise.
524
- if [ "$(yq_read "${cluster}" '.global.ck8sK8sInstaller' "")" != "capi" ] || [ "$(yq_read "${cluster}" '.global.ck8sCloudProvider' "")" != "openstack" ]; then
+ if [ "$(yq_read "${cluster}" '.global.ck8sK8sInstaller' "")" != "capi" ] ||
525
+ { [ "$(yq_read "${cluster}" '.global.ck8sCloudProvider' "")" != "openstack" ] &&
526
+ [ "$(yq_read "${cluster}" '.global.ck8sCloudProvider' "")" != "elastx" ]; }; then
527
allow_nodes "${cluster}" "${config_option}" "${label}"
528
return
529
fi
0 commit comments