Skip to content

Commit f26fd96

Browse files
authored
Merge pull request #75 from signadot/base-for-v0.19.3
Base for release v0.19.3
2 parents 949aefb + 09ec4f1 commit f26fd96

9 files changed

+356
-46
lines changed

signadot/operator/Chart.yaml

+2-2
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.19.2"
9+
version: "0.19.3"
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.19.2"
15+
appVersion: "0.19.3"

signadot/operator/README.md

+234-7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
This chart installs Signadot Operator, which consists of the in-cluster
44
components for Signadot.
55

6+
67
## Installing the Chart
78

89
To install the chart with the release name `signadot-operator`:
@@ -66,14 +67,22 @@ kubectl delete ns signadot
6667
| `serviceLabels` | Labels to add to all deployed `Service` objects | `{}` |
6768
| `serviceAnnotations` | Annotations to add to all deployed `Service` objects | `{}` |
6869

70+
6971
### Controller Manager parameters
7072

7173
| Name | Description | Default |
7274
| ------------------------------- | --------------------------------------------------------------------------------------------------------- | ------- |
7375
| `allowedNamespaces` | Restrict the namespaces in which `signadot-controller-manager` will operate | `[]` |
74-
| `sandboxTrafficManager.enabled` | Whether to enable the sandbox traffic manager sidecar on forked workloads | `true` |
76+
| `operator.replicas` | Number of replicas for `signadot-controller-manager` deployment | `2` |
77+
| `sandboxTrafficManager.enabled` | Whether to enable the Sandbox Traffic Manager Sidecar on forked workloads | `true` |
7578
| `allowOrphanedResources` | Allow Signadot Custom Resources to exist in the cluster when not created or managed via the control plane | `false` |
7679

80+
ℹ️ For development clusters (such as Minikube, MicroK8s, or K3s), we recommend
81+
running the controller manager with `operator.replicas = 1` to minimize resource
82+
usage. Note that increasing replicas (`replicas > 1`) does not replicate most
83+
controller functionality in parallel; only one replica is active at a time, and
84+
high availability operates in an active-passive manner, primarily benefiting
85+
sidecar injection.
7786

7887
### Image customization parameters
7988

@@ -127,12 +136,12 @@ style resources and are not needed in an installation which uses the new
127136
| `jobExecutorProxy.image` | Job Executor Proxy container image override | `signadot/job-executor-proxy:vX.Y.Z` |
128137
| `jobExecutorProxy.imagePullPolicy` | Job Executor Proxy container image pull policy | `IfNotPresent` |
129138
| `jobExecutorProxy.imagePullSecret` | Job Executor Proxy container image pull secret | `""` |
130-
| `sandboxTrafficManager.init.Image` | Sandbox traffic manager init image override | `signadot/sandbox-traffic-manager-init:vX.Y.Z` |
131-
| `sandboxTrafficManager.init.ImagePullPolicy` | Sandbox traffic manager init image pull policy | `IfNotPresent` |
132-
| `sandboxTrafficManager.init.ImagePullSecret` | Sandbox traffic manager init image pull secret | `""` |
133-
| `sandboxTrafficManager.sidecar.Image` | Sandbox traffic manager sidecar image override | `signadot/sandbox-traffic-manager-sidecar:vX.Y.Z` |
134-
| `sandboxTrafficManager.sidecar.ImagePullPolicy` | Sandbox traffic manager sidecar image pull policy | `IfNotPresent` |
135-
| `sandboxTrafficManager.sidecar.ImagePullSecret` | Sandbox traffic manager sidecar image pull secret | `""` |
139+
| `sandboxTrafficManager.init.Image` | Sandbox Traffic Manager Init image override | `signadot/sandbox-traffic-manager-init:vX.Y.Z` |
140+
| `sandboxTrafficManager.init.ImagePullPolicy` | Sandbox Traffic Manager Init image pull policy | `IfNotPresent` |
141+
| `sandboxTrafficManager.init.ImagePullSecret` | Sandbox Traffic Manager Init image pull secret | `""` |
142+
| `sandboxTrafficManager.sidecar.Image` | Sandbox Traffic Manager Sidecar image override | `signadot/sandbox-traffic-manager-sidecar:vX.Y.Z` |
143+
| `sandboxTrafficManager.sidecar.ImagePullPolicy` | Sandbox Traffic Manager Sidecar image pull policy | `IfNotPresent` |
144+
| `sandboxTrafficManager.sidecar.ImagePullSecret` | Sandbox Traffic Manager Sidecar image pull secret | `""` |
136145

137146

138147
### Resource customization parameters
@@ -271,6 +280,224 @@ requests:
271280
memory: 128Mi
272281
```
273282

283+
</td>
284+
</tr>
285+
<tr>
286+
<td>
287+
288+
`tunnel.auditor.init.resources`
289+
290+
</td>
291+
<td>
292+
Tunnel Auditor Init container resources
293+
</td>
294+
<td>
295+
296+
```yaml
297+
limits:
298+
memory: 2Gi
299+
requests:
300+
memory: 128Mi
301+
```
302+
303+
</td>
304+
</tr>
305+
<tr>
306+
<td>
307+
308+
`tunnel.auditor.resources`
309+
310+
</td>
311+
<td>
312+
Tunnel Auditor resources
313+
</td>
314+
<td>
315+
316+
```yaml
317+
limits:
318+
memory: 2Gi
319+
requests:
320+
memory: 128Mi
321+
```
322+
323+
</td>
324+
</tr>
325+
<tr>
326+
<td>
327+
328+
`routeInit.resources`
329+
330+
</td>
331+
<td>
332+
Route Init container resources
333+
</td>
334+
<td>
335+
336+
```yaml
337+
limits:
338+
cpu: "2"
339+
memory: 1Gi
340+
requests:
341+
cpu: 100m
342+
memory: 128Mi
343+
```
344+
345+
</td>
346+
</tr>
347+
<tr>
348+
<td>
349+
350+
`routeSidecar.resources`
351+
352+
</td>
353+
<td>
354+
Route Sidecar resources
355+
</td>
356+
<td>
357+
358+
```yaml
359+
limits:
360+
cpu: "2"
361+
memory: 1Gi
362+
requests:
363+
cpu: 100m
364+
memory: 128Mi
365+
```
366+
367+
</td>
368+
</tr>
369+
<tr>
370+
<td>
371+
372+
`sandboxTrafficManager.init.resources`
373+
374+
</td>
375+
<td>
376+
Sandbox Traffic Manager Init container resources
377+
</td>
378+
<td>
379+
380+
```yaml
381+
limits:
382+
cpu: "2"
383+
memory: 1Gi
384+
requests:
385+
cpu: 100m
386+
memory: 128Mi
387+
```
388+
389+
</td>
390+
</tr>
391+
<tr>
392+
<td>
393+
394+
`sandboxTrafficManager.sidecar.resources`
395+
396+
</td>
397+
<td>
398+
Sandbox Traffic Manager Sidecar resources
399+
</td>
400+
<td>
401+
402+
```yaml
403+
limits:
404+
cpu: "2"
405+
memory: 1Gi
406+
requests:
407+
cpu: 100m
408+
memory: 128Mi
409+
```
410+
411+
</td>
412+
</tr>
413+
</tr>
414+
<tr>
415+
<td>
416+
417+
`ioInit.resources`
418+
419+
</td>
420+
<td>
421+
IO Init container resources
422+
</td>
423+
<td>
424+
425+
```yaml
426+
limits:
427+
cpu: "2"
428+
memory: 1Gi
429+
requests:
430+
cpu: 100m
431+
memory: 128Mi
432+
```
433+
434+
</td>
435+
</tr>
436+
<tr>
437+
<td>
438+
439+
`ioSidecar.resources`
440+
441+
</td>
442+
<td>
443+
IO Sidecar resources
444+
</td>
445+
<td>
446+
447+
```yaml
448+
limits:
449+
cpu: "2"
450+
memory: 1Gi
451+
requests:
452+
cpu: 100m
453+
memory: 128Mi
454+
```
455+
456+
</td>
457+
</tr>
458+
</tr>
459+
<tr>
460+
<td>
461+
462+
`jobExecutorInit.resources`
463+
464+
</td>
465+
<td>
466+
Job Executor Init container resources
467+
</td>
468+
<td>
469+
470+
```yaml
471+
limits:
472+
cpu: "2"
473+
memory: 1Gi
474+
requests:
475+
cpu: 100m
476+
memory: 128Mi
477+
```
478+
479+
</td>
480+
</tr>
481+
<tr>
482+
<td>
483+
484+
`jobExecutorProxy.resources`
485+
486+
</td>
487+
<td>
488+
Job Executor Proxy resources
489+
</td>
490+
<td>
491+
492+
```yaml
493+
limits:
494+
cpu: "2"
495+
memory: 1Gi
496+
requests:
497+
cpu: 100m
498+
memory: 128Mi
499+
```
500+
274501
</td>
275502
</tr>
276503
</table>

signadot/operator/templates/agent-deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ spec:
6161
secretKeyRef:
6262
key: token
6363
name: cluster-agent
64-
image: {{ with .Values }}{{ with .agent }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/agent:v0.19.2{{- end }}{{- else -}}signadot/agent:v0.19.2{{- end }}{{- else -}}signadot/agent:v0.19.2{{- end }}
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 }}
6565
imagePullPolicy: {{ with .Values }}{{ with .agent }}{{ with .imagePullPolicy }}{{ . | quote}}{{- else -}}IfNotPresent{{- end }}{{- else -}}IfNotPresent{{- end }}{{- else -}}IfNotPresent{{- end }}
6666
livenessProbe:
6767
httpGet:

signadot/operator/templates/io-context-server-deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ spec:
4040
- /app/io-context-server
4141
- -tls=secretns=signadot
4242
- -port=8443
43-
image: {{ with .Values }}{{ with .ioContextServer }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/io-context-server:v0.19.2{{- end }}{{- else -}}signadot/io-context-server:v0.19.2{{- end }}{{- else -}}signadot/io-context-server:v0.19.2{{- end }}
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 }}
4444
imagePullPolicy: {{ with .Values }}{{ with .ioContextServer }}{{ with .imagePullPolicy }}{{ . | quote}}{{- else -}}IfNotPresent{{- end }}{{- else -}}IfNotPresent{{- end }}{{- else -}}IfNotPresent{{- end }}
4545
name: io-context-server
4646
ports:

signadot/operator/templates/routeserver-deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ spec:
3636
{{- end }}
3737
spec:
3838
containers:
39-
- image: {{ with .Values }}{{ with .routeServer }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/route-server:v0.19.2{{- end }}{{- else -}}signadot/route-server:v0.19.2{{- end }}{{- else -}}signadot/route-server:v0.19.2{{- end }}
39+
- image: {{ with .Values }}{{ with .routeServer }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/route-server:v0.19.3{{- end }}{{- else -}}signadot/route-server:v0.19.3{{- end }}{{- else -}}signadot/route-server:v0.19.3{{- end }}
4040
imagePullPolicy: {{ with .Values }}{{ with .routeServer }}{{ with .imagePullPolicy }}{{ . | quote}}{{- else -}}IfNotPresent{{- end }}{{- else -}}IfNotPresent{{- end }}{{- else -}}IfNotPresent{{- end }}
4141
name: routeserver
4242
ports:

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

+28-14
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ metadata:
1414
name: signadot-controller-manager
1515
namespace: signadot
1616
spec:
17-
replicas: 1
17+
{{- with .Values }}{{- with .operator }}{{- with .replicas }}
18+
replicas: {{ . }}
19+
{{- else -}}{{- end }}{{- else -}}{{- end }}{{- else -}}{{- end }}
1820
selector:
1921
matchLabels:
2022
control-plane: controller-manager
@@ -44,6 +46,22 @@ spec:
4446
command:
4547
- /manager
4648
env:
49+
- name: DEV_MESH_INIT_CONTAINER_RESOURCES
50+
value: {{ with .Values }}{{ with .routeInit }}{{ with .resources }}{{ mustToJson . | quote}}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}
51+
- name: DEV_MESH_SIDECAR_CONTAINER_RESOURCES
52+
value: {{ with .Values }}{{ with .routeSidecar }}{{ with .resources }}{{ mustToJson . | quote}}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}
53+
- name: SANDBOX_TRAFFIC_MANAGER_INIT_CONTAINER_RESOURCES
54+
value: {{ with .Values }}{{ with .sandboxTrafficManager }}{{ with .init }}{{ with .resources }}{{ mustToJson . | quote}}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}
55+
- name: SANDBOX_TRAFFIC_MANAGER_SIDECAR_CONTAINER_RESOURCES
56+
value: {{ with .Values }}{{ with .sandboxTrafficManager }}{{ with .sidecar }}{{ with .resources }}{{ mustToJson . | quote}}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}
57+
- name: IO_INIT_CONTAINER_RESOURCES
58+
value: {{ with .Values }}{{ with .ioInit }}{{ with .resources }}{{ mustToJson . | quote}}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}
59+
- name: IO_SIDECAR_CONTAINER_RESOURCES
60+
value: {{ with .Values }}{{ with .ioSidecar }}{{ with .resources }}{{ mustToJson . | quote}}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}
61+
- name: JOB_EXECUTOR_INIT_CONTAINER_RESOURCES
62+
value: {{ with .Values }}{{ with .jobExecutorInit }}{{ with .resources }}{{ mustToJson . | quote}}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}
63+
- name: JOB_EXECUTOR_PROXY_CONTAINER_RESOURCES
64+
value: {{ with .Values }}{{ with .jobExecutorProxy }}{{ with .resources }}{{ mustToJson . | quote}}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}
4765
- name: SIDECAR_INIT_IMAGE_PULL_POLICY
4866
value: {{ with .Values }}{{ with .routeInit }}{{ with .imagePullPolicy }}{{ . }}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}
4967
- name: SIDECAR_INIT_IMAGE_PULL_SECRET
@@ -81,26 +99,22 @@ spec:
8199
- name: SANDBOX_TRAFFICMANAGER_SIDECAR_IMAGE_PULL_SECRET
82100
value: {{ with .Values }}{{ with .sandboxTrafficManager }}{{ with .sidecar }}{{ with .imagePullSecret }}{{ . }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}{{- else -}}""{{- end }}
83101
- name: SIDECAR_INIT_IMAGE
84-
value: {{ with .Values }}{{ with .routeInit }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/route-sidecar-init:v0.19.2{{- end }}{{- else -}}signadot/route-sidecar-init:v0.19.2{{- end }}{{- else -}}signadot/route-sidecar-init:v0.19.2{{- end }}
85-
- name: LEGACY_SIDECAR_INIT_IMAGE
86-
value: {{ with .Values }}{{ with .routeInit }}{{ with .legacy }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/sd-init-networking:latest{{- end }}{{- else -}}signadot/sd-init-networking:latest{{- end }}{{- else -}}signadot/sd-init-networking:latest{{- end }}{{- else -}}signadot/sd-init-networking:latest{{- end }}
102+
value: {{ with .Values }}{{ with .routeInit }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/route-sidecar-init:v0.19.3{{- end }}{{- else -}}signadot/route-sidecar-init:v0.19.3{{- end }}{{- else -}}signadot/route-sidecar-init:v0.19.3{{- end }}
87103
- name: ROUTE_SIDECAR_IMAGE
88-
value: {{ with .Values }}{{ with .routeSidecar }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/route-sidecar:v0.19.2{{- end }}{{- else -}}signadot/route-sidecar:v0.19.2{{- end }}{{- else -}}signadot/route-sidecar:v0.19.2{{- end }}
89-
- name: LEGACY_ROUTE_SIDECAR_IMAGE
90-
value: {{ with .Values }}{{ with .routeSidecar }}{{ with .legacy }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/route-sidecar-legacy:v0.19.2{{- end }}{{- else -}}signadot/route-sidecar-legacy:v0.19.2{{- end }}{{- else -}}signadot/route-sidecar-legacy:v0.19.2{{- end }}{{- else -}}signadot/route-sidecar-legacy:v0.19.2{{- end }}
104+
value: {{ with .Values }}{{ with .routeSidecar }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/route-sidecar:v0.19.3{{- end }}{{- else -}}signadot/route-sidecar:v0.19.3{{- end }}{{- else -}}signadot/route-sidecar:v0.19.3{{- end }}
91105
- name: IO_INIT_IMAGE
92-
value: {{ with .Values }}{{ with .ioInit }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/io-init:v0.19.2{{- end }}{{- else -}}signadot/io-init:v0.19.2{{- end }}{{- else -}}signadot/io-init:v0.19.2{{- end }}
106+
value: {{ with .Values }}{{ with .ioInit }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/io-init:v0.19.3{{- end }}{{- else -}}signadot/io-init:v0.19.3{{- end }}{{- else -}}signadot/io-init:v0.19.3{{- end }}
93107
- name: IO_SIDECAR_IMAGE
94-
value: {{ with .Values }}{{ with .ioSidecar }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/io-sidecar:v0.19.2{{- end }}{{- else -}}signadot/io-sidecar:v0.19.2{{- end }}{{- else -}}signadot/io-sidecar:v0.19.2{{- end }}
108+
value: {{ with .Values }}{{ with .ioSidecar }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/io-sidecar:v0.19.3{{- end }}{{- else -}}signadot/io-sidecar:v0.19.3{{- end }}{{- else -}}signadot/io-sidecar:v0.19.3{{- end }}
95109
- name: JOB_EXECUTOR_INIT_IMAGE
96-
value: {{ with .Values }}{{ with .jobExecutorInit }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/job-executor-init:v0.19.2{{- end }}{{- else -}}signadot/job-executor-init:v0.19.2{{- end }}{{- else -}}signadot/job-executor-init:v0.19.2{{- end }}
110+
value: {{ with .Values }}{{ with .jobExecutorInit }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/job-executor-init:v0.19.3{{- end }}{{- else -}}signadot/job-executor-init:v0.19.3{{- end }}{{- else -}}signadot/job-executor-init:v0.19.3{{- end }}
97111
- name: JOB_EXECUTOR_PROXY_IMAGE
98-
value: {{ with .Values }}{{ with .jobExecutorProxy }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/job-executor-proxy:v0.19.2{{- end }}{{- else -}}signadot/job-executor-proxy:v0.19.2{{- end }}{{- else -}}signadot/job-executor-proxy:v0.19.2{{- end }}
112+
value: {{ with .Values }}{{ with .jobExecutorProxy }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/job-executor-proxy:v0.19.3{{- end }}{{- else -}}signadot/job-executor-proxy:v0.19.3{{- end }}{{- else -}}signadot/job-executor-proxy:v0.19.3{{- end }}
99113
- name: SANDBOX_TRAFFICMANAGER_INIT_IMAGE
100-
value: {{ with .Values }}{{ with .sandboxTrafficManager }}{{ with .init }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/sandbox-traffic-manager-init:v0.19.2{{- end }}{{- else -}}signadot/sandbox-traffic-manager-init:v0.19.2{{- end }}{{- else -}}signadot/sandbox-traffic-manager-init:v0.19.2{{- end }}{{- else -}}signadot/sandbox-traffic-manager-init:v0.19.2{{- end }}
114+
value: {{ with .Values }}{{ with .sandboxTrafficManager }}{{ with .init }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/sandbox-traffic-manager-init:v0.19.3{{- end }}{{- else -}}signadot/sandbox-traffic-manager-init:v0.19.3{{- end }}{{- else -}}signadot/sandbox-traffic-manager-init:v0.19.3{{- end }}{{- else -}}signadot/sandbox-traffic-manager-init:v0.19.3{{- end }}
101115
- name: SANDBOX_TRAFFICMANAGER_SIDECAR_IMAGE
102-
value: {{ with .Values }}{{ with .sandboxTrafficManager }}{{ with .sidecar }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/sandbox-traffic-manager-sidecar:v0.19.2{{- end }}{{- else -}}signadot/sandbox-traffic-manager-sidecar:v0.19.2{{- end }}{{- else -}}signadot/sandbox-traffic-manager-sidecar:v0.19.2{{- end }}{{- else -}}signadot/sandbox-traffic-manager-sidecar:v0.19.2{{- end }}
103-
image: {{ with .Values }}{{ with .operator }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/operator:v0.19.2{{- end }}{{- else -}}signadot/operator:v0.19.2{{- end }}{{- else -}}signadot/operator:v0.19.2{{- end }}
116+
value: {{ with .Values }}{{ with .sandboxTrafficManager }}{{ with .sidecar }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/sandbox-traffic-manager-sidecar:v0.19.3{{- end }}{{- else -}}signadot/sandbox-traffic-manager-sidecar:v0.19.3{{- end }}{{- else -}}signadot/sandbox-traffic-manager-sidecar:v0.19.3{{- end }}{{- else -}}signadot/sandbox-traffic-manager-sidecar:v0.19.3{{- end }}
117+
image: {{ with .Values }}{{ with .operator }}{{ with .image }}{{ . | quote}}{{- else -}}signadot/operator:v0.19.3{{- end }}{{- else -}}signadot/operator:v0.19.3{{- end }}{{- else -}}signadot/operator:v0.19.3{{- end }}
104118
imagePullPolicy: {{ with .Values }}{{ with .operator }}{{ with .imagePullPolicy }}{{ . | quote}}{{- else -}}IfNotPresent{{- end }}{{- else -}}IfNotPresent{{- end }}{{- else -}}IfNotPresent{{- end }}
105119
livenessProbe:
106120
httpGet:

0 commit comments

Comments
 (0)