diff --git a/devops/gc/deploy/README.md b/devops/gc/deploy/README.md index 95bbd43e4112c6da2bed114873827149f1a3b6db..9b7a29226404ea5839cfaac04fc68f8b8f4000e5 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 f4bd467c1e13c8c1c238ff9116475f1061908b77..4a1ba30212535ce2a0d47f5142f28654e319af07 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"