Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MGMT-15732: Fix unbound variable #5493

Merged
merged 1 commit into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy/operator/capi/deploy_capi_cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export LOAD_BALANCER_IP="${LOAD_BALANCER_IP:-192.168.111.1}"
export HYPERSHIFT_IMAGE="${HYPERSHIFT_IMAGE:-quay.io/hypershift/hypershift-operator:latest}"
export CONTROL_PLANE_OPERATOR_IMAGE="${CONTROL_PLANE_OPERATOR_IMAGE:-}"
export PROVIDER_IMAGE="${PROVIDER_IMAGE:-}"
export EXTRA_HYPERSHIFT_INSTALL_FLAGS="${EXTRA_HYPERSHIFT_INSTALL_FLAGS}"
export EXTRA_HYPERSHIFT_INSTALL_FLAGS="${EXTRA_HYPERSHIFT_INSTALL_FLAGS:-}"

if [[ ${SPOKE_CONTROLPLANE_AGENTS} -eq 1 ]]; then
export USER_MANAGED_NETWORKING="true"
Expand Down
2 changes: 1 addition & 1 deletion deploy/operator/hypershift/deploy_hypershift_cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export CLUSTER_HOST_PREFIX="${CLUSTER_HOST_PREFIX_V4}"
export EXTERNAL_SUBNET="${EXTERNAL_SUBNET_V4}"
export SERVICE_SUBNET="${SERVICE_SUBNET_V4}"
export PUBLIC_CONTAINER_REGISTRIES="${PUBLIC_CONTAINER_REGISTRIES:-quay.io}"
export EXTRA_HYPERSHIFT_INSTALL_FLAGS="${EXTRA_HYPERSHIFT_INSTALL_FLAGS}"
export EXTRA_HYPERSHIFT_INSTALL_FLAGS="${EXTRA_HYPERSHIFT_INSTALL_FLAGS:-}"

set -o nounset
set -o pipefail
Expand Down