File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ # kubectl kustomize
2+
3+ > Build a set of Kubernetes resources using a ` kustomization.yaml ` file.
4+ > More information: < https://kubernetes.io/docs/reference/kubectl/generated/kubectl_kustomize/ > .
5+
6+ - Build resources from the current directory:
7+
8+ ` kubectl kustomize `
9+
10+ - Build resources from a specific directory:
11+
12+ ` kubectl kustomize {{path/to/directory}} `
13+
14+ - Build resources from a remote URL:
15+
16+ ` kubectl kustomize {{https://github.com/user/repo/path}} `
17+
18+ - Build resources and save to a file:
19+
20+ ` kubectl kustomize {{path/to/directory}} > {{output.yaml}} `
21+
22+ - Build resources with load restrictor disabled:
23+
24+ ` kubectl kustomize --load-restrictor {{LoadRestrictionsNone}} {{path/to/directory}} `
You can’t perform that action at this time.
0 commit comments