Skip to content
Snippets Groups Projects
Commit 27cb614a 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 !305
parents 0205e6f8 9f73037a
No related branches found
No related tags found
1 merge request!305GONRG-6470: Update requests according to vpa
Pipeline #167388 failed
...@@ -33,8 +33,8 @@ First you need to set variables in **values.yaml** file using any code editor. S ...@@ -33,8 +33,8 @@ First you need to set variables in **values.yaml** file using any code editor. S
|------|-------------|------|---------|---------| |------|-------------|------|---------|---------|
**data.logLevel** | logging level | string | INFO | yes **data.logLevel** | logging level | string | INFO | yes
**data.image** | policy image name | string | - | yes **data.image** | policy image name | string | - | yes
**data.requestsCpu** | amount of requests CPU | string | 50m | yes **data.requestsCpu** | amount of requests CPU | string | 10m | yes
**data.requestsMemory** | amount of requests memory| string | 128M | yes **data.requestsMemory** | amount of requests memory| string | 200Mi | yes
**data.limitsCpu** | CPU limit | string | 1 | yes **data.limitsCpu** | CPU limit | string | 1 | yes
**data.limitsMemory** | memory limit | string | 1G | yes **data.limitsMemory** | memory limit | string | 1G | yes
**data.serviceAccountName** | name of your service account | string | - | yes **data.serviceAccountName** | name of your service account | string | - | yes
...@@ -90,7 +90,7 @@ First you need to set variables in **values.yaml** file using any code editor. S ...@@ -90,7 +90,7 @@ First you need to set variables in **values.yaml** file using any code editor. S
|------|-------------|------|---------|---------| |------|-------------|------|---------|---------|
**istio.proxyCPU** | CPU request for Envoy sidecars | string | 10m | yes **istio.proxyCPU** | CPU request for Envoy sidecars | string | 10m | yes
**istio.proxyCPULimit** | CPU limit for Envoy sidecars | string | 500m | yes **istio.proxyCPULimit** | CPU limit for Envoy sidecars | string | 500m | yes
**istio.proxyMemory** | memory request for Envoy sidecars | string | 32Mi | yes **istio.proxyMemory** | memory request for Envoy sidecars | string | 100Mi | yes
**istio.proxyMemoryLimit** | memory limit for Envoy sidecars | string | 512Mi | yes **istio.proxyMemoryLimit** | memory limit for Envoy sidecars | string | 512Mi | yes
**istio.bootstrapProxyCPU** | CPU request for Envoy sidecars | string | 10m | yes **istio.bootstrapProxyCPU** | CPU request for Envoy sidecars | string | 10m | yes
**istio.bootstrapProxyCPULimit** | CPU limit for Envoy sidecars | string | 100m | yes **istio.bootstrapProxyCPULimit** | CPU limit for Envoy sidecars | string | 100m | yes
......
# Common values for all deployments # Common values for all deployments
data: data:
# Deployment resources # Deployment resources
requestsCpu: "50m" requestsCpu: "10m"
requestsMemory: "128M" requestsMemory: "200Mi"
limitsCpu: "1" limitsCpu: "1"
limitsMemory: "1G" limitsMemory: "1G"
serviceAccountName: "policy" serviceAccountName: "policy"
...@@ -45,7 +45,7 @@ opa: ...@@ -45,7 +45,7 @@ opa:
istio: istio:
proxyCPU: "10m" proxyCPU: "10m"
proxyCPULimit: "500m" proxyCPULimit: "500m"
proxyMemory: "32Mi" proxyMemory: "100Mi"
proxyMemoryLimit: "512Mi" proxyMemoryLimit: "512Mi"
bootstrapProxyCPU: "10m" bootstrapProxyCPU: "10m"
bootstrapProxyCPULimit: "100m" 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