File tree Expand file tree Collapse file tree 4 files changed +10
-8
lines changed
Expand file tree Collapse file tree 4 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ type: application
66# This is the chart version. This version number should be incremented each time you make changes
77# to the chart and its templates, including the app version.
88# Versions are expected to follow Semantic Versioning (https://semver.org/)
9- version : 0.3.15
9+ version : 0.3.16
1010
1111# This is the version number of the application being deployed. This version number should be
1212# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 4747 secretKeyRef :
4848 key : token
4949 name : cluster-agent
50- image : signadot/workspaces-agent:v0.7.15
51- imagePullPolicy : IfNotPresent
50+ image : {{ with .Values.agent }}{{ .image | default " signadot/workspaces-agent:v0.7.15" | quote }}{{ else }}signadot/workspaces-agent:v0.7.15{{ end }}
51+ imagePullPolicy : {{ with .Values.agent }}{{ .imagePullPolicy | default " IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
5252 livenessProbe :
5353 httpGet :
5454 path : /nullz
Original file line number Diff line number Diff line change 3636 {{- end }}
3737 spec :
3838 containers :
39- - image : signadot/workspaces-routeserver:v0.7.15
40- imagePullPolicy : IfNotPresent
39+ - image : {{ with .Values.routeServer }}{{ .image | default " signadot/workspaces-routeserver:v0.7.15" | quote }}{{ else }}signadot/workspaces-routeserver:v0.7.15{{ end }}
40+ imagePullPolicy : {{ with .Values.routeServer }}{{ .imagePullPolicy | default " IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
4141 name : routeserver
4242 ports :
4343 - containerPort : 8080
Original file line number Diff line number Diff line change @@ -44,10 +44,12 @@ spec:
4444 command :
4545 - /manager
4646 env :
47+ - name : REPO_OVERLAY_IMAGE_PULL_POLICY
48+ value : {{ with .Values.repoOverlay }}{{ .imagePullPolicy | default "IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
4749 - name : REPO_OVERLAY_IMAGE
48- value : signadot/workspaces-repo-overlay:v0.7.15
49- image : signadot/workspaces-operator:v0.7.15
50- imagePullPolicy : IfNotPresent
50+ value : {{ with .Values.repoOverlay }}{{ .image | default " signadot/workspaces-repo-overlay:v0.7.15" | quote }}{{ else }}signadot/workspaces-repo-overlay:v0.7.15{{ end }}
51+ image : {{ with .Values.operator }}{{ .image | default " signadot/workspaces-operator:v0.7.15" | quote }}{{ else }}signadot/workspaces-operator:v0.7.15{{ end }}
52+ imagePullPolicy : {{ with .Values.operator }}{{ .imagePullPolicy | default " IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
5153 livenessProbe :
5254 httpGet :
5355 path : /healthz
You can’t perform that action at this time.
0 commit comments