Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

infra: allow KUBEVIRT_PROVIDER override #3

Merged
merged 1 commit into from
Feb 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cluster/kubevirtci.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env bash

export KUBEVIRT_PROVIDER='k8s-1.14.6'

export KUBEVIRT_PROVIDER="${KUBEVIRT_PROVIDER:-k8s-multus-1.13.3}"

KUBEVIRTCI_VERSION='0e5b027098796137a9b95aed57943061e185bfcd'
KUBEVIRTCI_PATH="${PWD}/_kubevirtci"
Expand Down
4 changes: 2 additions & 2 deletions cluster/up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ echo 'The cluster is ready!'
echo 'Use following command to install macvtap-cni on the cluster:'
echo ' make cluster-sync'
echo 'Use following command to access cluster API:'
echo ' ./kubevirtci/cluster-up/kubectl.sh get nodes'
echo ' ./cluster/kubectl.sh get nodes'
echo 'Use following command to ssh into cluster node:'
echo ' ./kubevirtci/cluster-up/cli.sh ssh node01'
echo ' ./cluster/cli.sh ssh node01'