Skip to content

Commit

Permalink
Merge pull request #32 from signadot/release-v0.9.1
Browse files Browse the repository at this point in the history
chart update for v0.9.1
  • Loading branch information
foxish authored Apr 25, 2022
2 parents c520f54 + c12d66e commit 01d255e
Show file tree
Hide file tree
Showing 5 changed files with 1,149 additions and 315 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.0"
version: "0.9.1"

# 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.0"
appVersion: "0.9.1"
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.0" | quote }}{{ else }}signadot/agent:v0.9.0{{ end }}
image: {{ with .Values.agent }}{{ .image | default "signadot/agent:v0.9.1" | quote }}{{ else }}signadot/agent:v0.9.1{{ 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.0" | quote }}{{ else }}signadot/route-server:v0.9.0{{ end }}
- image: {{ with .Values.routeServer }}{{ .image | default "signadot/route-server:v0.9.1" | quote }}{{ else }}signadot/route-server:v0.9.1{{ 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.0" | quote }}{{ else }}signadot/route-sidecar:v0.9.0{{ end }}
value: {{ with .Values.routeSidecar }}{{ .image | default "signadot/route-sidecar:v0.9.1" | quote }}{{ else }}signadot/route-sidecar:v0.9.1{{ end }}
- name: EXECPOD_SIDECAR_IMAGE
value: {{ with .Values.execpodSidecar }}{{ .image | default "signadot/execpod-sidecar:v0.9.0" | quote }}{{ else }}signadot/execpod-sidecar:v0.9.0{{ end }}
image: {{ with .Values.operator }}{{ .image | default "signadot/operator:v0.9.0" | quote }}{{ else }}signadot/operator:v0.9.0{{ end }}
value: {{ with .Values.execpodSidecar }}{{ .image | default "signadot/execpod-sidecar:v0.9.1" | quote }}{{ else }}signadot/execpod-sidecar:v0.9.1{{ end }}
image: {{ with .Values.operator }}{{ .image | default "signadot/operator:v0.9.1" | quote }}{{ else }}signadot/operator:v0.9.1{{ end }}
imagePullPolicy: {{ with .Values.operator }}{{ .imagePullPolicy | default "IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
livenessProbe:
httpGet:
Expand Down Expand Up @@ -86,7 +86,7 @@ spec:
- --upstream=http://127.0.0.1:8080/
- --logtostderr=true
- --v=10
image: gcr.io/kubebuilder/kube-rbac-proxy:v0.8.0
image: {{ with .Values.kubeRBACProxy }}{{ .image | default "gcr.io/kubebuilder/kube-rbac-proxy:v0.8.0" | quote }}{{ else }}gcr.io/kubebuilder/kube-rbac-proxy:v0.8.0{{ end }}
name: kube-rbac-proxy
ports:
- containerPort: 8443
Expand Down
Loading

0 comments on commit 01d255e

Please sign in to comment.