Skip to content

Commit

Permalink
fix list of zones
Browse files Browse the repository at this point in the history
  • Loading branch information
halamix2 committed May 16, 2024
1 parent 01754eb commit 4489f81
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
1 change: 0 additions & 1 deletion tests/integration/scripts/custom-domain-gardener-aws-gh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export SCALER_MAX=3
export SCALER_MIN=1
export GARDENER_PROVIDER="aws"
export GARDENER_REGION="eu-west-1"
export GARDENER_ZONES="eu-west-1b,eu-west-1c,eu-west-1a"
export GARDENER_PROVIDER_SECRET_NAME="aws-gardener-access"
export GARDENER_PROJECT_NAME="goatz"
export GARDENER_CLUSTER_VERSION="1.27.8"
Expand Down
1 change: 0 additions & 1 deletion tests/integration/scripts/custom-domain-gardener-gcp-gh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export SCALER_MAX=3
export SCALER_MIN=1
export GARDENER_PROVIDER="gcp"
export GARDENER_REGION="europe-west3"
export GARDENER_ZONES="europe-west3-c,europe-west3-b,europe-west3-a"
export GARDENER_PROVIDER_SECRET_NAME="goat"
export GARDENER_PROJECT_NAME="goatz"
export GARDENER_CLUSTER_VERSION="1.27.8"
Expand Down
18 changes: 14 additions & 4 deletions tests/integration/scripts/shoot_aws.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,18 @@ spec:
vpc:
cidr: 10.250.0.0/16
zones:
- name: ${GARDENER_ZONES}
internal: 10.250.112.0/22
public: 10.250.96.0/22
- name: ${GARDENER_REGION}a
internal: 10.250.48.0/20
public: 10.250.32.0/20
workers: 10.250.0.0/19
- name: ${GARDENER_REGION}b
internal: 10.250.112.0/20
public: 10.250.96.0/20
workers: 10.250.64.0/19
- name: ${GARDENER_REGION}c
internal: 10.250.176.0/20
public: 10.250.160.0/20
workers: 10.250.128.0/19
workers:
- name: cpu-worker
minimum: ${SCALER_MIN}
Expand All @@ -30,7 +38,9 @@ spec:
type: ${DISK_TYPE}
size: ${DISK_SIZE}Gi
zones:
- ${GARDENER_ZONES}
- ${GARDENER_REGION}a
- ${GARDENER_REGION}b
- ${GARDENER_REGION}c
networking:
type: calico
pods: 100.96.0.0/11
Expand Down
6 changes: 4 additions & 2 deletions tests/integration/scripts/shoot_gcp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
controlPlaneConfig:
apiVersion: gcp.provider.extensions.gardener.cloud/v1alpha1
kind: ControlPlaneConfig
zone: ${GARDENER_ZONES}
zone: ${GARDENER_REGION}-a
workers:
- name: cpu-worker
minimum: ${SCALER_MIN}
Expand All @@ -28,7 +28,9 @@ spec:
type: ${DISK_TYPE}
size: ${DISK_SIZE}Gi
zones:
- ${GARDENER_ZONES}
- ${GARDENER_REGION}-a
- ${GARDENER_REGION}-b
- ${GARDENER_REGION}-c
networking:
type: calico
pods: 100.96.0.0/11
Expand Down

0 comments on commit 4489f81

Please sign in to comment.