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
hooks template mutates .Values in-place (set $.Values "containers" ...): While Helm templates are not truly stateful, mutating the global $.Values dict inside a range loop is fragile and order-dependent. If multiple hooks render sequentially, the values are restored only at the end of each iteration, but any template error midway could leave them dirty. (3c28460)
No validation for hooks.*.events values — invalid hook event names (e.g., typos like pre-instll) are accepted silently. (23f72f7)
StatefulSet headless service ports may duplicate across multiple services: The headless service iterates all services and adds all ports from all, without deduplication — if two services expose the same port name, the headless service would render duplicate port entries, which is invalid YAML/K8s spec. (d435d9c)