From 765afc3bfb169ebf772761511a09579ab077c13f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Groothuis?= Date: Tue, 28 Oct 2025 18:03:36 +0100 Subject: [PATCH] chore(gitea-runners): Updated values for Dind support --- manifests/artemis/gitea-runners/values.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/manifests/artemis/gitea-runners/values.yaml b/manifests/artemis/gitea-runners/values.yaml index 95258f2..4c497e0 100644 --- a/manifests/artemis/gitea-runners/values.yaml +++ b/manifests/artemis/gitea-runners/values.yaml @@ -37,7 +37,9 @@ statefulset: nodeSelector: {} tolerations: [] affinity: {} - extraVolumes: [] + extraVolumes: + - name: docker-sock + emptyDir: {} actRunner: repository: gitea/act_runner @@ -46,6 +48,7 @@ statefulset: extraVolumeMounts: - name: docker-sock mountPath: /var/run + readOnly: false # See full example here: https://gitea.com/gitea/act_runner/src/branch/main/internal/pkg/config/config.example.yaml config: | @@ -71,6 +74,7 @@ statefulset: extraVolumeMounts: - name: docker-sock mountPath: /var/run + readOnly: false # If the container keeps crashing in your environment, you might have to add the `DOCKER_IPTABLES_LEGACY` environment variable. # See https://github.com/docker-library/docker/issues/463#issuecomment-1881909456