Add a management helm chart

This commit is contained in:
2024-04-29 16:27:33 +02:00
parent befaceddff
commit 2f2ad8c0a2
5 changed files with 200 additions and 0 deletions

View File

@ -0,0 +1,62 @@
{{/*
Expand the name of the chart.
*/}}
{{- define "helmrelease.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
{{- end }}
{{/*
Create a default fully qualified app name.
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
If release name contains chart name it will be used as a full name.
*/}}
{{- define "helmrelease.fullname" -}}
{{- if .Values.fullnameOverride }}
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- $name := default .Chart.Name .Values.nameOverride }}
{{- if contains $name .Release.Name }}
{{- .Release.Name | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
{{- end }}
{{- end }}
{{- end }}
{{/*
Create chart name and version as used by the chart label.
*/}}
{{- define "helmrelease.chart" -}}
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
{{- end }}
{{/*
Common labels
*/}}
{{- define "helmrelease.labels" -}}
helm.sh/chart: {{ include "helmrelease.chart" . }}
{{ include "helmrelease.selectorLabels" . }}
{{- if .Chart.AppVersion }}
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
{{- end }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- end }}
{{/*
Selector labels
*/}}
{{- define "helmrelease.selectorLabels" -}}
app.kubernetes.io/name: {{ include "helmrelease.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{- end }}
{{/*
Create the name of the service account to use
*/}}
{{- define "helmrelease.serviceAccountName" -}}
{{- if .Values.serviceAccount.create }}
{{- default (include "helmrelease.fullname" .) .Values.serviceAccount.name }}
{{- else }}
{{- default "default" .Values.serviceAccount.name }}
{{- end }}
{{- end }}

View File

@ -0,0 +1,78 @@
{{- if .Values.config.plain }}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "helmrelease.fullname" . }}-config
labels:
{{- include "helmrelease.labels" $ | nindent 4 }}
data:
config: |-
{{- .Values.config | toYaml | nindent 6 }}
{{- end }}
{{- if .Values.config.sensitive }}
---
apiVersion: v1
kind: Secret
metadata:
name: {{ include "helmrelease.fullname" . }}-config
labels:
{{- include "helmrelease.labels" $ | nindent 4 }}
stringData:
config: |-
{{- .Values.config | toYaml | nindent 6 }}
{{- end }}
---
apiVersion: source.toolkit.fluxcd.io/v1beta2
kind: HelmRepository
metadata:
name: {{ include "helmrelease.fullname" . }}-repo
labels:
{{- include "helmrelease.labels" $ | nindent 4 }}
spec:
interval: 5m
url: {{ .Values.helm.repo }}
---
apiVersion: helm.toolkit.fluxcd.io/v2beta2
kind: HelmRelease
metadata:
name: {{ include "helmrelease.fullname" . }}
labels:
{{- include "helmrelease.labels" $ | nindent 4 }}
spec:
interval: 10m
timeout: 5m
chart:
spec:
chart: {{ .Values.helm.chart.name }}
version: {{ .Values.helm.chart.version }}
sourceRef:
kind: HelmRepository
name: {{ include "helmrelease.fullname" . }}-repo
interval: 5m
releaseName: {{ .Values.helm.release }}
install:
remediation:
retries: 3
upgrade:
remediation:
retries: 3
test:
enable: true
driftDetection:
mode: enabled
{{- if or .Values.config.plain .Values.config.sensitive }}
valuesFrom:
{{- if .Values.config.plain }}
- kind: ConfigMap
name: {{ include "helmrelease.fullname" . }}-config
valuesKey: config
{{- end }}
{{- if .Values.config.sensitive }}
- kind: Secret
name: {{ include "helmrelease.fullname" . }}-config
valuesKey: config
{{- end }}
{{- end }}