Skip to content

Commit

Permalink
Merge pull request #38 from signadot/release-v0.9.5
Browse files Browse the repository at this point in the history
release v0.9.5
  • Loading branch information
scott-cotton authored May 31, 2022
2 parents 846056a + d0c8123 commit 8e585cc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions signadot/operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: "0.9.4"
version: "0.9.5"

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.9.4"
appVersion: "0.9.5"
2 changes: 1 addition & 1 deletion signadot/operator/templates/agent-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ spec:
secretKeyRef:
key: token
name: cluster-agent
image: {{ with .Values.agent }}{{ .image | default "signadot/agent:v0.9.4" | quote }}{{ else }}signadot/agent:v0.9.4{{ end }}
image: {{ with .Values.agent }}{{ .image | default "signadot/agent:v0.9.5" | quote }}{{ else }}signadot/agent:v0.9.5{{ end }}
imagePullPolicy: {{ with .Values.agent }}{{ .imagePullPolicy | default "IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
livenessProbe:
httpGet:
Expand Down
2 changes: 1 addition & 1 deletion signadot/operator/templates/routeserver-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
{{- end }}
spec:
containers:
- image: {{ with .Values.routeServer }}{{ .image | default "signadot/route-server:v0.9.4" | quote }}{{ else }}signadot/route-server:v0.9.4{{ end }}
- image: {{ with .Values.routeServer }}{{ .image | default "signadot/route-server:v0.9.5" | quote }}{{ else }}signadot/route-server:v0.9.5{{ end }}
imagePullPolicy: {{ with .Values.routeServer }}{{ .imagePullPolicy | default "IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
name: routeserver
ports:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ spec:
- name: ALLOWED_NAMESPACES
value: {{ range $i, $val := .Values.allowedNamespaces }}{{ if gt $i 0 }},{{ end }}{{ $val }}{{ else }}""{{ end }}
- name: ROUTE_SIDECAR_IMAGE
value: {{ with .Values.routeSidecar }}{{ .image | default "signadot/route-sidecar:v0.9.4" | quote }}{{ else }}signadot/route-sidecar:v0.9.4{{ end }}
value: {{ with .Values.routeSidecar }}{{ .image | default "signadot/route-sidecar:v0.9.5" | quote }}{{ else }}signadot/route-sidecar:v0.9.5{{ end }}
- name: EXECPOD_SIDECAR_IMAGE
value: {{ with .Values.execpodSidecar }}{{ .image | default "signadot/execpod-sidecar:v0.9.4" | quote }}{{ else }}signadot/execpod-sidecar:v0.9.4{{ end }}
image: {{ with .Values.operator }}{{ .image | default "signadot/operator:v0.9.4" | quote }}{{ else }}signadot/operator:v0.9.4{{ end }}
value: {{ with .Values.execpodSidecar }}{{ .image | default "signadot/execpod-sidecar:v0.9.5" | quote }}{{ else }}signadot/execpod-sidecar:v0.9.5{{ end }}
image: {{ with .Values.operator }}{{ .image | default "signadot/operator:v0.9.5" | quote }}{{ else }}signadot/operator:v0.9.5{{ end }}
imagePullPolicy: {{ with .Values.operator }}{{ .imagePullPolicy | default "IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
livenessProbe:
httpGet:
Expand Down

0 comments on commit 8e585cc

Please sign in to comment.