This commit is contained in:
Nikola Jokic
2026-02-10 16:46:43 +01:00
parent 9793473a0d
commit 394083e6dd
3 changed files with 1 additions and 10 deletions

View File

@@ -1,5 +0,0 @@
# Set the following to dummy values.
# This is only useful in CI
controller:
manager:
image: test-arc:dev

View File

@@ -24,7 +24,7 @@ Annotations applied to the controller Pod template (spec.template.metadata.annot
{{- define "gha-controller-template.manager-container" -}}
name: manager
image: "{{ .Values.controller.manager.container.image }}"
imagePullPolicy: {{ default .Values.controller.manager.container.pullPolicy "IfNotPresent" }}
imagePullPolicy: {{ default "IfNotPresent" .Values.controller.manager.container.pullPolicy }}
command:
- "/manager"
args:

View File

@@ -18,8 +18,4 @@ Takes a map of user labels and removes the ones with "actions.github.com/" prefi
app.kubernetes.io/name: {{ include "gha-controller.name" . }}
app.kubernetes.io/namespace: {{ include "gha-controller.namespace" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{- end }}
{{- define "gha-controller.labels" -}}
{{- include "gha-controller.labels" . -}}
{{- end }}