refactor: remove handling of sole repository, always require both repo and tag
This commit is contained in:
@@ -32,17 +32,15 @@ runs:
|
||||
awk '/^[[:space:]]*FROM[[:space:]]/ { print $NF }' "$f" 2>/dev/null || true
|
||||
# Kubernetes / Docker Compose: image: <ref>
|
||||
grep -E '[[:space:]]image:[[:space:]]' "$f" 2>/dev/null | sed 's/.*image:[[:space:]]*//' | awk '{ print $1 }' || true
|
||||
# Helmfile values: repository (required), tag optional (by indent); tag without repo is skipped
|
||||
# Helmfile values: repository + tag (both required, by indent); tag without repo is skipped
|
||||
awk '
|
||||
match($0, /^[[:space:]]*/) { indent = RLENGTH }
|
||||
/^[[:space:]]*repository:[[:space:]]/ {
|
||||
v = $0; sub(/^[^:]*:[[:space:]]*"?/, "", v); sub(/"?[[:space:]]*$/, "", v); repo[indent] = v;
|
||||
if (tag[indent] != "") { print repo[indent] ":" tag[indent] } else { print repo[indent] };
|
||||
delete repo[indent]; delete tag[indent]; next
|
||||
v = $0; sub(/^[^:]*:[[:space:]]*"?/, "", v); sub(/"?[[:space:]]*$/, "", v); repo[indent] = v; next
|
||||
}
|
||||
/^[[:space:]]*tag:[[:space:]]/ {
|
||||
v = $0; sub(/^[^:]*:[[:space:]]*"?/, "", v); sub(/"?[[:space:]]*$/, "", v); tag[indent] = v;
|
||||
if (repo[indent] != "") { print repo[indent] ":" tag[indent]; delete repo[indent]; delete tag[indent] } else { delete tag[indent] }; next
|
||||
v = $0; sub(/^[^:]*:[[:space:]]*"?/, "", v); sub(/"?[[:space:]]*$/, "", v);
|
||||
if (repo[indent] != "") { print repo[indent] ":" v; delete repo[indent] }; next
|
||||
}
|
||||
' "$f" 2>/dev/null || true
|
||||
done | grep -E '/' | sort -u | paste -sd,
|
||||
|
||||
Reference in New Issue
Block a user