From 64bdfa74813ba7ff9f222575250de21b337abee1 Mon Sep 17 00:00:00 2001 From: quicksilver Date: Tue, 3 Aug 2021 21:57:24 +0800 Subject: [PATCH] Set etcd log level to debug in e2e test (#6974) Signed-off-by: quicksilver --- build/ci/jenkins/pod/krte.yaml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/build/ci/jenkins/pod/krte.yaml b/build/ci/jenkins/pod/krte.yaml index f9b3fdd2b8..115ef80c53 100644 --- a/build/ci/jenkins/pod/krte.yaml +++ b/build/ci/jenkins/pod/krte.yaml @@ -22,12 +22,12 @@ spec: args: ["cat"] resources: limits: - cpu: "8" - memory: 14Gi + cpu: "6" + memory: 12Gi ephemeral-storage: "30Gi" requests: - cpu: "4" - memory: 12Gi + cpu: "3" + memory: 10Gi ephemeral-storage: "30Gi" volumeMounts: - mountPath: /docker-graph @@ -44,14 +44,17 @@ spec: subPath: docker-volume - name: etcd image: quay.io/coreos/etcd:v3.4.13 + env: + - name: ETCD_LOG_LEVEL + value: debug command: - etcd - -advertise-client-urls=http://127.0.0.1:2379 - -listen-client-urls=http://0.0.0.0:2379 resources: limits: - cpu: "1" - memory: "1Gi" + cpu: "2" + memory: "4Gi" ports: - containerPort: 2379 name: client