Set namespace kustomize
Override namespace for all resources in the overlay
kustomize edit set namespace production
more kustomize
all 23 commands →
Add label to all resources
kustomize edit add label env:production
Add patch
kustomize edit add patch --path patch.yaml --kind Deployment --name <name>
List resources
kustomize cfg list-setters .
Build and apply
kubectl apply -k ./overlays/prod
Preview output
kubectl kustomize ./overlays/prod | head -100