From 86870d83202bd830d95b56114c4769015f49d1f0 Mon Sep 17 00:00:00 2001 From: Vince Montalbano Date: Wed, 24 Jul 2024 16:01:42 -0500 Subject: [PATCH] fix incorrect values for init containers --- templates/gitea/act_runner/job.yaml | 2 +- templates/gitea/act_runner/statefulset.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/gitea/act_runner/job.yaml b/templates/gitea/act_runner/job.yaml index 587150f..795809f 100644 --- a/templates/gitea/act_runner/job.yaml +++ b/templates/gitea/act_runner/job.yaml @@ -32,7 +32,7 @@ spec: spec: initContainers: - name: init-gitea - image: "{{ .Values.actions.init.repository }}:{{ .Values.actions.init.tag }}" + image: "{{ .Values.actions.init.image.repository }}:{{ .Values.actions.init.image.tag }}" command: - sh - -c diff --git a/templates/gitea/act_runner/statefulset.yaml b/templates/gitea/act_runner/statefulset.yaml index 66e724a..c4d2375 100644 --- a/templates/gitea/act_runner/statefulset.yaml +++ b/templates/gitea/act_runner/statefulset.yaml @@ -28,7 +28,7 @@ spec: spec: initContainers: - name: init-gitea - image: "{{ .Values.actions.init.repository }}:{{ .Values.actions.init.tag }}" + image: "{{ .Values.actions.init.image.repository }}:{{ .Values.actions.init.image.tag }}" command: - sh - -c