Skip to content
Snippets Groups Projects
Commit 0ea1d251 authored by Oleksandr Kosse (EPAM)'s avatar Oleksandr Kosse (EPAM)
Browse files

[GONRG-6176] Decrease ISTIO requests and limits

parent 8850deed
No related branches found
No related tags found
1 merge request!320[GONRG-6176] Decrease ISTIO requests and limits
...@@ -16,6 +16,10 @@ spec: ...@@ -16,6 +16,10 @@ spec:
app: {{ .Values.conf.appName | quote}} app: {{ .Values.conf.appName | quote}}
annotations: annotations:
rollme: {{ randAlphaNum 5 | quote }} rollme: {{ randAlphaNum 5 | quote }}
sidecar.istio.io/proxyCPU: {{ .Values.istio.proxyCPU | quote }}
sidecar.istio.io/proxyMemory: {{ .Values.istio.proxyMemory | quote }}
sidecar.istio.io/proxyCPULimit: {{ .Values.istio.proxyCPULimit | quote }}
sidecar.istio.io/proxyMemoryLimit: {{ .Values.istio.proxyMemoryLimit | quote }}
spec: spec:
containers: containers:
- name: {{ .Values.conf.appName | quote}} - name: {{ .Values.conf.appName | quote}}
......
...@@ -22,3 +22,9 @@ conf: ...@@ -22,3 +22,9 @@ conf:
openidSecretName: "notification-keycloak-secret" openidSecretName: "notification-keycloak-secret"
onPremEnabled: false onPremEnabled: false
domain: "" domain: ""
istio:
proxyCPU: "50m"
proxyCPULimit: "500m"
proxyMemory: "64Mi"
proxyMemoryLimit: "512Mi"
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