kustomize
                                
                                 kustomize copied to clipboard
                                
                                    kustomize copied to clipboard
                            
                            
                            
                        Customization of kubernetes YAML configurations
**Describe the bug** When the Kustomize `newTag` property looks like a number with scientific notation or has no letters at all, Kustomize is unable to unmarshal it. **Files that can...
As mentioned here I return a list of strings that contain the keys in order: https://github.com/kubernetes-sigs/kustomize/issues/4292#issuecomment-990355363 @natasha41575 Do I understand correctly that in order to actually create the items in...
This is a fairly complete implementation of https://github.com/kubernetes/enhancements/issues/2299. This PR is way too big to review; I'll open separate, more granular PRs that reference this one. Besides the TODOs in...
We plan to deprecate and eventually remove Go plugins. Kustomize's own builtins, though compiled into the API module, are currently originated from Go plugins themselves. As part of the deprecation,...
**Describe the bug** Deleting items from an array using strategic merge patch does not work as expected in my base-overlay scenario. Instead of removing the items from the list, it...
I would like to have a base `Deployment` config with a series of `components` that can add values to `tolerations` and `nodeAffinity` selectors, but when I include two components that...
**Description** The configMapGenerator handles double quotes wrong when a config map is generated from a properties file. When double quotes or single quotes are provided in the properties file, they...
Aims to solves #3866 Please review with care as I've never written Go before! Also unit tests doesn't actually go through the command parsing so there might be issues on...
Support [labels](https://github.com/kubernetes-sigs/kustomize/blob/master/api/types/kustomization.go#L51) field in `kustomize edit add` command to allow adding labels without also automatically injecting corresponding selectors
Resolves https://github.com/kubernetes-sigs/kustomize/issues/3913 Make kustomize's ordering of resources customizable from the kustomization.yaml file. My changes in a nutshell: 1. Add the fields to the kustomization struct 2. Extend the `LegacyResourceOrderingPlugin` to...