2025-03-14 21:59:59 -06:00
|
|
|
# kustomize
|
|
|
|
|
|
|
|
|
|
> Easily deploy resources for Kubernetes.
|
|
|
|
|
> More information: <https://github.com/kubernetes-sigs/kustomize>.
|
|
|
|
|
|
|
|
|
|
- Create a kustomization file with resources and namespace:
|
|
|
|
|
|
|
|
|
|
`kustomize create --resources {{deployment.yaml,service.yaml}} --namespace {{staging}}`
|
|
|
|
|
|
|
|
|
|
- Build a kustomization file and deploy it with `kubectl`:
|
|
|
|
|
|
2025-05-08 12:26:01 -06:00
|
|
|
`kustomize build . | kubectl apply {{[-f|--filename]}} -`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Set an image in the kustomization file:
|
|
|
|
|
|
|
|
|
|
`kustomize edit set image {{busybox=alpine:3.6}}`
|
|
|
|
|
|
|
|
|
|
- Search for Kubernetes resources in the current directory to be added to the kustomization file:
|
|
|
|
|
|
|
|
|
|
`kustomize create --autodetect`
|