From cb5906d8a009919676e64257e88e45ff0cb4b1ee Mon Sep 17 00:00:00 2001 From: Joseph Anttila Hall Date: Mon, 8 Nov 2021 09:22:26 -0800 Subject: [PATCH] Remove cpu limit from example agent pod. Same as https://github.com/kubernetes/kubernetes/pull/103626 --- examples/kubernetes/konnectivity-agent.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/examples/kubernetes/konnectivity-agent.yaml b/examples/kubernetes/konnectivity-agent.yaml index fd45bd30c..034c891b0 100644 --- a/examples/kubernetes/konnectivity-agent.yaml +++ b/examples/kubernetes/konnectivity-agent.yaml @@ -19,7 +19,9 @@ spec: image: ${AGENT_IMAGE}:${TAG} resources: requests: - cpu: 40m + cpu: 50m + limits: + memory: 30Mi command: [ "/proxy-agent"] args: [ "--logtostderr=true", @@ -35,10 +37,6 @@ spec: path: /healthz initialDelaySeconds: 15 timeoutSeconds: 15 - resources: - limits: - cpu: 50m - memory: 30Mi volumeMounts: - mountPath: /var/run/secrets/tokens name: konnectivity-agent-token