Skip to content

Commit b1016b6

Browse files
authored
Merge pull request #26 from signadot/workspaces-chart-release
workspaces: Update chart templates.
2 parents f9d00bb + 9e4de94 commit b1016b6

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

signadot/workspaces/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

signadot/workspaces/templates/agent-deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ spec:
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

signadot/workspaces/templates/routeserver-deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ spec:
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

signadot/workspaces/templates/signadot-controller-manager-deployment.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)