add gitea actions
Some checks failed
renovate / renovate (push) Has been cancelled

This commit is contained in:
2025-06-06 14:05:44 -05:00
parent 0ef4b6ba3c
commit f5bb3e2403
7 changed files with 518 additions and 0 deletions

View File

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