Skip to content

Commit df486bd

Browse files
authored
add envFrom block to the deployment (#168)
1 parent 788d5b5 commit df486bd

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

install/kubernetes/github-actions-cache-server/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ spec:
6767
{{- with .Values.env }}
6868
{{- toYaml . | nindent 12 }}
6969
{{- end }}
70+
{{- with .Values.envFrom }}
71+
envFrom: {{ toYaml . | nindent 12 }}
72+
{{- end }}
7073
volumes:
7174
- name: tmp
7275
{{- toYaml .Values.tmpVolume | nindent 10 }}

install/kubernetes/github-actions-cache-server/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,3 +128,4 @@ apiBaseUrl: ''
128128
env:
129129
- name: DEBUG
130130
value: 'false'
131+
envFrom: []

0 commit comments

Comments
 (0)