![]() * Update kubevirtci May help with nfs lane flaking: https://prow.ci.kubevirt.io/view/gs/kubevirt-prow/pr-logs/pull/kubevirt_containerized-data-importer/3017/pull-containerized-data-importer-e2e-nfs/1731266718799499264 Looks like the nfs server is working but mount commands from nfs csi against it are timing out. Signed-off-by: Alex Kalenyuk <akalenyu@redhat.com> * Use crictl to prepull images https://github.com/kubevirt/kubevirtci/pull/1100 Signed-off-by: Alex Kalenyuk <akalenyu@redhat.com> * Add W/A for NFS OOMKills Signed-off-by: Alex Kalenyuk <akalenyu@redhat.com> * Switch testing lanes to 1.29/1.28 Signed-off-by: Alex Kalenyuk <akalenyu@redhat.com> --------- Signed-off-by: Alex Kalenyuk <akalenyu@redhat.com> |
||
---|---|---|
.. | ||
cluster | ||
hack | ||
.gitignore | ||
check.sh | ||
cli.sh | ||
down.sh | ||
kubeconfig.sh | ||
kubectl.sh | ||
README.md | ||
ssh.sh | ||
up.sh | ||
virtctl.sh |
cluster-up
Prerequisites: podman or docker
cluster-up requires that either podman or docker be installed on the host.
If podman is being used, it is also necessary to enable podman socket with:
sudo systemctl enable podman.socket
sudo systemctl start podman.socket
for more information see:
https://github.com/kubevirt/kubevirtci/blob/main/PODMAN.md
How to use cluster-up
This directory provides a wrapper around gocli. It can be vendored into other
git repos and integrated to provide in the kubevirt well-known cluster commands
like make cluster-up
and make cluster-down
.
In order to properly use it, one has to vendor this folder from a git tag, which can be found on the github release page.
Then, before calling one of the make targets, the environment variable
KUBEVIRTCI_TAG
must be exported and set to the tag which was used to vendor
kubevirtci. It allow the content to find the right gocli
version.
export KUBEVIRTCI_TAG=`curl -L -Ss https://storage.googleapis.com/kubevirt-prow/release/kubevirt/kubevirtci/latest`
Find more kubevirtci tags at https://quay.io/repository/kubevirtci/gocli?tab=tags.