Skip to content

Commit d0833cd

Browse files
brlbilaanm
authored andcommitted
Change GKE cluster creation
This commit aligns GKE cluster creation with the cilium repository standards, resolving network exhaustion issues in workflow runs. Signed-off-by: Birol Bilgin <[email protected]>
1 parent 7d1a38d commit d0833cd

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/conformance-gke.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,16 @@ jobs:
7878
gcloud container clusters create ${{ env.clusterName }} \
7979
--labels "usage=${{ github.repository_owner }}-${{ github.event.repository.name }},owner=${{ steps.vars.outputs.owner }}" \
8080
--zone ${{ env.zone }} \
81+
--enable-ip-alias \
82+
--create-subnetwork="range=/26" \
83+
--cluster-ipv4-cidr="/21" \
84+
--services-ipv4-cidr="/24" \
8185
--image-type COS_CONTAINERD \
8286
--num-nodes 2 \
8387
--machine-type e2-custom-2-4096 \
8488
--disk-type pd-standard \
85-
--disk-size 10GB \
89+
--disk-size 20GB \
8690
--node-taints node.cilium.io/agent-not-ready=true:NoSchedule \
87-
--preemptible
8891
8992
- name: Get cluster credentials
9093
run: |

0 commit comments

Comments
 (0)