File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Expand file tree Collapse file tree 3 files changed +19
-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.1
5
+ version : 4.0.2
6
6
appVersion : v4.0.4
7
7
home : https://trigger.dev
8
8
sources :
Original file line number Diff line number Diff line change 68
68
{{- end }}
69
69
initContainers :
70
70
- name : init-shared
71
- image : busybox:1.35
71
+ image : " {{ .Values.webapp.initImage.registry }}/{{ .Values.webapp.initImage.repository }}:{{ .Values.webapp.initImage.tag }}"
72
+ imagePullPolicy : {{ .Values.webapp.initImage.pullPolicy }}
72
73
command : ['sh', '-c', 'mkdir -p /home/node/shared']
73
74
securityContext :
74
75
runAsUser : 1000
77
78
mountPath : /home/node/shared
78
79
containers :
79
80
- name : token-syncer
80
- image : bitnamilegacy/kubectl:1.28
81
+ image : " {{ .Values.webapp.tokenSyncerImage.registry }}/{{ .Values.webapp.tokenSyncerImage.repository }}:{{ .Values.webapp.tokenSyncerImage.tag }}"
82
+ imagePullPolicy : {{ .Values.webapp.tokenSyncerImage.pullPolicy }}
81
83
securityContext :
82
84
runAsUser : 1000
83
85
runAsNonRoot : true
Original file line number Diff line number Diff line change @@ -48,6 +48,20 @@ webapp:
48
48
tag : " " # Defaults to Chart.appVersion when empty
49
49
pullPolicy : IfNotPresent
50
50
51
+ # Init container image configuration
52
+ initImage :
53
+ registry : docker.io
54
+ repository : busybox
55
+ tag : " 1.35"
56
+ pullPolicy : IfNotPresent
57
+
58
+ # Token syncer image configuration
59
+ tokenSyncerImage :
60
+ registry : docker.io
61
+ repository : bitnamilegacy/kubectl
62
+ tag : " 1.28"
63
+ pullPolicy : IfNotPresent
64
+
51
65
# Origin configuration
52
66
appOrigin : " http://localhost:3040"
53
67
loginOrigin : " http://localhost:3040"
You can’t perform that action at this time.
0 commit comments