Skip to content

Commit

Permalink
gha: increase GKE disk size in external workloads workflow to 15GB
Browse files Browse the repository at this point in the history
Recently, I've been hitting pretty consistent issues on this workflow
caused by pods being evicted due to DiskPressure. Let's try increasing
the disk size from 10GB to 15GB to see if the situation stabilizes.

Signed-off-by: Marco Iorio <[email protected]>
  • Loading branch information
giorio94 authored and michi-covalent committed Feb 15, 2024
1 parent 67e54f2 commit f3dfda5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/externalworkloads.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
--zone ${{ env.zone }} \
--machine-type e2-custom-2-4096 \
--boot-disk-type pd-standard \
--boot-disk-size 10GB \
--boot-disk-size 15GB \
--preemptible \
--image-project ubuntu-os-cloud \
--image-family ubuntu-2004-lts \
Expand All @@ -126,7 +126,7 @@ jobs:
--num-nodes 2 \
--machine-type e2-custom-2-4096 \
--disk-type pd-standard \
--disk-size 10GB \
--disk-size 15GB \
--node-taints node.cilium.io/agent-not-ready=true:NoExecute \
--preemptible
CLUSTER_CIDR=$(gcloud container clusters describe ${{ env.clusterName }} --zone ${{ env.zone }} --format="value(clusterIpv4Cidr)")
Expand Down

0 comments on commit f3dfda5

Please sign in to comment.