File tree Expand file tree Collapse file tree 3 files changed +30
-3
lines changed Expand file tree Collapse file tree 3 files changed +30
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : trigger
3
3
description : The official Trigger.dev Helm chart
4
4
type : application
5
- version : 4.0.0-beta.12
5
+ version : 4.0.0-beta.14
6
6
appVersion : trigger-helm-rc.1
7
7
home : https://trigger.dev
8
8
sources :
Original file line number Diff line number Diff line change @@ -48,10 +48,11 @@ spec:
48
48
{{- include "trigger-v4.componentSelectorLabels" (dict "Chart" .Chart "Release" .Release "Values" .Values "component" $component) | nindent 6 }}
49
49
template :
50
50
metadata :
51
- {{- with .Values.webapp.podAnnotations }}
52
51
annotations :
52
+ kubectl.kubernetes.io/default-container : webapp
53
+ {{- with .Values.webapp.podAnnotations }}
53
54
{{- toYaml . | nindent 8 }}
54
- {{- end }}
55
+ {{- end }}
55
56
labels :
56
57
{{- include "trigger-v4.componentSelectorLabels" (dict "Chart" .Chart "Release" .Release "Values" .Values "component" $component) | nindent 8 }}
57
58
spec :
@@ -323,6 +324,9 @@ spec:
323
324
volumeMounts :
324
325
- name : shared
325
326
mountPath : /home/node/shared
327
+ {{- with .Values.webapp.extraVolumeMounts }}
328
+ {{- toYaml . | nindent 12 }}
329
+ {{- end }}
326
330
volumes :
327
331
- name : shared
328
332
{{- if .Values.persistence.shared.enabled }}
@@ -331,6 +335,9 @@ spec:
331
335
{{- else }}
332
336
emptyDir : {}
333
337
{{- end }}
338
+ {{- with .Values.webapp.extraVolumes }}
339
+ {{- toYaml . | nindent 8 }}
340
+ {{- end }}
334
341
{{- with .Values.webapp.nodeSelector }}
335
342
nodeSelector :
336
343
{{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change @@ -115,6 +115,26 @@ webapp:
115
115
# name: my-secret
116
116
# key: secret-key
117
117
118
+ # Extra volumes for the webapp pod
119
+ extraVolumes :
120
+ []
121
+ # - name: config-volume
122
+ # configMap:
123
+ # name: my-config
124
+ # - name: secret-volume
125
+ # secret:
126
+ # secretName: my-secret
127
+
128
+ # Extra volume mounts for the webapp container
129
+ extraVolumeMounts :
130
+ []
131
+ # - name: config-volume
132
+ # mountPath: /etc/config
133
+ # readOnly: true
134
+ # - name: secret-volume
135
+ # mountPath: /etc/secrets
136
+ # readOnly: true
137
+
118
138
# ServiceMonitor for Prometheus monitoring
119
139
serviceMonitor :
120
140
enabled : false
You can’t perform that action at this time.
0 commit comments