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
{{ message }}
This repository was archived by the owner on Aug 5, 2025. It is now read-only.
this should probably not happen and we should just drop the value but its not a simple fix because it was a valid parse of the JQ expression and returned a non-null string value because of the nature of it being a JQ string expression filter.
> echo '{}' | jq '"k8s:\(.metadata.name)"'
"k8s:null" <- valid non-null string value which we propagate because its valid string data
> echo '{}' | jq '.metadata.name'
null <- json null value which we detect as null