TLDMain
TLDMain
Hi there, @stormqueen1990! Thanks for your feedback! This PR addresses the need to streamline kustomize configurations by allowing inlined configurations directly within the kustomization.yaml file, similar to how patches are...
Hi there, @stormqueen1990! Apologies for the incorrect analogy. I based these changes on the behavior of the transformers and generators fields, not on patches. Here's a similar PR: #3225. However,...
Hi @koba1t. I suggest two options for checking: either use regex to verify that the string contains a file path, or check if the string contains multiple lines. Alternatively, you...
I propose two solutions: 1) Add ResAccumulator.MergeConfigLeft — introduce a new function that merges configuration from an this ResAccumulator into a input one ([kusttarget.go#L210](https://github.com/kubernetes-sigs/kustomize/blob/master/api/internal/target/kusttarget.go#L210)) Like this `ra.tConfig = input.Merge(ra.tConfig)` 2)...
Hello, @sda399! > not overridden You're mistaken. Fieldspecs are sorted from more specific to less specific, and duplicates are removed on config merging. There's an [issue](https://github.com/kubernetes-sigs/kustomize/issues/4811) confirming this and a...