From 321a04591fa986070a0da24efdc107cbdc531cc3 Mon Sep 17 00:00:00 2001 From: Oleksandr Kosse <oleksandr_kosse@epam.com> Date: Tue, 21 Feb 2023 16:22:57 +0100 Subject: [PATCH] Update requests/limits for notification service --- devops/gc/deploy/README.md | 10 +++++----- devops/gc/deploy/values.yaml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/devops/gc/deploy/README.md b/devops/gc/deploy/README.md index 95bbd43e4..9b7a29226 100644 --- a/devops/gc/deploy/README.md +++ b/devops/gc/deploy/README.md @@ -43,8 +43,8 @@ First you need to set variables in **values.yaml** file using any code editor. S | Name | Description | Type | Default |Required | |------|-------------|------|---------|---------| -**data.requestsCpu** | amount of requested CPU | string | `580m` | yes -**data.requestsMemory** | amount of requested memory| string | `1.05G` | yes +**data.requestsCpu** | amount of requested CPU | string | `10m` | yes +**data.requestsMemory** | amount of requested memory| string | `512Mi` | yes **data.limitsCpu** | CPU limit | string | `1` | yes **data.limitsMemory** | memory limit | string | `1.5G` | yes **data.serviceAccountName** | name of your service account | string | `notification` | yes @@ -69,10 +69,10 @@ First you need to set variables in **values.yaml** file using any code editor. S | Name | Description | Type | Default |Required | |------|-------------|------|---------|---------| -**istio.proxyCPU** | CPU request for Envoy sidecars | string | `310m` | yes -**istio.proxyCPULimit** | CPU limit for Envoy sidecars | string | `500m` | 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 | `100Mi` | yes -**istio.proxyMemoryLimit** | memory limit for Envoy sidecars | string | `512Mi` | yes +**istio.proxyMemoryLimit** | memory limit for Envoy sidecars | string | `256Mi` | yes ### Install the helm chart diff --git a/devops/gc/deploy/values.yaml b/devops/gc/deploy/values.yaml index f4bd467c1..4a1ba3021 100644 --- a/devops/gc/deploy/values.yaml +++ b/devops/gc/deploy/values.yaml @@ -10,8 +10,8 @@ data: redisNotificationPort: 6379 redisImage: "docker.io/library/redis:7" #Deployments - requestsCpu: "580m" - requestsMemory: "1.05G" + requestsCpu: "10m" + requestsMemory: "512Mi" limitsCpu: "1" limitsMemory: "1.5G" serviceAccountName: "notification" @@ -29,7 +29,7 @@ conf: redisSSL: false istio: - proxyCPU: "310m" - proxyCPULimit: "500m" + proxyCPU: "10m" + proxyCPULimit: "200m" proxyMemory: "100Mi" - proxyMemoryLimit: "512Mi" + proxyMemoryLimit: "256Mi" -- GitLab