k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
670 B
18 lines
670 B
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
: ${ANSIBLE_MAJOR_VERSION:=2.10}
|
|
|
|
/usr/bin/python -m pip uninstall -y ansible ansible-base ansible-core
|
|
/usr/bin/python -m pip install -r tests/requirements-${ANSIBLE_MAJOR_VERSION}.txt
|
|
mkdir -p /.ssh
|
|
mkdir -p cluster-dump
|
|
mkdir -p $HOME/.ssh
|
|
ansible-playbook --version
|
|
|
|
# in some cases we may need to bring in collections or roles from ansible-galaxy
|
|
# to compensate for missing functionality in older ansible versions
|
|
if [ -f requirements-${ANSIBLE_MAJOR_VERSION}.yml ] ; then
|
|
ansible-galaxy role install -r requirements-${ANSIBLE_MAJOR_VERSION}.yml
|
|
ansible-galaxy collection install -r requirements-${ANSIBLE_MAJOR_VERSION}.yml
|
|
fi
|