adjust makefile && test client connection to kind

This commit is contained in:
Sergey Dudoladov 2019-04-24 17:27:01 +02:00
parent 5fc371d95a
commit 699b276ad6
2 changed files with 11 additions and 2 deletions

View File

@ -91,3 +91,8 @@ deps:
test:
hack/verify-codegen.sh
@go test ./...
e2e:
kind create cluster --name kind-m --config ./e2e/kind-config-multikind.yaml --loglevel debug
export KUBECONFIG="$(kind get kubeconfig-path --name="kind-m")"
kubectl cluster-info

View File

@ -44,9 +44,13 @@ pipeline:
- desc: 'Run e2e tests'
cmd: |
export PATH=$PATH:$HOME/go/bin
go get -v -u sigs.k8s.io/kind
cd $OPERATOR_TOP_DIR/postgres-operator
kind create cluster --name kind-m --config ./e2e/kind-config-multikind.yaml --loglevel debug
go get -u -v sigs.k8s.io/kind
echo "INFO install kubectl to test 'kind' from client side"
(curl -LO --silent https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl &&
chmod +x ./kubectl &&
mv ./kubectl /usr/local/bin/kubectl) || exit 1
make e2e
- desc: 'Push docker image'
cmd: |
export PATH=$PATH:$HOME/go/bin