mirror of
https://gitea.com/gitea/helm-actions.git
synced 2026-04-12 20:50:38 +00:00
Reorder the unittests --------- Co-authored-by: DaanSelen <dselen@systemec.nl> Reviewed-on: https://gitea.com/gitea/helm-actions/pulls/127
20 lines
497 B
YAML
20 lines
497 B
YAML
{{- 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 -}}
|
|
{{- if kindIs "string" . -}}
|
|
{{ . | nindent 4}}
|
|
{{- else -}}
|
|
{{ toYaml . | nindent 4}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- end }}
|