Skip to content
Snippets Groups Projects
Commit 6d5c6451 authored by Andrei Skorkin [EPAM / GCP]'s avatar Andrei Skorkin [EPAM / GCP] Committed by Mikhail Piatliou (EPAM)
Browse files

Add istio sidecar to indexer (GONRG-7438)

parent 07e416ca
No related branches found
No related tags found
1 merge request!581Add istio sidecar to indexer (GONRG-7438)
...@@ -79,6 +79,7 @@ First you need to set variables in **values.yaml** file using any code editor. S ...@@ -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.proxyCPULimit** | CPU limit for Envoy sidecars | string | 200m | yes
**istio.proxyMemory** | memory request for Envoy sidecars | string | 100Mi | yes **istio.proxyMemory** | memory request for Envoy sidecars | string | 100Mi | yes
**istio.proxyMemoryLimit** | memory limit for Envoy sidecars | string | 256Mi | 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 ### Install the helm chart
......
...@@ -14,6 +14,7 @@ spec: ...@@ -14,6 +14,7 @@ spec:
metadata: metadata:
labels: labels:
app: {{ .Values.conf.appName | quote }} app: {{ .Values.conf.appName | quote }}
sidecar.istio.io/inject: {{ .Values.istio.sidecarInject | quote }}
annotations: annotations:
rollme: {{ randAlphaNum 5 | quote }} rollme: {{ randAlphaNum 5 | quote }}
sidecar.istio.io/proxyCPU: {{ .Values.istio.proxyCPU | quote }} sidecar.istio.io/proxyCPU: {{ .Values.istio.proxyCPU | quote }}
......
...@@ -43,3 +43,4 @@ istio: ...@@ -43,3 +43,4 @@ istio:
proxyCPULimit: "200m" proxyCPULimit: "200m"
proxyMemory: "100Mi" proxyMemory: "100Mi"
proxyMemoryLimit: "256Mi" 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