Skip to content

Commit 976cc15

Browse files
authored
Merge pull request #30 from signadot/release-v.0.8.1
release v0.8.1
2 parents d52bca4 + c5da571 commit 976cc15

9 files changed

+6731
-9
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.8.0"
9+
version: "0.8.1"
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.8.0"
15+
appVersion: "0.8.1"

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.8.0" | quote }}{{ else }}signadot/agent:v0.8.0{{ end }}
51+
image: {{ with .Values.agent }}{{ .image | default "signadot/agent:v0.8.1" | quote }}{{ else }}signadot/agent:v0.8.1{{ 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.8.0" | quote }}{{ else }}signadot/route-server:v0.8.0{{ end }}
39+
- image: {{ with .Values.routeServer }}{{ .image | default "signadot/route-server:v0.8.1" | quote }}{{ else }}signadot/route-server:v0.8.1{{ 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: REPO_OVERLAY_IMAGE_PULL_POLICY
4848
value: {{ with .Values.repoOverlay }}{{ .imagePullPolicy | default "IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
4949
- name: REPO_OVERLAY_IMAGE
50-
value: {{ with .Values.repoOverlay }}{{ .image | default "signadot/repo-overlay:v0.8.0" | quote }}{{ else }}signadot/repo-overlay:v0.8.0{{ end }}
50+
value: {{ with .Values.repoOverlay }}{{ .image | default "signadot/repo-overlay:v0.8.1" | quote }}{{ else }}signadot/repo-overlay:v0.8.1{{ end }}
5151
- name: ROUTE_SIDECAR_IMAGE
52-
value: {{ with .Values.routeSidecar }}{{ .image | default "signadot/route-sidecar:v0.8.0" | quote }}{{ else }}signadot/route-sidecar:v0.8.0{{ end }}
53-
image: {{ with .Values.operator }}{{ .image | default "signadot/operator:v0.8.0" | quote }}{{ else }}signadot/operator:v0.8.0{{ end }}
52+
value: {{ with .Values.routeSidecar }}{{ .image | default "signadot/route-sidecar:v0.8.1" | quote }}{{ else }}signadot/route-sidecar:v0.8.1{{ end }}
53+
image: {{ with .Values.operator }}{{ .image | default "signadot/operator:v0.8.1" | quote }}{{ else }}signadot/operator:v0.8.1{{ end }}
5454
imagePullPolicy: {{ with .Values.operator }}{{ .imagePullPolicy | default "IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
5555
livenessProbe:
5656
httpGet:

signadot/operator/templates/signadot-manager-role-clusterrole.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,32 @@ rules:
103103
- patch
104104
- update
105105
- watch
106+
- apiGroups:
107+
- signadot.com
108+
resources:
109+
- signadotprovisioners
110+
verbs:
111+
- create
112+
- delete
113+
- get
114+
- list
115+
- patch
116+
- update
117+
- watch
118+
- apiGroups:
119+
- signadot.com
120+
resources:
121+
- signadotprovisioners/finalizers
122+
verbs:
123+
- update
124+
- apiGroups:
125+
- signadot.com
126+
resources:
127+
- signadotprovisioners/status
128+
verbs:
129+
- get
130+
- patch
131+
- update
106132
- apiGroups:
107133
- signadot.com
108134
resources:

signadot/operator/templates/signadot-mutating-webhook-configuration-mutatingwebhookconfiguration.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# This file is generated. Do not edit.
2+
{{ if not .Values.disableSidecarInjector }}
23
apiVersion: admissionregistration.k8s.io/v1
34
kind: MutatingWebhookConfiguration
45
metadata:
@@ -31,3 +32,4 @@ webhooks:
3132
resources:
3233
- pods
3334
sideEffects: None
35+
{{ end }}

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

Lines changed: 6686 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ spec:
8686
type: object
8787
provisionerName:
8888
description: ProvisionerName is the name of the provisioner which
89-
will provision and finalize/clean-up the resource.
89+
will provision and deprovision the resource.
9090
type: string
9191
sandboxID:
9292
description: SandboxID is the ID of the sandbox for which this Resource

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,14 @@ spec:
265265
- kind
266266
- name
267267
type: object
268+
template:
269+
description: "Template specifies whether to treat the patch
270+
content as a template. If enabled, variable substitution
271+
will be performed, allowing patches to refer to information
272+
that will only become available after the operator processes
273+
a sandbox spec, such as the names of SignadotResource
274+
provisioner output objects. \n Default: false"
275+
type: boolean
268276
required:
269277
- target
270278
type: object
@@ -333,7 +341,7 @@ spec:
333341
type: object
334342
provisionerName:
335343
description: ProvisionerName is the name of the provisioner
336-
which will provision and finalize/clean-up the resource.
344+
which will provision and deprovision the resource.
337345
type: string
338346
required:
339347
- name

0 commit comments

Comments
 (0)