1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-05 05:15:24 +02:00
tldr/pages/common/kustomize.md

20 lines
618 B
Markdown

# 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`:
`kustomize build . | kubectl apply {{[-f|--filename]}} -`
- 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`