From 57e49b87008014fd874d45744787fe21ad2407e3 Mon Sep 17 00:00:00 2001 From: Daan Selen Date: Wed, 1 Apr 2026 23:52:41 +0200 Subject: [PATCH] fix: wrong mount path on rootless dind --- templates/statefulset.yaml | 2 +- values.yaml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/templates/statefulset.yaml b/templates/statefulset.yaml index 5cb8fde..67fe2db 100644 --- a/templates/statefulset.yaml +++ b/templates/statefulset.yaml @@ -86,7 +86,7 @@ spec: {{- toYaml .Values.statefulset.resources | nindent 12 }} volumeMounts: {{- if .Values.statefulset.dind.rootless }} - - mouthPath: /run/user/{{ .Values.statefulset.dind.uid | default 1000 }}/ + - mountPath: /run/user/{{ .Values.statefulset.dind.uid | default 1000 }}/ {{- else }} - mountPath: /var/run/ {{- end }} diff --git a/values.yaml b/values.yaml index 015b639..5e1a93a 100644 --- a/values.yaml +++ b/values.yaml @@ -33,7 +33,7 @@ ## @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 -enabled: false +enabled: true statefulset: replicas: 1 timezone: Etc/UTC @@ -73,11 +73,11 @@ statefulset: docker_timeout: 300s dind: - rootless: false + rootless: true uid: "" registry: "docker.io" repository: docker - tag: 29.3.1-dind + tag: 29.3.1-dind-rootless digest: "" pullPolicy: IfNotPresent fullOverride: "" @@ -115,13 +115,13 @@ init: # ## @param existingSecret Secret that contains the token ## @param existingSecretKey Secret key -existingSecret: "" -existingSecretKey: "" +existingSecret: "runner-secret" +existingSecretKey: "runner-token" ## @section Gitea URL Setting # ## @param giteaRootURL URL the act_runner registers and connect with -giteaRootURL: "" +giteaRootURL: "https://gitea.com" ## @section Extra Init Containers #