Skip to content
Snippets Groups Projects
Commit b3294230 authored by Chad Leong's avatar Chad Leong :speech_balloon:
Browse files

Merge branch 'cherry-pick-2e0a49ac' into 'release/0.22'

Merge branch 'GONRG-7438_Add_istio_sidecars_in_DF_light_mode' into 'master'

See merge request !584
parents d479af24 8d675664
No related branches found
No related tags found
1 merge request!584Merge branch 'GONRG-7438_Add_istio_sidecars_in_DF_light_mode' into 'master'
Pipeline #199034 failed
......@@ -79,6 +79,7 @@ First you need to set variables in **values.yaml** file using any code editor. S
**istio.proxyCPULimit** | CPU limit for Envoy sidecars | string | 200m | yes
**istio.proxyMemory** | memory request for Envoy sidecars | string | 100Mi | yes
**istio.proxyMemoryLimit** | memory limit for Envoy sidecars | string | 256Mi | yes
**istio.sidecarInject** | whether Istio sidecar will be injected. Setting to "false" reduces security, because disables authorization policy. | boolean | true | yes
### Install the helm chart
......
......@@ -14,6 +14,7 @@ spec:
metadata:
labels:
app: {{ .Values.conf.appName | quote }}
sidecar.istio.io/inject: {{ .Values.istio.sidecarInject | quote }}
annotations:
rollme: {{ randAlphaNum 5 | quote }}
sidecar.istio.io/proxyCPU: {{ .Values.istio.proxyCPU | quote }}
......
......@@ -43,3 +43,4 @@ istio:
proxyCPULimit: "200m"
proxyMemory: "100Mi"
proxyMemoryLimit: "256Mi"
sidecarInject: true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment