chore: add templates, unittests and workflows

This commit is contained in:
pat-s
2025-03-06 22:25:49 +01:00
parent 82ed342b11
commit 42fe8c02c2
26 changed files with 1322 additions and 27 deletions

View File

@ -0,0 +1,15 @@
{{- if .Values.actions.enabled }}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "gitea.fullname" . }}-act-runner-config
namespace: {{ .Values.namespace | default .Release.Namespace }}
labels:
{{- include "gitea.labels" . | nindent 4 }}
data:
config.yaml: |
{{- with .Values.actions.statefulset.actRunner.config -}}
{{ . | nindent 4}}
{{- end -}}
{{- end }}