test: don't install wget in the openshift virt test
curl can do the job just fine, and it's already installed. Let's just use it.
This commit is contained in:
parent
5a76595fe9
commit
cdb709f7f7
1 changed files with 5 additions and 5 deletions
|
|
@ -167,12 +167,12 @@ sudo composer-cli compose delete "${COMPOSE_ID}" > /dev/null
|
|||
|
||||
|
||||
# install the OpenShift cli & virtctl binary
|
||||
sudo dnf -y install wget
|
||||
# https://docs.openshift.com/container-platform/4.13/cli_reference/openshift_cli/getting-started-cli.html
|
||||
wget --no-check-certificate https://downloads-openshift-console.apps.prod-scale-spoke1-aws-us-east-1.itup.redhat.com/amd64/linux/oc.tar --directory-prefix "$TEMPDIR"
|
||||
# https://docs.openshift.com/container-platform/4.13/virt/virt-using-the-cli-tools.html
|
||||
wget --no-check-certificate https://hyperconverged-cluster-cli-download-openshift-cnv.apps.prod-scale-spoke1-aws-us-east-1.itup.redhat.com/amd64/linux/virtctl.tar.gz --directory-prefix "$TEMPDIR"
|
||||
pushd "$TEMPDIR"
|
||||
# https://docs.openshift.com/container-platform/4.13/cli_reference/openshift_cli/getting-started-cli.html
|
||||
curl -kLO https://downloads-openshift-console.apps.prod-scale-spoke1-aws-us-east-1.itup.redhat.com/amd64/linux/oc.tar
|
||||
# https://docs.openshift.com/container-platform/4.13/virt/virt-using-the-cli-tools.html
|
||||
curl -kLO https://hyperconverged-cluster-cli-download-openshift-cnv.apps.prod-scale-spoke1-aws-us-east-1.itup.redhat.com/amd64/linux/virtctl.tar.gz
|
||||
|
||||
tar -xvf oc.tar
|
||||
tar -xzvf virtctl.tar.gz
|
||||
popd
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue