diff --git a/devops/gc/deploy/README.md b/devops/gc/deploy/README.md
index f07600fdd2d6b1d32790bc8641d3f65d4296bac6..53bbc9c1d587e6ced1a60f39463e7c64a417df83 100644
--- a/devops/gc/deploy/README.md
+++ b/devops/gc/deploy/README.md
@@ -48,8 +48,8 @@ First you need to set variables in **values.yaml** file using any code editor. S
 | Name | Description | Type | Default |Required |
 |------|-------------|------|---------|---------|
 **data.image** | your image name | string | - | yes
-**data.requestsCpu** | amount of requests CPU | string | 1180m | yes
-**data.requestsMemory** | amount of requests memory| string | 750Mi | yes
+**data.requestsCpu** | amount of requests CPU | string | 10m | yes
+**data.requestsMemory** | amount of requests memory| string | 450Mi | yes
 **data.limitsCpu** | CPU limit | string | 1.5 | yes
 **data.limitsMemory** | memory limit | string | 1G | yes
 **data.serviceAccountName** | name of your service account | string | register | yes
@@ -72,10 +72,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 | 330m | yes
-**istio.proxyCPULimit** | CPU limit for Envoy sidecars | string | 500m | yes
-**istio.proxyMemory** | memory request for Envoy sidecars | string | 150Mi | yes
-**istio.proxyMemoryLimit** | memory limit for Envoy sidecars | string | 512Mi | 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.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 53713fb168a54104eb118e44b0d3217fabbecd55..96d60e2a8c3558fbe9456f3e66170ec622baafc5 100644
--- a/devops/gc/deploy/values.yaml
+++ b/devops/gc/deploy/values.yaml
@@ -16,8 +16,8 @@ data:
   kmsKey: "registerService"
   subscriberPrivateKeyId: "testkey"
   # Deployment
-  requestsCpu: "1180m"
-  requestsMemory: "750Mi"
+  requestsCpu: "10m"
+  requestsMemory: "450Mi"
   limitsCpu: "1.5"
   limitsMemory: "1G"
   serviceAccountName: "register"
@@ -35,7 +35,7 @@ conf:
   domain: ""
 
 istio:
-  proxyCPU: "330m"
-  proxyCPULimit: "500m"
-  proxyMemory: "150Mi"
-  proxyMemoryLimit: "512Mi"
+  proxyCPU: "10m"
+  proxyCPULimit: "200m"
+  proxyMemory: "64Mi"
+  proxyMemoryLimit: "256Mi"