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

Merge branch 'okosse' into 'master'

[GONRG-6176] Decrease ISTIO requests and limits

See merge request !275
parents b0d3dd67 a57d8a85
No related branches found
No related tags found
3 merge requests!299Update Dev branch,!298Securityfix,!275[GONRG-6176] Decrease ISTIO requests and limits
Pipeline #156621 failed
......@@ -16,6 +16,10 @@ spec:
app: "{{ .Values.conf.appName }}-bootstrap"
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: "{{ .Values.conf.appName }}-bootstrap"
......
......@@ -16,6 +16,10 @@ spec:
app: "{{ .Values.conf.appName }}"
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 }}"
......
......@@ -16,3 +16,11 @@ conf:
minioSecretName: "policy-minio-secret"
bootstrapSecretName: "minio-bootstrap-secret"
onPremEnabled: false
istio:
proxyCPU: "50m"
proxyCPULimit: "500m"
proxyMemory: "64Mi"
proxyMemoryLimit: "512Mi"
bootstrapProxyCPU: "10m"
bootstrapProxyCPULimit: "100m"
......@@ -16,6 +16,12 @@ spec:
metadata:
labels:
app: "{{ .Values.conf.appName }}"
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 }}
name: "{{ .Values.conf.appName }}"
spec:
containers:
......
......@@ -18,3 +18,9 @@ conf:
domain: ""
minioSecretName: "policy-minio-secret"
onPremEnabled: false
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