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

Merge branch 'okosse' into 'master'

[GONRG-6178] Decrease ISTIO requests and limits

See merge request !428
parents d053ddb1 8f145e13
No related branches found
No related tags found
1 merge request!428[GONRG-6178] Decrease ISTIO requests and limits
Pipeline #156428 failed
......@@ -16,6 +16,10 @@ spec:
app: {{ printf "%s-bootstrap" .Values.conf.appName | quote }}
annotations:
rollme: {{ randAlphaNum 5 | quote }}
sidecar.istio.io/proxyCPU: {{ .Values.istio.bootstrapProxyCPU | quote }}
sidecar.istio.io/proxyMemory: {{ .Values.istio.proxyMemory | quote }}
sidecar.istio.io/proxyCPULimit: {{ .Values.istio.bootstrapProxyCPULimit | quote }}
sidecar.istio.io/proxyMemoryLimit: {{ .Values.istio.proxyMemoryLimit | quote }}
spec:
containers:
- name: {{ printf "%s-bootstrap" .Values.conf.appName | quote }}
......
......@@ -16,6 +16,10 @@ spec:
app: {{ .Values.conf.appName | quote }}
annotations:
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:
containers:
- name: {{ .Values.conf.appName | quote }}
......
......@@ -23,6 +23,7 @@ data:
image: ""
imagePullPolicy: "IfNotPresent"
serviceAccountName: "schema"
conf:
appName: "schema"
bootstrapSecretName: "datafier-secret"
......@@ -32,3 +33,11 @@ conf:
onPremEnabled: false
postgresSecretName: "schema-postgres-secret"
rabbitmqSecretName: "rabbitmq-secret"
istio:
proxyCPU: "50m"
proxyCPULimit: "500m"
proxyMemory: "64Mi"
proxyMemoryLimit: "512Mi"
bootstrapProxyCPU: "10m"
bootstrapProxyCPULimit: "100m"
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