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

Merge branch 'GONRG-6470_Update_requests_according_to_vpa' into 'master'

GONRG-6470: Update requests according to vpa

See merge request !435
parents 20afb9be 41d9bdde
No related branches found
No related tags found
1 merge request!435GONRG-6470: Update requests according to vpa
Pipeline #167411 failed
......@@ -45,8 +45,8 @@ You need to set variables in **values.yaml** file using any code editor. Some of
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|----------|
**data.requestsCpu** | amount of requested CPU | string | `75m` | yes
**data.requestsMemory** | amount of requested memory| string | `448M` | yes
**data.requestsCpu** | amount of requested CPU | string | `20m` | yes
**data.requestsMemory** | amount of requested memory| string | `550Mi` | yes
**data.limitsCpu** | CPU limit | string | `1` | yes
**data.limitsMemory** | memory limit | string | `1G` | yes
**data.serviceAccountName** | name of your service account | string | `search` | yes
......@@ -68,9 +68,9 @@ You need to set variables in **values.yaml** file using any code editor. Some of
| Name | Description | Type | Default |Required |
|------|-------------|------|---------|---------|
**istio.proxyCPU** | CPU request for Envoy sidecars | string | 25m | yes
**istio.proxyCPU** | CPU request for Envoy sidecars | string | 10m | yes
**istio.proxyCPULimit** | CPU limit for Envoy sidecars | string | 200m | yes
**istio.proxyMemory** | memory request for Envoy sidecars | string | 64Mi | yes
**istio.proxyMemory** | memory request for Envoy sidecars | string | 100Mi | yes
**istio.proxyMemoryLimit** | memory limit for Envoy sidecars | string | 256Mi | yes
## Install the Helm chart
......
......@@ -14,7 +14,8 @@ spec:
labels:
app: {{ printf "redis-%s" .Values.conf.appName | quote }}
annotations:
sidecar.istio.io/proxyCPU: 30m
sidecar.istio.io/proxyCPU: 10m
sidecar.istio.io/proxyMemory: 100Mi
spec:
containers:
- args:
......@@ -31,5 +32,6 @@ spec:
protocol: TCP
resources:
requests:
cpu: 10m
memory: 100Mi
{{ end }}
......@@ -9,8 +9,8 @@ data:
policyId: "osdu.instance.search"
securityHttpsCertificateTrust: "true"
# Deployments
requestsCpu: "75m"
requestsMemory: "448M"
requestsCpu: "20m"
requestsMemory: "550Mi"
limitsCpu: "1"
limitsMemory: "1G"
serviceAccountName: "search"
......@@ -27,7 +27,7 @@ conf:
domain: ""
searchRedisSecretName: "search-redis-secret"
istio:
proxyCPU: "25m"
proxyCPU: "10m"
proxyCPULimit: "200m"
proxyMemory: "64Mi"
proxyMemory: "100Mi"
proxyMemoryLimit: "256Mi"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment