1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 22:42:08 +02:00
tldr/pages/common/kustomize.md
Lena 0fddee2272
pages/*: reword descriptions to comply with the style guide (#11507)
* pages/*: reword descriptions to comply with the style guide

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-15 09:55:25 +05:30

601 B

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 -

  • 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