Skip to content

Commit

Permalink
fix(test): aligned pod cidr overlapped to 10.200.0.0/16
Browse files Browse the repository at this point in the history
  • Loading branch information
fra98 committed Mar 7, 2025
1 parent 0ddc0b2 commit 21a8334
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/e2e/pipeline/infra/aks/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ do
POD_CIDR=""
if [[ ${CNI} != "azure-flat" ]]; then
if [[ ${POD_CIDR_OVERLAPPING} == "true" ]]; then
POD_CIDR="10.50.0.0/16"
POD_CIDR="10.200.0.0/16"
else
POD_CIDR="10.$((i * 10)).0.0/16"
fi
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/pipeline/infra/gke/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function gke_create_cluster() {

pod_cidr=10.${index}.0.0/16
if [[ ${POD_CIDR_OVERLAPPING} == "true" ]]; then
pod_cidr=10.0.0.0/16
pod_cidr=10.200.0.0/16
fi

"${GCLOUD}" container --project "${GCLOUD_PROJECT_ID}" clusters create "${cluster_id}" --zone "${cluster_zone}" \
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/pipeline/installer/liqo/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function get_cluster_labels() {
LIQO_VERSION="${LIQO_VERSION:-$(git rev-parse HEAD)}"

export SERVICE_CIDR=10.100.0.0/16
export POD_CIDR=10.0.0.0/16
export POD_CIDR=10.200.0.0/16
export POD_CIDR_OVERLAPPING=${POD_CIDR_OVERLAPPING:-"false"}
export HA_REPLICAS=2

Expand Down

0 comments on commit 21a8334

Please sign in to comment.