mirror of
https://github.com/kubernetes-sigs/descheduler.git
synced 2026-01-26 05:14:13 +01:00
This moves the kind setup (previously used by Travis) to the e2e runner script to accomodate the switch to Prow. This provides a KIND_E2E env var to specify whether to run the tests in kind, or (by default) to run locally).
37 lines
1.5 KiB
Bash
Executable File
37 lines
1.5 KiB
Bash
Executable File
# Copyright 2017 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.
|
|
|
|
#!/bin/bash
|
|
|
|
# This just run e2e tests.
|
|
if [ -n "$KIND_E2E" ]; then
|
|
K8S_VERSION=${KUBERNETES_VERSION:-v1.18.2}
|
|
curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/linux/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
|
|
wget https://github.com/kubernetes-sigs/kind/releases/download/v0.8.1/kind-linux-amd64
|
|
chmod +x kind-linux-amd64
|
|
mv kind-linux-amd64 kind
|
|
export PATH=$PATH:$PWD
|
|
kind create cluster --image kindest/node:${K8S_VERSION} --config=./hack/kind_config.yaml
|
|
export KUBECONFIG="$(kind get kubeconfig-path)"
|
|
docker pull kubernetes/pause
|
|
kind load docker-image kubernetes/pause
|
|
kind get kubeconfig > /tmp/admin.conf
|
|
export KUBECONFIG="/tmp/admin.conf"
|
|
mkdir -p ~/gopath/src/sigs.k8s.io/
|
|
mv ~/gopath/src/github.com/kubernetes-sigs/descheduler ~/gopath/src/sigs.k8s.io/.
|
|
fi
|
|
|
|
PRJ_PREFIX="sigs.k8s.io/descheduler"
|
|
go test ${PRJ_PREFIX}/test/e2e/ -v
|