aboutsummaryrefslogtreecommitdiff
path: root/templates/configmap.yaml
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2022-09-23 11:45:27 +0200
committerPatrick Spek <p.spek@tyil.nl>2022-09-23 11:45:27 +0200
commitdbc36835a16f3c4f7e813a8a536c0922ef1f6bbd (patch)
treeabc402875944ec48a76bd62e1c35eddc9a469407 /templates/configmap.yaml
parent258ae0c022e0c57e9e87c61e9ca5890ef0480da1 (diff)
Add labels template
Diffstat (limited to 'templates/configmap.yaml')
-rw-r--r--templates/configmap.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/configmap.yaml b/templates/configmap.yaml
index 58542a3..74d6603 100644
--- a/templates/configmap.yaml
+++ b/templates/configmap.yaml
@@ -1,11 +1,11 @@
+---
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ template "invidious.fullname" . }}
labels:
- app: {{ template "invidious.name" . }}
- chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
- release: {{ .Release.Name }}
+ {{- include "invidious.labels" . | nindent 4 }}
data:
INVIDIOUS_CONFIG: |
{{ toYaml .Values.config | indent 4 }}
+...