You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| `istio.operator.podLabels` | Pod Labels to add to signadot components which should use Istio | `{"sidecar.istio.io/inject": "true"}` |
532
533
| `istio.additionalAnnotations` | Annotations to add to istio VirtualServices if not present | `{}` |
533
534
| `istio.additionalLabels` | Labels to add to istio VirtualServices if not present | `{}` |
534
535
| `istio.enableDeprecatedHostRouting` | Enable sandbox routing by matching the `VirtualService.host` field. **This feature has been deprecated**. | `false` |
@@ -543,6 +544,7 @@ Note that, unlike with Istio, routing in Linkerd is not expressed via Linkerd CR
Copy file name to clipboardExpand all lines: signadot/operator/templates/agent-deployment.yaml
+14-3Lines changed: 14 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,13 @@ spec:
36
36
cluster-config-checksum: '{{ include (print $.Template.BasePath "/signadot-cluster-config-configmap.yaml")
37
37
. | sha256sum }}'
38
38
{{- if $linkerdEnabled }}
39
-
linkerd.io/inject: enabled
39
+
{{- if and (hasKey .Values.linkerd "operator") (hasKey .Values.linkerd.operator "podAnnotations") (.Values.linkerd.operator.podAnnotations)}}
40
+
{{- range $key, $val := .Values.linkerd.operator.podAnnotations }}
41
+
{{ $key | quote }}: {{ $val | quote }}
42
+
{{- end }}
43
+
{{- else }}
44
+
linkerd.io/inject: "enabled"
45
+
{{- end }}
40
46
{{- end }}
41
47
labels:
42
48
app: signadot-agent
@@ -47,12 +53,17 @@ spec:
47
53
{{ $key | quote }}: {{ $val | quote }}
48
54
{{- end }}
49
55
{{- if $istioEnabled }}
56
+
{{- if and (hasKey .Values.istio "operator") (hasKey .Values.istio.operator "podLabels") (.Values.istio.operator.podLabels) }}
57
+
{{- range $key, $val := .Values.istio.operator.podLabels }}
58
+
{{ $key | quote }}: {{ $val | quote }}
59
+
{{- end }}
60
+
{{- else }}
50
61
sidecar.istio.io/inject: "true"
51
62
{{- end }}
63
+
{{- end }}
52
64
spec:
53
65
containers:
54
66
- args:
55
-
- --agent-token=$(AGENT_TOKEN)
56
67
- --api-url=https://api.signadot.com
57
68
- --tunnel-addr=tunnel.signadot.com:443
58
69
env:
@@ -61,7 +72,7 @@ spec:
61
72
secretKeyRef:
62
73
key: token
63
74
name: cluster-agent
64
-
image: {{ with .Values }}{{ with .agent }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/agent:v0.19.3{{- end }}{{- else -}}signadot/agent:v0.19.3{{- end }}{{- else -}}signadot/agent:v0.19.3{{- end }}
75
+
image: {{ with .Values }}{{ with .agent }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/agent:v1.0.0{{- end }}{{- else -}}signadot/agent:v1.0.0{{- end }}{{- else -}}signadot/agent:v1.0.0{{- end }}
65
76
imagePullPolicy: {{ with .Values }}{{ with .agent }}{{ with .imagePullPolicy }}{{ . | quote}}{{- else -}}IfNotPresent{{- end }}{{- else -}}IfNotPresent{{- end }}{{- else -}}IfNotPresent{{- end }}
Copy file name to clipboardExpand all lines: signadot/operator/templates/io-context-server-deployment.yaml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ spec:
40
40
- /app/io-context-server
41
41
- -tls=secretns=signadot
42
42
- -port=8443
43
-
image: {{ with .Values }}{{ with .ioContextServer }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/io-context-server:v0.19.3{{- end }}{{- else -}}signadot/io-context-server:v0.19.3{{- end }}{{- else -}}signadot/io-context-server:v0.19.3{{- end }}
43
+
image: {{ with .Values }}{{ with .ioContextServer }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/io-context-server:v1.0.0{{- end }}{{- else -}}signadot/io-context-server:v1.0.0{{- end }}{{- else -}}signadot/io-context-server:v1.0.0{{- end }}
44
44
imagePullPolicy: {{ with .Values }}{{ with .ioContextServer }}{{ with .imagePullPolicy }}{{ . | quote}}{{- else -}}IfNotPresent{{- end }}{{- else -}}IfNotPresent{{- end }}{{- else -}}IfNotPresent{{- end }}
0 commit comments