fix: add CronJob Image Volume support to images transformer

The default images field spec covers spec/volumes[]/image/reference
under Pod and PodTemplateSpec, but CronJob's Image Volume under
spec/jobTemplate/spec/template/spec was missing from the list. This
adds the missing path.
This commit is contained in:
Kazuki Suda
2026-08-29 13:46:14 +09:00
parent 3fd96a0bfb
commit 12135e1563
3 changed files with 140 additions and 0 deletions

View File

@@ -18,5 +18,7 @@ images:
create: true
- path: spec/template/spec/volumes[]/image/reference
create: true
- path: spec/jobTemplate/spec/template/spec/volumes[]/image/reference
create: true
`
)