mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-22 03:43:09 +00:00
Merge pull request #461 from prometheus-community/superq/fix_discover_role
skip_changelog: Fix role repo discovery
This commit is contained in:
commit
ef4eb15644
1 changed files with 11 additions and 1 deletions
12
.github/scripts/discover_role_repos.sh
vendored
12
.github/scripts/discover_role_repos.sh
vendored
|
@ -5,13 +5,23 @@
|
|||
result=$(
|
||||
for role_dir in roles/*/ ; do
|
||||
role="$(basename "${role_dir}")"
|
||||
if [[ "${role}" == "_common" ]]; then
|
||||
echo "INFO: Skipping common role" 1>&2
|
||||
continue
|
||||
fi
|
||||
echo "INFO: ${role} Scanning: ${role_dir} " 1>&2
|
||||
|
||||
role_repo=$(yq eval "._${role}_repo" "${role_dir}/vars/main.yml" 2>/dev/null)
|
||||
echo "INFO: ${role} Found role repo: ${role_repo}" 1>&2
|
||||
if [[ -z "${role_repo}" ]]; then
|
||||
echo "WARN: ${role} Unable to discover repo path" 1>&2
|
||||
continue
|
||||
fi
|
||||
|
||||
yq eval "[{
|
||||
\"repo\": \"${role_repo}\",
|
||||
\"role\": \"${role}\",
|
||||
\"type\": (.${role}_binary_url | split(\"/\")[2] | split(\".\")[0] // \"github\")
|
||||
\"type\": (.${role}_binary_url | split(\"/\").[2] | split(\".\").[0] // \"github\")
|
||||
}]" "${role_dir}/defaults/main.yml" 2>/dev/null
|
||||
done | yq -o json -I=0
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue