Skip to content

Commit 6d2aca2

Browse files
author
Vincent
authored
Merge pull request #40 from signadot/release-v0.9.7
Release v0.9.7
2 parents 726570f + eb72774 commit 6d2aca2

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

signadot/operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ 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.9.6"
9+
version: "0.9.7"
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
1313
# follow Semantic Versioning. They should reflect the version the application is using.
1414
# It is recommended to use it with quotes.
15-
appVersion: "0.9.6"
15+
appVersion: "0.9.7"

signadot/operator/templates/agent-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ spec:
4848
secretKeyRef:
4949
key: token
5050
name: cluster-agent
51-
image: {{ with .Values.agent }}{{ .image | default "signadot/agent:v0.9.6" | quote }}{{ else }}signadot/agent:v0.9.6{{ end }}
51+
image: {{ with .Values.agent }}{{ .image | default "signadot/agent:v0.9.7" | quote }}{{ else }}signadot/agent:v0.9.7{{ end }}
5252
imagePullPolicy: {{ with .Values.agent }}{{ .imagePullPolicy | default "IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
5353
livenessProbe:
5454
httpGet:

signadot/operator/templates/routeserver-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ spec:
3636
{{- end }}
3737
spec:
3838
containers:
39-
- image: {{ with .Values.routeServer }}{{ .image | default "signadot/route-server:v0.9.6" | quote }}{{ else }}signadot/route-server:v0.9.6{{ end }}
39+
- image: {{ with .Values.routeServer }}{{ .image | default "signadot/route-server:v0.9.7" | quote }}{{ else }}signadot/route-server:v0.9.7{{ end }}
4040
imagePullPolicy: {{ with .Values.routeServer }}{{ .imagePullPolicy | default "IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
4141
name: routeserver
4242
ports:

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ spec:
4747
- name: ALLOWED_NAMESPACES
4848
value: {{ range $i, $val := .Values.allowedNamespaces }}{{ if gt $i 0 }},{{ end }}{{ $val }}{{ else }}""{{ end }}
4949
- name: ROUTE_SIDECAR_IMAGE
50-
value: {{ with .Values.routeSidecar }}{{ .image | default "signadot/route-sidecar:v0.9.6" | quote }}{{ else }}signadot/route-sidecar:v0.9.6{{ end }}
50+
value: {{ with .Values.routeSidecar }}{{ .image | default "signadot/route-sidecar:v0.9.7" | quote }}{{ else }}signadot/route-sidecar:v0.9.7{{ end }}
5151
- name: EXECPOD_SIDECAR_IMAGE
52-
value: {{ with .Values.execpodSidecar }}{{ .image | default "signadot/execpod-sidecar:v0.9.6" | quote }}{{ else }}signadot/execpod-sidecar:v0.9.6{{ end }}
53-
image: {{ with .Values.operator }}{{ .image | default "signadot/operator:v0.9.6" | quote }}{{ else }}signadot/operator:v0.9.6{{ end }}
52+
value: {{ with .Values.execpodSidecar }}{{ .image | default "signadot/execpod-sidecar:v0.9.7" | quote }}{{ else }}signadot/execpod-sidecar:v0.9.7{{ end }}
53+
image: {{ with .Values.operator }}{{ .image | default "signadot/operator:v0.9.7" | quote }}{{ else }}signadot/operator:v0.9.7{{ end }}
5454
imagePullPolicy: {{ with .Values.operator }}{{ .imagePullPolicy | default "IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
5555
livenessProbe:
5656
httpGet:

signadot/operator/templates/signadotresourceplugins.signadot.com-customresourcedefinition.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ spec:
5050
description: ExecPod represents how a pods for provisioning and deprovisioning
5151
will be executed.
5252
properties:
53+
imageSpecVersion:
54+
description: ImageSpecVersion indicates which version of the plugin
55+
image specification is expected of the plugin image. If it
56+
is empty, we assume the initial unversioned ImageSpecVersion.
57+
Only major and minor version may be specified.
58+
pattern: ^v[0-9]+\.[0-9]+$
59+
type: string
5360
template:
5461
description: Template is the associated corev1.PodTemplateSpec,
5562
which is generally used to create distinct pods for provisioning

0 commit comments

Comments
 (0)