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

HOSTEDCP-999: Missed service-cidr for capi ipv6 CI test #5721

Merged
merged 1 commit into from Nov 23, 2023
Merged
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
4 changes: 2 additions & 2 deletions deploy/operator/capi/deploy_capi_cluster.sh
Expand Up @@ -48,8 +48,8 @@ elif [[ "${IP_STACK}" == "v6" ]]; then
export CLUSTER_HOST_PREFIX="${CLUSTER_HOST_PREFIX_V6}"
export EXTERNAL_SUBNET="${EXTERNAL_SUBNET_V6}"
export SERVICE_SUBNET="${SERVICE_SUBNET_V6}"
# IPv6 requires hypershift create cluster cidr override
export EXTRA_HYPERSHIFT_CREATE_COMMANDS="$EXTRA_HYPERSHIFT_CREATE_COMMANDS --cluster-cidr fd01::/48"
# IPv6 requires hypershift create cluster and service cidr overrides
export EXTRA_HYPERSHIFT_CREATE_COMMANDS="$EXTRA_HYPERSHIFT_CREATE_COMMANDS --cluster-cidr fd01::/48 --service-cidr fd02::/112"
elif [[ "${IP_STACK}" == "v4v6" ]]; then
export CLUSTER_SUBNET="${CLUSTER_SUBNET_V4}"
export CLUSTER_HOST_PREFIX="${CLUSTER_HOST_PREFIX_V4}"
Expand Down