From 4f4d5330a52db3232f34238f0f6b071d9f30ce45 Mon Sep 17 00:00:00 2001 From: Lai Jiang Date: Mon, 21 Sep 2020 21:22:41 -0400 Subject: [PATCH] Request 101m CPU in sandbox proxy (#813) This is suggested as a mitigation to allow us to deploy to sandbox. The default value is 100m. See: https://b.corp.google.com/issues/167295064#comment36. --- proxy/kubernetes/proxy-deployment-sandbox-canary.yaml | 3 +++ proxy/kubernetes/proxy-deployment-sandbox.yaml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/proxy/kubernetes/proxy-deployment-sandbox-canary.yaml b/proxy/kubernetes/proxy-deployment-sandbox-canary.yaml index 7f805f3bd..e01489b2f 100644 --- a/proxy/kubernetes/proxy-deployment-sandbox-canary.yaml +++ b/proxy/kubernetes/proxy-deployment-sandbox-canary.yaml @@ -18,6 +18,9 @@ spec: containers: - name: proxy-canary image: gcr.io/GCP_PROJECT/proxy + resources: + requests: + cpu: "101m" ports: - containerPort: 30000 name: health-check diff --git a/proxy/kubernetes/proxy-deployment-sandbox.yaml b/proxy/kubernetes/proxy-deployment-sandbox.yaml index 16b37d390..ab47a76c8 100644 --- a/proxy/kubernetes/proxy-deployment-sandbox.yaml +++ b/proxy/kubernetes/proxy-deployment-sandbox.yaml @@ -18,6 +18,9 @@ spec: containers: - name: proxy image: gcr.io/GCP_PROJECT/proxy + resources: + requests: + cpu: "101m" ports: - containerPort: 30000 name: health-check