kustomize
kustomize copied to clipboard
Customization of kubernetes YAML configurations
Implement `locLoader`, which loads and calculates destination paths of files for new command [kustomize localize](https://github.com/kubernetes-sigs/kustomize/blob/master/proposals/22-04-localize-command.md).
When should I use: ``` internal.config.kubernetes.io/generatorBehavior: merge internal.config.kubernetes.io/needsHashSuffix: enabled ``` vs ``` kustomize.config.k8s.io/behavior: merge kustomize.config.k8s.io/needs-hash: "true" ```
**Describe the bug** base: service.yaml ``` apiVersion: v1 kind: Service metadata: name: nginx spec: ports: - name: http port: 80 protocol: TCP targetPort: 80 ``` overlay: service-patch.yaml ``` apiVersion: v1...
**Describe the bug** When running kustomize v4.5.7 we get a Nil pointer dereference/segmentation fault on anything using the replacements transformer. This is a regression from Kustomize v4.5.5 ``` panic: runtime...
**Is your feature request related to a problem? Please describe.** ServiceMonitors are often supposed to be namespace constrained for a specific application. It's possible to apply namespace selectors to a...
Also enhance this kind of error specifically in the namespace transformer, explaining to the user that it is probably a field spec issue. Also remove ignored field specs from that...
Use the deploy key added in #4620 and enable the ssh tests for the remote fetcher. Tests that reference `github.com/annasong20/kustomize-test` are still disabled as I assume the ssh key hasn't...
**Is your feature request related to a problem? Please describe.** I have multiple web apps which all use the same base and basically just change the name of the deployment,...
Extra quotes are added when env variables are already surrounded by quotes. This issue is similar to [460](https://github.com/kubernetes-sigs/kustomize/issues/460) but with configMapGenerator instead of SecretGenerator .env ```.env SAMPLE="Sample var" ``` Data...
**Is your feature request related to a problem? Please describe.** Currently, `kustomize edit add/set label` only supports `commonLabels` The introduction of the [new label without selectors](https://github.com/kubernetes-sigs/kustomize/releases/tag/kustomize%2Fv4.1.0) was intended to fix...