Skip to content
Snippets Groups Projects
Commit f77bb704 authored by Andri Joos's avatar Andri Joos :blush:
Browse files

add possibility for custom labels

parent 02db87aa
No related branches found
No related tags found
No related merge requests found
Pipeline #7713 passed with stages
in 54 seconds
......@@ -14,6 +14,9 @@ helm.sh/chart: {{ include "common.variables.chart" . }}
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
{{- end }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- range $key, $value := .Values.labels }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- end }}
{{/*
......
......@@ -35,6 +35,9 @@ volumes:
persistentVolumes:
example:
name: example
labels:
test: test
test2: test2
size: 5Gi
mountOptions:
- nfsvers=4.1
......@@ -65,6 +68,6 @@ acme:
email: your-email@example.com
secretName: example-tls
solvers:
http01:
ingress:
class: traefik
- http01:
ingress:
class: traefik
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment