Merge pull request #15904 from hakuna-matatah/master

Increase vpc cidrs to allocate more ip's for large scale k8s clusters
This commit is contained in:
Kubernetes Prow Robot 2023-09-12 12:32:13 -07:00 committed by GitHub
commit 71c4993637
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ echo "ADMIN_ACCESS=${ADMIN_ACCESS}"
# cilium does not yet pass conformance tests (shared hostport test) # cilium does not yet pass conformance tests (shared hostport test)
#create_args="--networking cilium" #create_args="--networking cilium"
create_args=() create_args=()
create_args=("--network-cidr=10.0.0.0/16,10.1.0.0/16,10.2.0.0/16,10.3.0.0/16,10.4.0.0/16") create_args=("--network-cidr=10.0.0.0/16,10.1.0.0/16,10.2.0.0/16,10.3.0.0/16,10.4.0.0/16,10.5.0.0/16,10.6.0.0/16,10.7.0.0/16,10.8.0.0/16,10.9.0.0/16")
create_args+=("--networking=${CNI_PLUGIN:-calico}") create_args+=("--networking=${CNI_PLUGIN:-calico}")
if [[ "${CNI_PLUGIN}" == "amazonvpc" ]]; then if [[ "${CNI_PLUGIN}" == "amazonvpc" ]]; then
create_args+=("--set spec.networking.amazonVPC.env=ENABLE_PREFIX_DELEGATION=true") create_args+=("--set spec.networking.amazonVPC.env=ENABLE_PREFIX_DELEGATION=true")