feat(get-images-from-files): add support for helm values

This commit is contained in:
2026-02-05 15:47:08 +01:00
parent 2269b09740
commit d244282e62
4 changed files with 45 additions and 3 deletions
@@ -0,0 +1,20 @@
# Used by CI to test get-images-from-files action (Helmfile values, fully-qualified refs only)
# Simple convention: image.repository + image.tag
image:
repository: example.com/helmfile/app
tag: "v4"
# Nested under images (repository + tag)
images:
worker:
repository: example.com/helmfile/worker
tag: "v5"
helper:
repository: example.com/myproject/helper
tag: "2.0@sha256:cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
# Repository only (no tag) — should be extracted
repo_only:
repository: example.com/helmfile/repo-only
# Tag only (no repository) — should be skipped
tag_only:
tag: "v99"