From a09aff97094e4abf71c738e979d578c3c6866c89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20R=C3=BCegg?= Date: Wed, 24 Feb 2021 13:22:43 +0100 Subject: [PATCH] [release-0.6] Pin Jsonnet dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pin all Jsonnet dependencies to current commit SHA. Signed-off-by: Simon Rüegg --- jsonnet/kube-prometheus/jsonnetfile.json | 4 ++-- tests/e2e/main_test.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/jsonnet/kube-prometheus/jsonnetfile.json b/jsonnet/kube-prometheus/jsonnetfile.json index 42e372bc..adafff98 100644 --- a/jsonnet/kube-prometheus/jsonnetfile.json +++ b/jsonnet/kube-prometheus/jsonnetfile.json @@ -35,7 +35,7 @@ "subdir": "" } }, - "version": "master", + "version": "0d2f82676817bbf9e4acf6495b2090205f323b9f", "name": "ksonnet" }, { @@ -72,7 +72,7 @@ "subdir": "docs/node-mixin" } }, - "version": "master" + "version": "ff2ff3410f4ea8195e51f5fb8d84151684f91b3f" }, { "source": { diff --git a/tests/e2e/main_test.go b/tests/e2e/main_test.go index 36b6a14b..7f180691 100644 --- a/tests/e2e/main_test.go +++ b/tests/e2e/main_test.go @@ -87,7 +87,7 @@ func TestQueryPrometheus(t *testing.T) { } // Wait for pod to respond at queries at all. Then start verifying their results. - err := wait.Poll(5*time.Second, 1*time.Minute, func() (bool, error) { + err := wait.Poll(5*time.Second, 5*time.Minute, func() (bool, error) { _, err := promClient.query("up") return err == nil, nil })