From e8c8875b863c6da1b9e9f77dd0651fe8f8d05421 Mon Sep 17 00:00:00 2001 From: Connor Catlett Date: Tue, 23 Jan 2024 19:04:10 +0000 Subject: [PATCH] Pin metrics server version; Fix minor make cluster/create bug Signed-off-by: Connor Catlett --- Makefile | 2 +- hack/e2e/metrics/metrics.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index da02b4232d..855964e265 100644 --- a/Makefile +++ b/Makefile @@ -95,7 +95,7 @@ verify: verify/govet verify/golangci-lint verify/update all-push: all-image-registry push-manifest .PHONY: cluster/create -cluster/create: bin/kops bin/eksctl +cluster/create: bin/kops bin/eksctl bin/aws ./hack/e2e/create-cluster.sh .PHONY: cluster/delete diff --git a/hack/e2e/metrics/metrics.sh b/hack/e2e/metrics/metrics.sh index a0faab4d47..41303e6090 100644 --- a/hack/e2e/metrics/metrics.sh +++ b/hack/e2e/metrics/metrics.sh @@ -13,7 +13,7 @@ metrics_collector() { readonly METRICS_BASE_DIR=$(dirname "$(realpath "${BASH_SOURCE[0]}")") readonly METRICS_DIR_NAME="metrics-$(git rev-parse HEAD)1-${NODE_OS_DISTRO}-${DRIVER_VERSION}" readonly METRICS_DIR_PATH="${METRICS_BASE_DIR}/../csi-test-artifacts/${METRICS_DIR_NAME}" - readonly METRICS_SERVER_URL="https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml" + readonly METRICS_SERVER_URL="https://github.com/kubernetes-sigs/metrics-server/releases/download/v0.6.4/components.yaml" readonly STORAGE_CLASS="${METRICS_BASE_DIR}/storageclass.yaml" readonly CLUSTER_LOADER_CONFIG="${METRICS_BASE_DIR}/cl2-config.yaml" readonly CLUSTER_LOADER_OVERRIDE="${METRICS_BASE_DIR}/override.yaml"