add envFrom

This commit is contained in:
2024-02-10 04:08:58 -07:00
parent 30d69f695c
commit ffcaf51b66
3 changed files with 6 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v2 apiVersion: v2
name: homepage name: homepage
version: 0.0.1 version: 0.0.2
description: Chart for benphelps homepage description: Chart for benphelps homepage
keywords: keywords:
- dashboard - dashboard

View File

@@ -40,6 +40,10 @@ spec:
- name: {{ $k }} - name: {{ $k }}
value: {{ $v | quote }} value: {{ $v | quote }}
{{- end }} {{- end }}
{{- with .Values.deployment.envFrom }}
envFrom:
{{- toYaml . | nindent 12 }}
{{- end }}
volumeMounts: volumeMounts:
- name: homepage-config - name: homepage-config
subPath: bookmarks.yaml subPath: bookmarks.yaml

View File

@@ -6,6 +6,7 @@ deployment:
tag: v0.8.7 tag: v0.8.7
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
env: env:
envFrom:
resources: resources:
requests: requests:
memory: 50Mi memory: 50Mi