Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support building large images in DinD container #3369

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions charts/gha-runner-scale-set/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,24 @@ template:
## mountPath: /var/run
## - name: dind-externals
## mountPath: /home/runner/externals
## - name: pod-scratch
## mountPath: /var/lib/docker
## volumes:
## - name: work
## emptyDir: {}
## - name: dind-sock
## emptyDir: {}
## - name: dind-externals
## emptyDir: {}
## # Store docker image layers in PVC to avoid pod eviction due to exceeding node storage limits
## - name: pod-scratch
## ephemeral:
## volumeClaimTemplate:
## spec:
## accessModes: [ "ReadWriteOnce" ]
## resources:
## requests:
## storage: 100Gi # Adjust based on expected docker image size
######################################################################################################
## with containerMode.type=kubernetes, we will populate the template.spec with following pod spec
## template:
Expand Down