Merge pull request #12139 from olemarkus/e2e-metrics-server

Add e2e scenario for metrics-server
This commit is contained in:
Kubernetes Prow Robot 2021-08-12 04:15:50 -07:00 committed by GitHub
commit 1dae5cda13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,37 @@
#!/usr/bin/env bash
# Copyright 2021 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
REPO_ROOT=$(git rev-parse --show-toplevel);
source "${REPO_ROOT}"/tests/e2e/scenarios/lib/common.sh
kops-acquire-latest
OVERRIDES="$OVERRIDES --override=cluster.spec.metricsServer.enabled=true"
OVERRIDES="$OVERRIDES --override=cluster.spec.certManager.enabled=true"
kops-up
# shellcheck disable=SC2164
cd "$(mktemp -dt kops.XXXXXXXXX)"
git clone --branch v0.4.4 https://github.com/kubernetes-sigs/metrics-server.git .
# The prometheus test expects to have only one metrics-server pod, but we use two
# We scale down to meet test expectation
kubectl scale -n kube-system deploy --replicas=1
# shellcheck disable=SC2164
go test -v ./test/e2e_test.go -count=1