Skip to content

Commit cf7ef00

Browse files
committed
Changes for v0.12.0 release
1 parent 89f1342 commit cf7ef00

15 files changed

+20075
-57
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.11.1"
9+
version: "0.12.0"
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.11.1"
15+
appVersion: "0.12.0"

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.11.1" | quote }}{{ else }}signadot/agent:v0.11.1{{ end }}
51+
image: {{ with .Values.agent }}{{ .image | default "signadot/agent:v0.12.0" | quote }}{{ else }}signadot/agent:v0.12.0{{ end }}
5252
imagePullPolicy: {{ with .Values.agent }}{{ .imagePullPolicy | default "IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
5353
livenessProbe:
5454
httpGet:
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# This file is generated. Do not edit.
2+
apiVersion: apps/v1
3+
kind: Deployment
4+
metadata:
5+
annotations:
6+
{{- range $key, $val := .Values.commonAnnotations }}
7+
{{ $key | quote }}: {{ $val | quote }}
8+
{{- end }}
9+
labels:
10+
{{- range $key, $val := .Values.commonLabels }}
11+
{{ $key | quote }}: {{ $val | quote }}
12+
{{- end }}
13+
name: io-context-server
14+
namespace: signadot
15+
spec:
16+
replicas: 1
17+
selector:
18+
matchLabels:
19+
app: io-context-server
20+
template:
21+
metadata:
22+
annotations:
23+
{{- range $key, $val := .Values.commonAnnotations }}
24+
{{ $key | quote }}: {{ $val | quote }}
25+
{{- end }}
26+
{{- range $key, $val := .Values.podAnnotations }}
27+
{{ $key | quote }}: {{ $val | quote }}
28+
{{- end }}
29+
labels:
30+
app: io-context-server
31+
{{- range $key, $val := .Values.commonLabels }}
32+
{{ $key | quote }}: {{ $val | quote }}
33+
{{- end }}
34+
{{- range $key, $val := .Values.podLabels }}
35+
{{ $key | quote }}: {{ $val | quote }}
36+
{{- end }}
37+
spec:
38+
containers:
39+
- command:
40+
- /app/io-context-server
41+
- -tls=secretns=signadot
42+
- -port=8443
43+
image: {{ with .Values.ioContextServer }}{{ .image | default "signadot/io-context-server:v0.12.0" | quote }}{{ else }}signadot/io-context-server:v0.12.0{{ end }}
44+
imagePullPolicy: {{ with .Values.ioContextServer }}{{ .imagePullPolicy | default "IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
45+
name: io-context-server
46+
ports:
47+
- containerPort: 8443
48+
serviceAccountName: io-context-server
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# This file is generated. Do not edit.
2+
apiVersion: v1
3+
kind: Service
4+
metadata:
5+
annotations:
6+
{{- range $key, $val := .Values.commonAnnotations }}
7+
{{ $key | quote }}: {{ $val | quote }}
8+
{{- end }}
9+
{{- range $key, $val := .Values.serviceAnnotations }}
10+
{{ $key | quote }}: {{ $val | quote }}
11+
{{- end }}
12+
labels:
13+
{{- range $key, $val := .Values.commonLabels }}
14+
{{ $key | quote }}: {{ $val | quote }}
15+
{{- end }}
16+
{{- range $key, $val := .Values.serviceLabels }}
17+
{{ $key | quote }}: {{ $val | quote }}
18+
{{- end }}
19+
name: io-context-server
20+
namespace: signadot
21+
spec:
22+
ports:
23+
- port: 8443
24+
selector:
25+
app: io-context-server
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# This file is generated. Do not edit.
2+
apiVersion: v1
3+
kind: ServiceAccount
4+
metadata:
5+
annotations:
6+
{{- range $key, $val := .Values.commonAnnotations }}
7+
{{ $key | quote }}: {{ $val | quote }}
8+
{{- end }}
9+
labels:
10+
{{- range $key, $val := .Values.commonLabels }}
11+
{{ $key | quote }}: {{ $val | quote }}
12+
{{- end }}
13+
name: io-context-server
14+
namespace: signadot

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

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

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.11.1" | quote }}{{ else }}signadot/route-server:v0.11.1{{ end }}
39+
- image: {{ with .Values.routeServer }}{{ .image | default "signadot/route-server:v0.12.0" | quote }}{{ else }}signadot/route-server:v0.12.0{{ 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: 40 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,17 @@ spec:
3737
{{- end }}
3838
spec:
3939
containers:
40+
- args:
41+
- --secure-listen-address=0.0.0.0:8443
42+
- --upstream=http://127.0.0.1:8080/
43+
- --logtostderr=true
44+
- --v=10
45+
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 }}
46+
imagePullPolicy: {{ with .Values }}{{ with .kubeRBACProxy }}{{ with .imagePullPolicy }}{{.}}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}
47+
name: kube-rbac-proxy
48+
ports:
49+
- containerPort: 8443
50+
name: https
4051
- args:
4152
- --health-probe-bind-address=:8081
4253
- --metrics-bind-address=127.0.0.1:8080
@@ -46,11 +57,37 @@ spec:
4657
env:
4758
- name: ALLOWED_NAMESPACES
4859
value: {{ range $i, $val := .Values.allowedNamespaces }}{{ if gt $i 0 }},{{ end }}{{ $val }}{{ else }}""{{ end }}
60+
- name: SIDECAR_INIT_IMAGE_PULL_POLICY
61+
value: {{ with .Values }}{{ with .routeInit }}{{ with .imagePullPolicy }}{{.}}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}
62+
- name: SIDECAR_INIT_IMAGE_PULL_SECRET
63+
value: {{ with .Values }}{{ with .routeInit }}{{ with .imagePullSecret }}{{.}}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}
64+
- name: ROUTE_SIDECAR_IMAGE_PULL_POLICY
65+
value: {{ with .Values }}{{ with .routeSidecar }}{{ with .imagePullPolicy }}{{.}}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}
66+
- name: ROUTE_SIDECAR_IMAGE_PULL_SECRET
67+
value: {{ with .Values }}{{ with .routeSidecar }}{{ with .imagePullSecret }}{{.}}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}
68+
- name: IO_INIT_IMAGE_PULL_POLICY
69+
value: {{ with .Values }}{{ with .ioInit }}{{ with .imagePullPolicy }}{{.}}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}
70+
- name: IO_INIT_IMAGE_PULL_SECRET
71+
value: {{ with .Values }}{{ with .ioInit }}{{ with .imagePullSecret }}{{.}}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}
72+
- name: IO_SIDECAR_IMAGE_PULL_POLICY
73+
value: {{ with .Values }}{{ with .ioSidecar }}{{ with .imagePullPolicy }}{{.}}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}
74+
- name: IO_SIDECAR_IMAGE_PULL_SECRET
75+
value: {{ with .Values }}{{ with .ioSidecar }}{{ with .imagePullSecret }}{{.}}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}
76+
- name: EXECPOD_SIDECAR_IMAGE_PULL_POLICY
77+
value: {{ with .Values }}{{ with .execpodSidecar }}{{ with .imagePullPolicy }}{{.}}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}
78+
- name: EXECPOD_SIDECAR_IMAGE_PULL_SECRET
79+
value: {{ with .Values }}{{ with .execpodSidecar }}{{ with .imagePullSecret }}{{.}}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}
80+
- name: SIDECAR_INIT_IMAGE
81+
value: {{ with .Values.routeInit }}{{ .image | default "signadot/sd-init-networking:latest" | quote }}{{ else }}signadot/sd-init-networking:latest{{ end }}
4982
- name: ROUTE_SIDECAR_IMAGE
50-
value: {{ with .Values.routeSidecar }}{{ .image | default "signadot/route-sidecar:v0.11.1" | quote }}{{ else }}signadot/route-sidecar:v0.11.1{{ end }}
83+
value: {{ with .Values.routeSidecar }}{{ .image | default "signadot/route-sidecar:v0.12.0" | quote }}{{ else }}signadot/route-sidecar:v0.12.0{{ end }}
5184
- name: EXECPOD_SIDECAR_IMAGE
52-
value: {{ with .Values.execpodSidecar }}{{ .image | default "signadot/execpod-sidecar:v0.11.1" | quote }}{{ else }}signadot/execpod-sidecar:v0.11.1{{ end }}
53-
image: {{ with .Values.operator }}{{ .image | default "signadot/operator:v0.11.1" | quote }}{{ else }}signadot/operator:v0.11.1{{ end }}
85+
value: {{ with .Values.execpodSidecar }}{{ .image | default "signadot/execpod-sidecar:v0.12.0" | quote }}{{ else }}signadot/execpod-sidecar:v0.12.0{{ end }}
86+
- name: IO_INIT_IMAGE
87+
value: {{ with .Values.ioInit }}{{ .image | default "signadot/io-init:v0.12.0" | quote }}{{ else }}signadot/io-init:v0.12.0{{ end }}
88+
- name: IO_SIDECAR_IMAGE
89+
value: {{ with .Values.ioSidecar }}{{ .image | default "signadot/io-sidecar:v0.12.0" | quote }}{{ else }}signadot/io-sidecar:v0.12.0{{ end }}
90+
image: {{ with .Values.operator }}{{ .image | default "signadot/operator:v0.12.0" | quote }}{{ else }}signadot/operator:v0.12.0{{ end }}
5491
imagePullPolicy: {{ with .Values.operator }}{{ .imagePullPolicy | default "IfNotPresent" | quote }}{{ else }}IfNotPresent{{ end }}
5592
livenessProbe:
5693
httpGet:
@@ -81,16 +118,6 @@ spec:
81118
volumeMounts:
82119
- mountPath: /etc/podinfo
83120
name: podinfo
84-
- args:
85-
- --secure-listen-address=0.0.0.0:8443
86-
- --upstream=http://127.0.0.1:8080/
87-
- --logtostderr=true
88-
- --v=10
89-
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 }}
90-
name: kube-rbac-proxy
91-
ports:
92-
- containerPort: 8443
93-
name: https
94121
securityContext:
95122
runAsNonRoot: true
96123
serviceAccountName: signadot-controller-manager
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# This file is generated. Do not edit.
2+
apiVersion: rbac.authorization.k8s.io/v1
3+
kind: Role
4+
metadata:
5+
annotations:
6+
{{- range $key, $val := .Values.commonAnnotations }}
7+
{{ $key | quote }}: {{ $val | quote }}
8+
{{- end }}
9+
labels:
10+
{{- range $key, $val := .Values.commonLabels }}
11+
{{ $key | quote }}: {{ $val | quote }}
12+
{{- end }}
13+
name: signadot-io-context-server
14+
namespace: signadot
15+
rules:
16+
- apiGroups:
17+
- ""
18+
resources:
19+
- secrets
20+
verbs:
21+
- get
22+
- list
23+
- watch
24+
- create
25+
- delete
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# This file is generated. Do not edit.
2+
apiVersion: rbac.authorization.k8s.io/v1
3+
kind: RoleBinding
4+
metadata:
5+
annotations:
6+
{{- range $key, $val := .Values.commonAnnotations }}
7+
{{ $key | quote }}: {{ $val | quote }}
8+
{{- end }}
9+
labels:
10+
{{- range $key, $val := .Values.commonLabels }}
11+
{{ $key | quote }}: {{ $val | quote }}
12+
{{- end }}
13+
name: signadot-io-context-server
14+
namespace: signadot
15+
roleRef:
16+
apiGroup: rbac.authorization.k8s.io
17+
kind: Role
18+
name: signadot-io-context-server
19+
subjects:
20+
- kind: ServiceAccount
21+
name: io-context-server
22+
namespace: signadot

0 commit comments

Comments
 (0)