21 lines
654 B
YAML
21 lines
654 B
YAML
# 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"
|