
kustomize
List of commands for kustomize:
-
kustomize:tldr:7d44e kustomize: Set an image in the kustomization file.$ kustomize edit set image ${busybox=alpine:3-6}try on your machineexplain this command
-
kustomize:tldr:ad2a8 kustomize: Build kustomization file and deploy it with `kubectl`.$ kustomize build . | kubectl apply -f -try on your machineexplain this command
-
kustomize:tldr:cdbeb kustomize: Search for Kubernetes resources in the current directory to be added to the kustomization file.$ kustomize create --autodetecttry on your machineexplain this command
-
kustomize:tldr:cfd63 kustomize: Create kustomization file with resources and namespace.$ kustomize create --resources ${deployment-yaml,service-yaml} --namespace ${staging}try on your machineexplain this command