From f53cce8f3df1b76f279585220b31ba19e64aaa5b Mon Sep 17 00:00:00 2001 From: Vitali Quiering Date: Mon, 9 Oct 2023 17:17:00 +0200 Subject: [PATCH] Update mountPath and image repository in deployment - Changed the mountPath from /opt/act_runner to /data in deployment.yaml - Updated the image repository from vqui/act_runner to gitea/act_runner in values.yaml --- templates/deployment.yaml | 2 +- values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/deployment.yaml b/templates/deployment.yaml index ae5ff59..5a0fe5e 100644 --- a/templates/deployment.yaml +++ b/templates/deployment.yaml @@ -53,7 +53,7 @@ spec: - name: docker-data mountPath: /shared - name: {{ include "act_runner.fullname" . }}-pvc - mountPath: /opt/act_runner + mountPath: /data - name: act-runner-dind securityContext: privileged: true diff --git a/values.yaml b/values.yaml index 4f789c1..14bf3d8 100644 --- a/values.yaml +++ b/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 image: - repository: vqui/act_runner + repository: gitea/act_runner pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "0.2.6"