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
Kustomize has sed-like features which allow matching on a subtree (patch) or on maps with multiple keys, unlike Goyamp which currently matches on a single key. This enhancement would add rewrite logic in a similar way. Perhaps something like this:
define:
$some-input:
foo:
alpha: 23
bar:
quux:
---
patch:
- $some-input
- foo:
bar: 42
Outputs
foo:
alpha: 23
bar: 42
The text was updated successfully, but these errors were encountered:
Kustomize has sed-like features which allow matching on a subtree (patch) or on maps with multiple keys, unlike Goyamp which currently matches on a single key. This enhancement would add rewrite logic in a similar way. Perhaps something like this:
Outputs
The text was updated successfully, but these errors were encountered: