Skip to content
Snippets Groups Projects
Commit f0954788 authored by Zhibin Mai's avatar Zhibin Mai
Browse files
parents 1de118fa 2e0a49ac
No related branches found
No related tags found
1 merge request!583Prevent any exception from Augmenter functions to corrupt the normal indexing
Pipeline #199300 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