radicle: bump to 1.5.0, helm chart 0.1.1

This commit is contained in:
ace
2026-01-09 22:14:50 +03:00
parent c35431f194
commit f14fa7f243
12 changed files with 643 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{{- if .Values.configAsCode.enabled }}
kind: ConfigMap
apiVersion: v1
metadata:
name: {{ include "radicle.fullname" . }}-config
labels:
app.kubernetes.io/name: {{ include "radicle.name" . }}
helm.sh/chart: {{ include "radicle.chart" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
data:
config.json: |
{{- toYaml .Values.configAsCode.config | fromYaml | toPrettyJson | nindent 4 }}
{{- end }}