Skip to content
Snippets Groups Projects
Commit 2e0a49ac authored by Mikhail Piatliou (EPAM)'s avatar Mikhail Piatliou (EPAM)
Browse files

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

Add istio sidecar to indexer (GONRG-7438)

See merge request !581
parents 07e416ca 6d5c6451
No related branches found
No related tags found
1 merge request!581Add istio sidecar to indexer (GONRG-7438)
Pipeline #199015 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.
Please register or to comment