mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-10 06:14:13 +00:00
fix: ansible 2.9 workaround for galaxy install from git
Signed-off-by: gardar <gardar@users.noreply.github.com>
This commit is contained in:
parent
a0eaafd39e
commit
031a545cca
1 changed files with 12 additions and 1 deletions
|
@ -23,10 +23,21 @@ fi
|
||||||
# Install ansible version specific requirements
|
# Install ansible version specific requirements
|
||||||
if [ "$(printf '%s\n' "2.12" "$ansible_version" | sort -V | head -n1)" = "2.12" ]; then
|
if [ "$(printf '%s\n' "2.12" "$ansible_version" | sort -V | head -n1)" = "2.12" ]; then
|
||||||
python -m pip install molecule molecule-plugins[docker]
|
python -m pip install molecule molecule-plugins[docker]
|
||||||
else
|
elif [ "$(printf '%s\n' "2.10" "$ansible_version" | sort -V | head -n1)" = "2.10" ]; then
|
||||||
python -m pip install molecule molecule-docker
|
python -m pip install molecule molecule-docker
|
||||||
ansible-galaxy collection install git+https://github.com/ansible-collections/community.docker.git
|
ansible-galaxy collection install git+https://github.com/ansible-collections/community.docker.git
|
||||||
ansible-galaxy collection install -r "$collection_root/requirements.yml"
|
ansible-galaxy collection install -r "$collection_root/requirements.yml"
|
||||||
|
else
|
||||||
|
python -m pip install molecule molecule-docker
|
||||||
|
req_dir=$(mktemp -d)
|
||||||
|
requirements="$(awk '/name:/ {print $3}' < "$collection_root/requirements.yml") https://github.com/ansible-collections/community.docker.git"
|
||||||
|
for req in $requirements; do
|
||||||
|
git -C "$req_dir" clone --single-branch --depth 1 "$req"
|
||||||
|
req="${req##*/}"
|
||||||
|
req="${req%.*}"
|
||||||
|
ansible-galaxy collection build "$req_dir/$req" --output-path "$req_dir"
|
||||||
|
ansible-galaxy collection install "$req_dir/${req//./-}"-*.tar.gz
|
||||||
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Define config locations within collection
|
# Define config locations within collection
|
||||||
|
|
Loading…
Reference in a new issue