From 36dfd4dd3501866f4a6ccd43a58310c2420dd002 Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Mon, 1 Apr 2019 13:09:52 +0300 Subject: [PATCH] Bring down Istio Pilot memory requests --- test/e2e-istio-values.yaml | 4 ++++ test/e2e-istio.sh | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/test/e2e-istio-values.yaml b/test/e2e-istio-values.yaml index 97076f40..68350462 100644 --- a/test/e2e-istio-values.yaml +++ b/test/e2e-istio-values.yaml @@ -6,6 +6,10 @@ pilot: enabled: true sidecar: true + resources: + requests: + cpu: 100m + memory: 128Mi gateways: enabled: false diff --git a/test/e2e-istio.sh b/test/e2e-istio.sh index 71e2791d..f444673c 100755 --- a/test/e2e-istio.sh +++ b/test/e2e-istio.sh @@ -2,7 +2,7 @@ set -o errexit -ISTIO_VER="1.1.0-rc.0" +ISTIO_VER="1.1.1" REPO_ROOT=$(git rev-parse --show-toplevel) export KUBECONFIG="$(kind get kubeconfig-path --name="kind")"