From 2eb48f6049c9602f69e37da1c782c94b96a172cc Mon Sep 17 00:00:00 2001 From: Jeffrey Ying Date: Fri, 31 Jan 2020 10:45:21 -0800 Subject: [PATCH] Reduce default CPU requirement for konnectivity server Our network proxy [e2e job](https://k8s-testgrid.appspot.com/sig-api-machinery-network-proxy#ci-kubernetes-e2e-gci-gce-network-proxy) is failing because we are requesting more resources than available on the system. The test clusters are consuming exactly 970m CPU resources without the konnectivity-server pod. Requesting 40m exceeds the 1000m limit and causes all tests to fail. --- cluster/gce/manifests/konnectivity-server.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/gce/manifests/konnectivity-server.yaml b/cluster/gce/manifests/konnectivity-server.yaml index aa413624d2e..26be55cfd3c 100644 --- a/cluster/gce/manifests/konnectivity-server.yaml +++ b/cluster/gce/manifests/konnectivity-server.yaml @@ -14,7 +14,7 @@ spec: image: gcr.io/google-containers/proxy-server:v0.0.3 resources: requests: - cpu: 40m + cpu: 25m command: [ "/proxy-server"{{ konnectivity_args }} ] livenessProbe: httpGet: