mirror of
https://gitea.com/gitea/helm-actions.git
synced 2026-04-08 10:40:42 +00:00
feat: add ability to add custom arguments to the dind daemon
This commit is contained in:
@ -30,6 +30,7 @@
|
||||
## @param statefulset.dind.pullPolicy The Docker-in-Docker pullPolicy
|
||||
## @param statefulset.dind.extraVolumeMounts Allows mounting extra volumes in the Docker-in-Docker container
|
||||
## @param statefulset.dind.extraEnvs Allows adding custom environment variables, such as `DOCKER_IPTABLES_LEGACY`
|
||||
## @param statefulset.dind.extraArgs Allows adding custom arguments to the Docker Daemon
|
||||
## @param statefulset.persistence.size Size for persistence to store act runner data
|
||||
## @param statefulset.securityContext Customize the SecurityContext
|
||||
## @param statefulset.serviceAccountName Customize the service account name
|
||||
@ -90,6 +91,12 @@ statefulset:
|
||||
# - name: "DOCKER_IPTABLES_LEGACY"
|
||||
# value: "1"
|
||||
|
||||
# Option to manually override the commands given to the container/pod completely: #22
|
||||
extraArgs:
|
||||
#[]
|
||||
- --mtu=1400
|
||||
- anotherone
|
||||
|
||||
persistence:
|
||||
size: 1Gi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user