You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: Component-specific registry overrides weren't working despite being documented as overriding global registry.
Root Cause: Template helper function had incorrect priority order in coalesce:
`{{- $registry := coalesce .global.registry .component.registry .tempo.registry -}}`
Fix: Changed priority to put component registry first:
`{{- $registry := coalesce .component.registry .tempo.registry .global.registry -}}``
Result:
- Component registry now properly overrides global registry as documented
- Fully backwards compatible - when component registry is null, falls back to global
- Enables clean configuration like memcached.image.registry: public.ecr.aws
Signed-off-by: portswigger-amason <[email protected]>
0 commit comments