mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-07-17 17:52:12 +00:00
Compare commits
83 Commits
api/v0.11.
...
kustomize/
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
de6b978491 | ||
|
|
8fa8e14eeb | ||
|
|
26b5e628cf | ||
|
|
80853c61b8 | ||
|
|
c5ff592810 | ||
|
|
b9df5686f4 | ||
|
|
c4d38108cf | ||
|
|
784ae5efa3 | ||
|
|
e8640724a9 | ||
|
|
7b0ec99d90 | ||
|
|
fbfcb0479a | ||
|
|
3421fcf81e | ||
|
|
97de780feb | ||
|
|
3490fb8716 | ||
|
|
2fe04496c2 | ||
|
|
b0d7721049 | ||
|
|
18f22f10a3 | ||
|
|
3ae5aa9e13 | ||
|
|
48f21e920a | ||
|
|
dcdefca70e | ||
|
|
c64351aa01 | ||
|
|
c60979ee3e | ||
|
|
cb80659c22 | ||
|
|
b1086ac49b | ||
|
|
1fcd66258f | ||
|
|
d1d578c392 | ||
|
|
f67dd5bbbd | ||
|
|
ac5c51ba2c | ||
|
|
53cc76fe43 | ||
|
|
07eb595eb2 | ||
|
|
8cb7acfdcb | ||
|
|
975482390f | ||
|
|
701695c343 | ||
|
|
8db1267983 | ||
|
|
da7ec577b2 | ||
|
|
d17b171207 | ||
|
|
70ce89d993 | ||
|
|
e25db3df2e | ||
|
|
3eae520532 | ||
|
|
3ec7b10bc0 | ||
|
|
6dabba1d23 | ||
|
|
bd05631887 | ||
|
|
6950a0d246 | ||
|
|
c90504a19d | ||
|
|
8dab94964f | ||
|
|
ff40460d3b | ||
|
|
a7f4db7fb4 | ||
|
|
5d0762411c | ||
|
|
b4e116346e | ||
|
|
9091919699 | ||
|
|
702a56e2f1 | ||
|
|
00a9c59dd7 | ||
|
|
4dfc2a9507 | ||
|
|
2f17803c0a | ||
|
|
5ed96a34d7 | ||
|
|
14cb815b5d | ||
|
|
a5df6f7fd9 | ||
|
|
4f5dfb5d42 | ||
|
|
6374d3d593 | ||
|
|
22f9daa3ab | ||
|
|
c3c7013f09 | ||
|
|
3277ff9dbf | ||
|
|
746bd18a8c | ||
|
|
d7763045ea | ||
|
|
30612cfd17 | ||
|
|
3006846d67 | ||
|
|
2f9617ff56 | ||
|
|
28b3e9fb9c | ||
|
|
6a7caf4192 | ||
|
|
32e13bdf66 | ||
|
|
fcfd30ca18 | ||
|
|
a86723c3a3 | ||
|
|
01d7fae382 | ||
|
|
39349c4fbc | ||
|
|
836a721a47 | ||
|
|
78e8d4318a | ||
|
|
67591762a6 | ||
|
|
f38648df34 | ||
|
|
b79d77a8a7 | ||
|
|
91f65b3441 | ||
|
|
26b9af0379 | ||
|
|
54ae9ba9fc | ||
|
|
b73dfe7f35 |
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -8,7 +8,7 @@ assignees: ""
|
|||||||
---
|
---
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Please read this page: https://kubernetes-sigs.github.io/kustomize/contributing/bugs/ before
|
Please read this page: https://kubectl.docs.kubernetes.io/contributing/kustomize/bugs/ before
|
||||||
filing a bug
|
filing a bug
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
|||||||
6
.gitignore
vendored
6
.gitignore
vendored
@@ -21,3 +21,9 @@
|
|||||||
*.DS_store
|
*.DS_store
|
||||||
|
|
||||||
.bin
|
.bin
|
||||||
|
|
||||||
|
# Hugo site
|
||||||
|
site/public/
|
||||||
|
site/resources/
|
||||||
|
site/.hugo_build.lock
|
||||||
|
**/node_modules/
|
||||||
|
|||||||
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[submodule "site/themes/docsy"]
|
||||||
|
path = site/themes/docsy
|
||||||
|
url = https://github.com/google/docsy.git
|
||||||
2
Makefile
2
Makefile
@@ -12,7 +12,7 @@ MYGOBIN = $(shell go env GOPATH)/bin
|
|||||||
endif
|
endif
|
||||||
export PATH := $(MYGOBIN):$(PATH)
|
export PATH := $(MYGOBIN):$(PATH)
|
||||||
MODULES := '"cmd/config" "api/" "kustomize/" "kyaml/"'
|
MODULES := '"cmd/config" "api/" "kustomize/" "kyaml/"'
|
||||||
LATEST_V4_RELEASE=v4.4.1
|
LATEST_V4_RELEASE=v4.5.2
|
||||||
|
|
||||||
# Provide defaults for REPO_OWNER and REPO_NAME if not present.
|
# Provide defaults for REPO_OWNER and REPO_NAME if not present.
|
||||||
# Typically these values would be provided by Prow.
|
# Typically these values would be provided by Prow.
|
||||||
|
|||||||
44
README.md
44
README.md
@@ -11,8 +11,8 @@ and it's like [`sed`], in that it emits edited text.
|
|||||||
|
|
||||||
This tool is sponsored by [sig-cli] ([KEP]).
|
This tool is sponsored by [sig-cli] ([KEP]).
|
||||||
|
|
||||||
- [Installation instructions](https://kubernetes-sigs.github.io/kustomize/installation)
|
- [Installation instructions](https://kubectl.docs.kubernetes.io/installation/kustomize/)
|
||||||
- [General documentation](https://kubernetes-sigs.github.io/kustomize)
|
- [General documentation](https://kubectl.docs.kubernetes.io/references/kustomize/)
|
||||||
- [Examples](examples)
|
- [Examples](examples)
|
||||||
|
|
||||||
[](https://prow.k8s.io/job-history/kubernetes-jenkins/pr-logs/directory/kustomize-presubmit-master)
|
[](https://prow.k8s.io/job-history/kubernetes-jenkins/pr-logs/directory/kustomize-presubmit-master)
|
||||||
@@ -34,13 +34,13 @@ will be reflected in the Kubernetes release notes.
|
|||||||
| v1.21 | v4.0.5 |
|
| v1.21 | v4.0.5 |
|
||||||
| v1.22 | v4.2.0 |
|
| v1.22 | v4.2.0 |
|
||||||
|
|
||||||
[v2.0.3]: /../../tree/v2.0.3
|
[v2.0.3]: https://github.com/kubernetes-sigs/kustomize/releases/tag/v2.0.3
|
||||||
[#2506]: https://github.com/kubernetes-sigs/kustomize/issues/2506
|
[#2506]: https://github.com/kubernetes-sigs/kustomize/issues/2506
|
||||||
[#1500]: https://github.com/kubernetes-sigs/kustomize/issues/1500
|
[#1500]: https://github.com/kubernetes-sigs/kustomize/issues/1500
|
||||||
[kust-in-kubectl update]: https://github.com/kubernetes/kubernetes/blob/4d75a6238a6e330337526e0513e67d02b1940b63/CHANGELOG/CHANGELOG-1.21.md#kustomize-updates-in-kubectl
|
[kust-in-kubectl update]: https://github.com/kubernetes/kubernetes/blob/4d75a6238a6e330337526e0513e67d02b1940b63/CHANGELOG/CHANGELOG-1.21.md#kustomize-updates-in-kubectl
|
||||||
|
|
||||||
For examples and guides for using the kubectl integration please
|
For examples and guides for using the kubectl integration please
|
||||||
see the [kubectl book] or the [kubernetes documentation].
|
see the [kubernetes documentation].
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
@@ -141,8 +141,9 @@ The YAML can be directly [applied] to a cluster:
|
|||||||
|
|
||||||
## Community
|
## Community
|
||||||
|
|
||||||
- [file a bug](https://kubernetes-sigs.github.io/kustomize/contributing/bugs/) instructions
|
- [file a bug](https://kubectl.docs.kubernetes.io/contributing/kustomize/bugs/)
|
||||||
- [contribute a feature](https://kubernetes-sigs.github.io/kustomize/contributing/features/) instructions
|
- [contribute a feature](https://kubectl.docs.kubernetes.io/contributing/kustomize/features/)
|
||||||
|
- [propose a larger enhancement](https://github.com/kubernetes-sigs/kustomize/tree/master/proposals)
|
||||||
|
|
||||||
### Code of conduct
|
### Code of conduct
|
||||||
|
|
||||||
@@ -151,27 +152,22 @@ is governed by the [Kubernetes Code of Conduct].
|
|||||||
|
|
||||||
[`make`]: https://www.gnu.org/software/make
|
[`make`]: https://www.gnu.org/software/make
|
||||||
[`sed`]: https://www.gnu.org/software/sed
|
[`sed`]: https://www.gnu.org/software/sed
|
||||||
[DAM]: https://kubernetes-sigs.github.io/kustomize/api-reference/glossary#declarative-application-management
|
[DAM]: https://kubectl.docs.kubernetes.io/references/kustomize/glossary/#declarative-application-management
|
||||||
[KEP]: https://github.com/kubernetes/enhancements/blob/master/keps/sig-cli/2377-Kustomize/README.md
|
[KEP]: https://github.com/kubernetes/enhancements/blob/master/keps/sig-cli/2377-Kustomize/README.md
|
||||||
[Kubernetes Code of Conduct]: code-of-conduct.md
|
[Kubernetes Code of Conduct]: code-of-conduct.md
|
||||||
[applied]: https://kubernetes-sigs.github.io/kustomize/api-reference/glossary#apply
|
[applied]: https://kubectl.docs.kubernetes.io/references/kustomize/glossary/#apply
|
||||||
[base]: https://kubernetes-sigs.github.io/kustomize/api-reference/glossary#base
|
[base]: https://kubectl.docs.kubernetes.io/references/kustomize/glossary/#base
|
||||||
[declarative configuration]: https://kubernetes-sigs.github.io/kustomize/api-reference/glossary#declarative-application-management
|
[declarative configuration]: https://kubectl.docs.kubernetes.io/references/kustomize/glossary/#declarative-application-management
|
||||||
[imageBase]: docs/images/base.jpg
|
[imageBase]: images/base.jpg
|
||||||
[imageOverlay]: docs/images/overlay.jpg
|
[imageOverlay]: images/overlay.jpg
|
||||||
[kubectl announcement]: https://kubernetes.io/blog/2019/03/25/kubernetes-1-14-release-announcement
|
[kubectl announcement]: https://kubernetes.io/blog/2019/03/25/kubernetes-1-14-release-announcement
|
||||||
[kubectl book]: https://kubectl.docs.kubernetes.io/guides/introduction/kustomize/
|
|
||||||
[kubernetes documentation]: https://kubernetes.io/docs/tasks/manage-kubernetes-objects/kustomization/
|
[kubernetes documentation]: https://kubernetes.io/docs/tasks/manage-kubernetes-objects/kustomization/
|
||||||
[kubernetes style]: https://kubernetes-sigs.github.io/kustomize/api-reference/glossary#kubernetes-style-object
|
[kubernetes style]: https://kubectl.docs.kubernetes.io/references/kustomize/glossary/#kubernetes-style-object
|
||||||
[kustomization]: https://kubernetes-sigs.github.io/kustomize/api-reference/glossary#kustomization
|
[kustomization]: https://kubectl.docs.kubernetes.io/references/kustomize/glossary/#kustomization
|
||||||
[overlay]: https://kubernetes-sigs.github.io/kustomize/api-reference/glossary#overlay
|
[overlay]: https://kubectl.docs.kubernetes.io/references/kustomize/glossary/#overlay
|
||||||
[overlays]: https://kubernetes-sigs.github.io/kustomize/api-reference/glossary#overlay
|
[overlays]: https://kubectl.docs.kubernetes.io/references/kustomize/glossary/#overlay
|
||||||
[release page]: https://github.com/kubernetes-sigs/kustomize/releases
|
[release page]: https://github.com/kubernetes-sigs/kustomize/releases
|
||||||
[resource]: https://kubernetes-sigs.github.io/kustomize/api-reference/glossary#resource
|
[resource]: https://kubectl.docs.kubernetes.io/references/kustomize/glossary/#resource
|
||||||
[resources]: https://kubernetes-sigs.github.io/kustomize/api-reference/glossary#resource
|
[resources]: https://kubectl.docs.kubernetes.io/references/kustomize/glossary/#resource
|
||||||
[sig-cli]: https://github.com/kubernetes/community/blob/master/sig-cli/README.md
|
[sig-cli]: https://github.com/kubernetes/community/blob/master/sig-cli/README.md
|
||||||
[variant]: https://kubernetes-sigs.github.io/kustomize/api-reference/glossary#variant
|
[variants]: https://kubectl.docs.kubernetes.io/references/kustomize/glossary/#variant
|
||||||
[variants]: https://kubernetes-sigs.github.io/kustomize/api-reference/glossary#variant
|
|
||||||
[v2.0.3]: https://github.com/kubernetes-sigs/kustomize/releases/tag/v2.0.3
|
|
||||||
[v2.1.0]: https://github.com/kubernetes-sigs/kustomize/releases/tag/v2.1.0
|
|
||||||
[workflows]: https://kubernetes-sigs.github.io/kustomize/guides
|
|
||||||
|
|||||||
112
ROADMAP.md
Normal file
112
ROADMAP.md
Normal file
@@ -0,0 +1,112 @@
|
|||||||
|
# Kustomize roadmap 2022
|
||||||
|
|
||||||
|
Presented at the [January 26, 2022, SIG-CLI meeting](https://youtu.be/l2plzJ9MRlk?t=1321)
|
||||||
|
|
||||||
|
kustomize maintainers: @knverey, @natasha41575
|
||||||
|
|
||||||
|
[Objective: Improve contributor community](#objective-improve-contributor-community)
|
||||||
|
|
||||||
|
[Objective: Improve end-user experience](#objective-improve-end-user-experience)
|
||||||
|
|
||||||
|
[Objective: Improve extension experience](#objective-improve-extension-experience)
|
||||||
|
|
||||||
|
## Objective: Improve contributor community
|
||||||
|
|
||||||
|
**_WHO: End user who also contributes source code._**
|
||||||
|
|
||||||
|
Top priority:
|
||||||
|
|
||||||
|
- Kustomization v1 (also end-user impact) ([PROJECT](https://github.com/kubernetes-sigs/kustomize/projects/12))
|
||||||
|
- Remove the following fields:
|
||||||
|
- [vars](https://github.com/kubernetes-sigs/kustomize/issues/2052)
|
||||||
|
- [patchesJson6902, patchesStrategicMerge (consolidate on \`patches)](https://github.com/kubernetes-sigs/kustomize/issues/4376)
|
||||||
|
- [helmChartInflationGenerator, helmCharts, helmGlobals](https://github.com/kubernetes-sigs/kustomize/issues/4401)
|
||||||
|
- all long-deprecated fields in Kustomization v1 such as \`bases\` and those being accommodate by kustomize edit \[[see code snippet](https://github.com/kubernetes-sigs/kustomize/blob/ee4b7847f0beb6c0d2070673b10f23f7b3e92e82/api/types/fix.go#L15)\]
|
||||||
|
- Ensure that \`kustomize edit fix\` handles migrations for all those, and that anything it changes is not still present in v1.
|
||||||
|
- [Add reorder field](https://github.com/kubernetes-sigs/kustomize/issues/3913). Default should be FIFO and legacy should also be supported (could add alphabetic and custom sort support eventually). Replaces -reorder flag.
|
||||||
|
- [Reconcile openapi and crds field](https://github.com/kubernetes-sigs/kustomize/issues/3944)
|
||||||
|
- [Consider deprecating configurations field](https://github.com/kubernetes-sigs/kustomize/issues/3945) (old, pre-plugin, pre-openapi global configuration)
|
||||||
|
- [Add a field to enable the managedby label](https://github.com/kubernetes-sigs/kustomize/issues/4047)
|
||||||
|
|
||||||
|
Second priority:
|
||||||
|
|
||||||
|
- Improve contributor documentation
|
||||||
|
- [Instructions to upgrade kustomize-in-kubectl](https://github.com/kubernetes-sigs/kustomize/issues/3951)
|
||||||
|
|
||||||
|
Also very valuable to the project:
|
||||||
|
|
||||||
|
- [Improve the release process](https://github.com/kubernetes-sigs/kustomize/issues/3952) to support regular biweekly releases [PROJECT](https://github.com/kubernetes-sigs/kustomize/projects/7)
|
||||||
|
- Release sigs.k8s.io/kustomize/api v1.0.0 [PROJECT](https://github.com/kubernetes-sigs/kustomize/projects/5)
|
||||||
|
- [Reduce the public surface of the API module](https://github.com/kubernetes-sigs/kustomize/issues/3942)
|
||||||
|
- [Vendor all transitive deps](https://github.com/kubernetes-sigs/kustomize/issues/3706). Since kustomize is in kubectl, we must do as kubectl does to manage deps, exposing new transitive deps in code review.
|
||||||
|
- Project administration
|
||||||
|
- [Rename master branch to main](https://github.com/kubernetes-sigs/kustomize/issues/3954)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Objective: Improve end-user experience
|
||||||
|
|
||||||
|
**_WHO: End user that wants kustomize build artifacts (binaries, containers)._**
|
||||||
|
|
||||||
|
Top priorities:
|
||||||
|
|
||||||
|
- Bug fixes:
|
||||||
|
- Fix bugs in basic anchor support: [issue query](https://github.com/kubernetes-sigs/kustomize/issues?q=is%3Aopen+is%3Aissue+label%3Aarea%2Fanchors)
|
||||||
|
- integer keys support: [#3446](https://github.com/kubernetes-sigs/kustomize/issues/3446)
|
||||||
|
- kyaml not respecting \`$patch replace|retainKeys\`: [#2037](https://github.com/kubernetes-sigs/kustomize/issues/2037)
|
||||||
|
- kustomize removing quotes from namespace field values: [#4146](https://github.com/kubernetes-sigs/kustomize/issues/4146)
|
||||||
|
- Kustomize doesn’t support metadata.generateName: [#641](https://github.com/kubernetes-sigs/kustomize/issues/641)
|
||||||
|
- Send kustomize CLI version number into kubectl ([kubectl issue](https://github.com/kubernetes/kubectl/issues/797) / [kustomize issue](https://github.com/kubernetes-sigs/kustomize/issues/1424))
|
||||||
|
- Kustomize performance investigations/improvements [PROJECT](https://github.com/kubernetes-sigs/kustomize/projects/13)
|
||||||
|
- [Support generic resource references in name reference tracking](https://github.com/kubernetes-sigs/kustomize/issues/3418)
|
||||||
|
- [KEP 4267: retain the resource origin and transformer data in annotations](https://github.com/kubernetes-sigs/kustomize/pull/4267)
|
||||||
|
|
||||||
|
Secondary priorities:
|
||||||
|
|
||||||
|
- kustomize cli v5 ([PROJECT](https://github.com/kubernetes-sigs/kustomize/projects/14))
|
||||||
|
- [Drop the --reorder flag](https://github.com/kubernetes-sigs/kustomize/issues/3947)
|
||||||
|
- [Graduate cfg read-only commands out of alpha](https://github.com/kubernetes-sigs/kustomize/issues/4090).
|
||||||
|
- [Drop the –enable-managedby-label](https://github.com/kubernetes-sigs/kustomize/issues/4047)
|
||||||
|
- Drop old plugin-related fields in favor of [the Catalog-style fields](https://github.com/kubernetes/enhancements/tree/master/keps/sig-cli/2906-kustomize-function-catalog).
|
||||||
|
- [Drop the helm flags](https://github.com/kubernetes-sigs/kustomize/issues/4401)
|
||||||
|
- [Confusion around namespace replacement](https://github.com/kubernetes-sigs/kustomize/issues/880).
|
||||||
|
|
||||||
|
Also very valuable to the project:
|
||||||
|
|
||||||
|
- [Overinclusion of root directory error in error messages](https://github.com/kubernetes-sigs/kustomize/issues/4348)
|
||||||
|
- [Add kustomize localize command](https://github.com/kubernetes-sigs/kustomize/issues/3980)
|
||||||
|
- [Fix Windows support in test suite](https://github.com/kubernetes-sigs/kustomize/issues/4001)
|
||||||
|
- Improve end-user documentation [PROJECT](https://github.com/kubernetes-sigs/kustomize/projects/9)
|
||||||
|
|
||||||
|
|
||||||
|
## Objective: Improve extension experience
|
||||||
|
|
||||||
|
**_WHO: Plugin developers: end users who extend kustomize, but don’t think about internals._**
|
||||||
|
|
||||||
|
This objective is described in detail in the [Kustomize Plugin Graduation KEP](https://github.com/kubernetes/enhancements/tree/master/keps/sig-cli/2953-kustomize-plugin-graduation) / [PROJECT](https://github.com/kubernetes-sigs/kustomize/projects/15) .
|
||||||
|
|
||||||
|
Top priorities:
|
||||||
|
|
||||||
|
- Fix core usability issues with KRM Function extensions:
|
||||||
|
- [Better errors for function config failures](https://github.com/kubernetes-sigs/kustomize/issues/4398)
|
||||||
|
- [Container KRM Mounts are not mounting via function parameters](https://github.com/kubernetes-sigs/kustomize/issues/4290)
|
||||||
|
- [Resolution of local file references in extensions transformer configuration](https://github.com/kubernetes-sigs/kustomize/issues/4154)
|
||||||
|
- [Do not silently ignore plugins when config has typo](https://github.com/kubernetes-sigs/kustomize/issues/4399)
|
||||||
|
- [KRM Exec Function can't locate executable when referencing a base](https://github.com/kubernetes-sigs/kustomize/issues/4347)
|
||||||
|
- Once core usability issues are fixed, [deprecate legacy exec and Go plugin support](https://github.com/kubernetes/enhancements/tree/master/keps/sig-cli/2953-kustomize-plugin-graduation)
|
||||||
|
- [Catalog KEP](https://github.com/kubernetes/enhancements/tree/master/keps/sig-cli/2906-kustomize-function-catalog)
|
||||||
|
|
||||||
|
Secondary priorities:
|
||||||
|
|
||||||
|
- [Remove Starlark support](https://github.com/kubernetes-sigs/kustomize/issues/4349)
|
||||||
|
- [Composition KEP](https://github.com/kubernetes/enhancements/pull/2300). The implementation is complete in [#4223](https://github.com/kubernetes-sigs/kustomize/pull/4323), but depends on:
|
||||||
|
- [Convert resources and components to be backed by a reusable generator](https://github.com/kubernetes-sigs/kustomize/issues/4402)
|
||||||
|
- [Enable explicitly invoked transformers to use default fieldSpecs](https://github.com/kubernetes-sigs/kustomize/issues/4404)
|
||||||
|
- [Enable built-in generators to be used in the transformers field ](https://github.com/kubernetes-sigs/kustomize/issues/4403)
|
||||||
|
|
||||||
|
|
||||||
|
Also very valuable to the project:
|
||||||
|
|
||||||
|
- [Improve docs for kyaml libraries](https://github.com/kubernetes-sigs/kustomize/issues/3950), especially by adding examples.
|
||||||
|
- [Create a reserved field for plugin runtime information](https://github.com/kubernetes-sigs/kustomize/issues/4405)
|
||||||
|
- [Develop new standard process for implementing builtin transformers](https://github.com/kubernetes-sigs/kustomize/issues/4400)
|
||||||
@@ -21,9 +21,6 @@ func SetEntry(key, value, tag string) SetFn {
|
|||||||
Value: value,
|
Value: value,
|
||||||
Tag: tag,
|
Tag: tag,
|
||||||
}
|
}
|
||||||
if tag == yaml.NodeTagString && yaml.IsYaml1_1NonString(n) {
|
|
||||||
n.Style = yaml.DoubleQuotedStyle
|
|
||||||
}
|
|
||||||
return func(node *yaml.RNode) error {
|
return func(node *yaml.RNode) error {
|
||||||
return node.PipeE(yaml.FieldSetter{
|
return node.PipeE(yaml.FieldSetter{
|
||||||
Name: key,
|
Name: key,
|
||||||
|
|||||||
@@ -750,6 +750,96 @@ spec:
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
"image with tag and digest new name": {
|
||||||
|
input: `
|
||||||
|
apiVersion: example.com/v1
|
||||||
|
kind: Foo
|
||||||
|
metadata:
|
||||||
|
name: instance
|
||||||
|
spec:
|
||||||
|
image: nginx:1.2.1@sha256:46d5b90a7f4e9996351ad893a26bcbd27216676ad4d5316088ce351fb2c2c3dd
|
||||||
|
`,
|
||||||
|
expectedOutput: `
|
||||||
|
apiVersion: example.com/v1
|
||||||
|
kind: Foo
|
||||||
|
metadata:
|
||||||
|
name: instance
|
||||||
|
spec:
|
||||||
|
image: apache:1.2.1@sha256:46d5b90a7f4e9996351ad893a26bcbd27216676ad4d5316088ce351fb2c2c3dd
|
||||||
|
`,
|
||||||
|
filter: Filter{
|
||||||
|
ImageTag: types.Image{
|
||||||
|
Name: "nginx",
|
||||||
|
NewName: "apache",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
fsSlice: []types.FieldSpec{
|
||||||
|
{
|
||||||
|
Path: "spec/image",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"image with tag and digest new name new tag": {
|
||||||
|
input: `
|
||||||
|
apiVersion: example.com/v1
|
||||||
|
kind: Foo
|
||||||
|
metadata:
|
||||||
|
name: instance
|
||||||
|
spec:
|
||||||
|
image: nginx:1.2.1@sha256:46d5b90a7f4e9996351ad893a26bcbd27216676ad4d5316088ce351fb2c2c3dd
|
||||||
|
`,
|
||||||
|
expectedOutput: `
|
||||||
|
apiVersion: example.com/v1
|
||||||
|
kind: Foo
|
||||||
|
metadata:
|
||||||
|
name: instance
|
||||||
|
spec:
|
||||||
|
image: apache:1.3.0
|
||||||
|
`,
|
||||||
|
filter: Filter{
|
||||||
|
ImageTag: types.Image{
|
||||||
|
Name: "nginx",
|
||||||
|
NewName: "apache",
|
||||||
|
NewTag: "1.3.0",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
fsSlice: []types.FieldSpec{
|
||||||
|
{
|
||||||
|
Path: "spec/image",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"image with tag and digest new name new tag and digest": {
|
||||||
|
input: `
|
||||||
|
apiVersion: example.com/v1
|
||||||
|
kind: Foo
|
||||||
|
metadata:
|
||||||
|
name: instance
|
||||||
|
spec:
|
||||||
|
image: nginx:1.2.1@sha256:46d5b90a7f4e9996351ad893a26bcbd27216676ad4d5316088ce351fb2c2c3dd
|
||||||
|
`,
|
||||||
|
expectedOutput: `
|
||||||
|
apiVersion: example.com/v1
|
||||||
|
kind: Foo
|
||||||
|
metadata:
|
||||||
|
name: instance
|
||||||
|
spec:
|
||||||
|
image: apache:1.3.0@sha256:xyz
|
||||||
|
`,
|
||||||
|
filter: Filter{
|
||||||
|
ImageTag: types.Image{
|
||||||
|
Name: "nginx",
|
||||||
|
NewName: "apache",
|
||||||
|
NewTag: "1.3.0",
|
||||||
|
Digest: "sha256:xyz",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
fsSlice: []types.FieldSpec{
|
||||||
|
{
|
||||||
|
Path: "spec/image",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for tn, tc := range testCases {
|
for tn, tc := range testCases {
|
||||||
|
|||||||
@@ -30,18 +30,32 @@ func (u imageTagUpdater) SetImageValue(rn *yaml.RNode) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
name, tag := image.Split(value)
|
name, tag, digest := image.Split(value)
|
||||||
if u.ImageTag.NewName != "" {
|
if u.ImageTag.NewName != "" {
|
||||||
name = u.ImageTag.NewName
|
name = u.ImageTag.NewName
|
||||||
}
|
}
|
||||||
if u.ImageTag.NewTag != "" {
|
|
||||||
tag = ":" + u.ImageTag.NewTag
|
// overriding tag or digest will replace both original tag and digest values
|
||||||
}
|
if u.ImageTag.NewTag != "" && u.ImageTag.Digest != "" {
|
||||||
if u.ImageTag.Digest != "" {
|
tag = u.ImageTag.NewTag
|
||||||
tag = "@" + u.ImageTag.Digest
|
digest = u.ImageTag.Digest
|
||||||
|
} else if u.ImageTag.NewTag != "" {
|
||||||
|
tag = u.ImageTag.NewTag
|
||||||
|
digest = ""
|
||||||
|
} else if u.ImageTag.Digest != "" {
|
||||||
|
tag = ""
|
||||||
|
digest = u.ImageTag.Digest
|
||||||
}
|
}
|
||||||
|
|
||||||
return u.trackableSetter.SetScalar(name + tag)(rn)
|
// build final image name
|
||||||
|
if tag != "" {
|
||||||
|
name += ":" + tag
|
||||||
|
}
|
||||||
|
if digest != "" {
|
||||||
|
name += "@" + digest
|
||||||
|
}
|
||||||
|
|
||||||
|
return u.trackableSetter.SetScalar(name)(rn)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (u imageTagUpdater) Filter(rn *yaml.RNode) (*yaml.RNode, error) {
|
func (u imageTagUpdater) Filter(rn *yaml.RNode) (*yaml.RNode, error) {
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ func (ns Filter) run(node *yaml.RNode) (*yaml.RNode, error) {
|
|||||||
// transformations based on data -- :)
|
// transformations based on data -- :)
|
||||||
err := node.PipeE(fsslice.Filter{
|
err := node.PipeE(fsslice.Filter{
|
||||||
FsSlice: ns.FsSlice,
|
FsSlice: ns.FsSlice,
|
||||||
SetValue: ns.trackableSetter.SetScalar(ns.Namespace),
|
SetValue: ns.trackableSetter.SetEntry("", ns.Namespace, yaml.NodeTagString),
|
||||||
CreateKind: yaml.ScalarNode, // Namespace is a ScalarNode
|
CreateKind: yaml.ScalarNode, // Namespace is a ScalarNode
|
||||||
CreateTag: yaml.NodeTagString,
|
CreateTag: yaml.NodeTagString,
|
||||||
})
|
})
|
||||||
@@ -85,7 +85,7 @@ func (ns Filter) metaNamespaceHack(obj *yaml.RNode, gvk resid.Gvk) error {
|
|||||||
FsSlice: []types.FieldSpec{
|
FsSlice: []types.FieldSpec{
|
||||||
{Path: types.MetadataNamespacePath, CreateIfNotPresent: true},
|
{Path: types.MetadataNamespacePath, CreateIfNotPresent: true},
|
||||||
},
|
},
|
||||||
SetValue: ns.trackableSetter.SetScalar(ns.Namespace),
|
SetValue: ns.trackableSetter.SetEntry("", ns.Namespace, yaml.NodeTagString),
|
||||||
CreateKind: yaml.ScalarNode, // Namespace is a ScalarNode
|
CreateKind: yaml.ScalarNode, // Namespace is a ScalarNode
|
||||||
}
|
}
|
||||||
_, err := f.Filter(obj)
|
_, err := f.Filter(obj)
|
||||||
@@ -138,7 +138,7 @@ func (ns Filter) roleBindingHack(obj *yaml.RNode, gvk resid.Gvk) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
return ns.trackableSetter.SetScalar(ns.Namespace)(node)
|
return ns.trackableSetter.SetEntry("", ns.Namespace, yaml.NodeTagString)(node)
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@@ -332,26 +332,60 @@ a:
|
|||||||
expectedSetValueArgs: []filtertest_test.SetValueArg{
|
expectedSetValueArgs: []filtertest_test.SetValueArg{
|
||||||
{
|
{
|
||||||
Value: "bar",
|
Value: "bar",
|
||||||
|
Tag: "!!str",
|
||||||
NodePath: []string{"metadata", "namespace"},
|
NodePath: []string{"metadata", "namespace"},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Value: "bar",
|
Value: "bar",
|
||||||
|
Tag: "!!str",
|
||||||
NodePath: []string{"a", "b", "c"},
|
NodePath: []string{"a", "b", "c"},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Value: "bar",
|
Value: "bar",
|
||||||
|
Tag: "!!str",
|
||||||
NodePath: []string{"metadata", "namespace"},
|
NodePath: []string{"metadata", "namespace"},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Value: "bar",
|
Value: "bar",
|
||||||
|
Tag: "!!str",
|
||||||
NodePath: []string{"namespace"},
|
NodePath: []string{"namespace"},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Value: "bar",
|
Value: "bar",
|
||||||
|
Tag: "!!str",
|
||||||
NodePath: []string{"a", "b", "c"},
|
NodePath: []string{"a", "b", "c"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
name: "numeric",
|
||||||
|
input: `
|
||||||
|
apiVersion: example.com/v1
|
||||||
|
kind: Foo
|
||||||
|
metadata:
|
||||||
|
name: instance
|
||||||
|
---
|
||||||
|
apiVersion: example.com/v1
|
||||||
|
kind: Bar
|
||||||
|
metadata:
|
||||||
|
name: instance
|
||||||
|
`,
|
||||||
|
expected: `
|
||||||
|
apiVersion: example.com/v1
|
||||||
|
kind: Foo
|
||||||
|
metadata:
|
||||||
|
name: instance
|
||||||
|
namespace: "01234"
|
||||||
|
---
|
||||||
|
apiVersion: example.com/v1
|
||||||
|
kind: Bar
|
||||||
|
metadata:
|
||||||
|
name: instance
|
||||||
|
namespace: "01234"
|
||||||
|
`,
|
||||||
|
filter: namespace.Filter{Namespace: "01234"},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
type TestCase struct {
|
type TestCase struct {
|
||||||
|
|||||||
@@ -119,13 +119,13 @@ func applyToNode(node *yaml.RNode, value *yaml.RNode, target *types.TargetSelect
|
|||||||
if target.Options != nil && target.Options.Create {
|
if target.Options != nil && target.Options.Create {
|
||||||
t, err = node.Pipe(yaml.LookupCreate(value.YNode().Kind, fieldPath...))
|
t, err = node.Pipe(yaml.LookupCreate(value.YNode().Kind, fieldPath...))
|
||||||
} else {
|
} else {
|
||||||
t, err = node.Pipe(yaml.Lookup(fieldPath...))
|
t, err = node.Pipe(&yaml.PathMatcher{Path: fieldPath})
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if t != nil {
|
if t != nil {
|
||||||
if err = setTargetValue(target.Options, t, value); err != nil {
|
if err = applyToOneNode(target.Options, t, value); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -133,6 +133,27 @@ func applyToNode(node *yaml.RNode, value *yaml.RNode, target *types.TargetSelect
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func applyToOneNode(options *types.FieldOptions, t *yaml.RNode, value *yaml.RNode) error {
|
||||||
|
if len(t.YNode().Content) == 0 {
|
||||||
|
if err := setTargetValue(options, t, value); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, scalarNode := range t.YNode().Content {
|
||||||
|
if options != nil && options.Create {
|
||||||
|
return fmt.Errorf("cannot use create option in a multi-value target")
|
||||||
|
}
|
||||||
|
rn := yaml.NewRNode(scalarNode)
|
||||||
|
if err := setTargetValue(options, rn, value); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func setTargetValue(options *types.FieldOptions, t *yaml.RNode, value *yaml.RNode) error {
|
func setTargetValue(options *types.FieldOptions, t *yaml.RNode, value *yaml.RNode) error {
|
||||||
value = value.Copy()
|
value = value.Copy()
|
||||||
if options != nil && options.Delimiter != "" {
|
if options != nil && options.Delimiter != "" {
|
||||||
@@ -152,7 +173,14 @@ func setTargetValue(options *types.FieldOptions, t *yaml.RNode, value *yaml.RNod
|
|||||||
}
|
}
|
||||||
value.YNode().Value = strings.Join(tv, options.Delimiter)
|
value.YNode().Value = strings.Join(tv, options.Delimiter)
|
||||||
}
|
}
|
||||||
t.SetYNode(value.YNode())
|
|
||||||
|
if t.YNode().Kind == yaml.ScalarNode {
|
||||||
|
// For scalar, only copy the value (leave any type intact to auto-convert int->string or string->int)
|
||||||
|
t.YNode().Value = value.YNode().Value
|
||||||
|
} else {
|
||||||
|
t.SetYNode(value.YNode())
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -205,13 +205,13 @@ spec:
|
|||||||
command: ["printenv"]
|
command: ["printenv"]
|
||||||
args:
|
args:
|
||||||
- example.com
|
- example.com
|
||||||
- 8080
|
- "8080"
|
||||||
- name: busybox
|
- name: busybox
|
||||||
image: busybox:latest
|
image: busybox:latest
|
||||||
args:
|
args:
|
||||||
- echo
|
- echo
|
||||||
- example.com
|
- example.com
|
||||||
- 8080
|
- "8080"
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
@@ -1431,6 +1431,208 @@ spec:
|
|||||||
name: second
|
name: second
|
||||||
version: latest
|
version: latest
|
||||||
property: second`,
|
property: second`,
|
||||||
|
},
|
||||||
|
"one replacements target has multiple value": {
|
||||||
|
input: `apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: sample-deploy
|
||||||
|
name: sample-deploy
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: sample-deploy
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: sample-deploy
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: nginx
|
||||||
|
name: main
|
||||||
|
env:
|
||||||
|
- name: deployment-name
|
||||||
|
value: XXXXX
|
||||||
|
- name: foo
|
||||||
|
value: bar
|
||||||
|
- image: nginx
|
||||||
|
name: sidecar
|
||||||
|
env:
|
||||||
|
- name: deployment-name
|
||||||
|
value: YYYYY
|
||||||
|
`,
|
||||||
|
replacements: `replacements:
|
||||||
|
- source:
|
||||||
|
kind: Deployment
|
||||||
|
name: sample-deploy
|
||||||
|
fieldPath: metadata.name
|
||||||
|
targets:
|
||||||
|
- select:
|
||||||
|
kind: Deployment
|
||||||
|
fieldPaths:
|
||||||
|
- spec.template.spec.containers.[image=nginx].env.[name=deployment-name].value
|
||||||
|
`,
|
||||||
|
expected: `apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: sample-deploy
|
||||||
|
name: sample-deploy
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: sample-deploy
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: sample-deploy
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: nginx
|
||||||
|
name: main
|
||||||
|
env:
|
||||||
|
- name: deployment-name
|
||||||
|
value: sample-deploy
|
||||||
|
- name: foo
|
||||||
|
value: bar
|
||||||
|
- image: nginx
|
||||||
|
name: sidecar
|
||||||
|
env:
|
||||||
|
- name: deployment-name
|
||||||
|
value: sample-deploy`,
|
||||||
|
},
|
||||||
|
"index contains '*' character": {
|
||||||
|
input: `apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: sample-deploy
|
||||||
|
name: sample-deploy
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: sample-deploy
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: sample-deploy
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: nginx
|
||||||
|
name: main
|
||||||
|
env:
|
||||||
|
- name: deployment-name
|
||||||
|
value: XXXXX
|
||||||
|
`,
|
||||||
|
replacements: `replacements:
|
||||||
|
- source:
|
||||||
|
kind: Deployment
|
||||||
|
name: sample-deploy
|
||||||
|
fieldPath: metadata.name
|
||||||
|
targets:
|
||||||
|
- select:
|
||||||
|
kind: Deployment
|
||||||
|
fieldPaths:
|
||||||
|
- spec.template.spec.containers.*.env.[name=deployment-name].value
|
||||||
|
`,
|
||||||
|
expected: `apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: sample-deploy
|
||||||
|
name: sample-deploy
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: sample-deploy
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: sample-deploy
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: nginx
|
||||||
|
name: main
|
||||||
|
env:
|
||||||
|
- name: deployment-name
|
||||||
|
value: sample-deploy`,
|
||||||
|
},
|
||||||
|
"list index contains '*' character": {
|
||||||
|
input: `apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: sample-deploy
|
||||||
|
name: sample-deploy
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: sample-deploy
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: sample-deploy
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: nginx
|
||||||
|
name: main
|
||||||
|
env:
|
||||||
|
- name: deployment-name
|
||||||
|
value: XXXXX
|
||||||
|
- name: foo
|
||||||
|
value: bar
|
||||||
|
- image: nginx
|
||||||
|
name: sidecar
|
||||||
|
env:
|
||||||
|
- name: deployment-name
|
||||||
|
value: YYYYY
|
||||||
|
`,
|
||||||
|
replacements: `replacements:
|
||||||
|
- source:
|
||||||
|
kind: Deployment
|
||||||
|
name: sample-deploy
|
||||||
|
fieldPath: metadata.name
|
||||||
|
targets:
|
||||||
|
- select:
|
||||||
|
kind: Deployment
|
||||||
|
fieldPaths:
|
||||||
|
- spec.template.spec.containers.*.env.[name=deployment-name].value
|
||||||
|
`,
|
||||||
|
expected: `apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: sample-deploy
|
||||||
|
name: sample-deploy
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: sample-deploy
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: sample-deploy
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: nginx
|
||||||
|
name: main
|
||||||
|
env:
|
||||||
|
- name: deployment-name
|
||||||
|
value: sample-deploy
|
||||||
|
- name: foo
|
||||||
|
value: bar
|
||||||
|
- image: nginx
|
||||||
|
name: sidecar
|
||||||
|
env:
|
||||||
|
- name: deployment-name
|
||||||
|
value: sample-deploy`,
|
||||||
},
|
},
|
||||||
"multiple field paths in target": {
|
"multiple field paths in target": {
|
||||||
input: `apiVersion: v1
|
input: `apiVersion: v1
|
||||||
@@ -1556,7 +1758,6 @@ spec:
|
|||||||
name: postgresdb
|
name: postgresdb
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
|
|
||||||
"replacement source.fieldPath does not exist": {
|
"replacement source.fieldPath does not exist": {
|
||||||
input: `apiVersion: v1
|
input: `apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
@@ -1810,6 +2011,310 @@ spec:
|
|||||||
name: nginx-tagged
|
name: nginx-tagged
|
||||||
- image: postgres:1.8.0
|
- image: postgres:1.8.0
|
||||||
name: postgresdb
|
name: postgresdb
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
"string source -> integer target": {
|
||||||
|
input: `apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: config
|
||||||
|
data:
|
||||||
|
PORT: "8080"
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: pod
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: busybox
|
||||||
|
name: myapp-container
|
||||||
|
ports:
|
||||||
|
- containerPort: 80
|
||||||
|
`,
|
||||||
|
replacements: `replacements:
|
||||||
|
- source:
|
||||||
|
kind: ConfigMap
|
||||||
|
name: config
|
||||||
|
fieldPath: data.PORT
|
||||||
|
targets:
|
||||||
|
- select:
|
||||||
|
kind: Pod
|
||||||
|
fieldPaths:
|
||||||
|
- spec.containers.0.ports.0.containerPort
|
||||||
|
`,
|
||||||
|
expected: `apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: config
|
||||||
|
data:
|
||||||
|
PORT: "8080"
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: pod
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: busybox
|
||||||
|
name: myapp-container
|
||||||
|
ports:
|
||||||
|
- containerPort: 8080
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
"string source -> boolean target": {
|
||||||
|
input: `apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: config
|
||||||
|
data:
|
||||||
|
MOUNT_TOKEN: "true"
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: pod
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: busybox
|
||||||
|
name: myapp-container
|
||||||
|
automountServiceAccountToken: false
|
||||||
|
`,
|
||||||
|
replacements: `replacements:
|
||||||
|
- source:
|
||||||
|
kind: ConfigMap
|
||||||
|
name: config
|
||||||
|
fieldPath: data.MOUNT_TOKEN
|
||||||
|
targets:
|
||||||
|
- select:
|
||||||
|
kind: Pod
|
||||||
|
fieldPaths:
|
||||||
|
- spec.containers.0.automountServiceAccountToken
|
||||||
|
`,
|
||||||
|
expected: `apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: config
|
||||||
|
data:
|
||||||
|
MOUNT_TOKEN: "true"
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: pod
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: busybox
|
||||||
|
name: myapp-container
|
||||||
|
automountServiceAccountToken: true
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
// TODO: This is inconsistent with expectations; creating a numerical string would be
|
||||||
|
// expected, unless we had knowledge of the intended type of the field to be
|
||||||
|
// created.
|
||||||
|
"numerical string source -> integer creation": {
|
||||||
|
input: `apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: config
|
||||||
|
data:
|
||||||
|
PORT: "8080"
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: pod
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: busybox
|
||||||
|
name: myapp-container
|
||||||
|
ports:
|
||||||
|
- protocol: TCP
|
||||||
|
`,
|
||||||
|
replacements: `replacements:
|
||||||
|
- source:
|
||||||
|
kind: ConfigMap
|
||||||
|
name: config
|
||||||
|
fieldPath: data.PORT
|
||||||
|
targets:
|
||||||
|
- select:
|
||||||
|
kind: Pod
|
||||||
|
fieldPaths:
|
||||||
|
- spec.containers.0.ports.0.containerPort
|
||||||
|
- spec.containers.0.ports.0.name
|
||||||
|
options:
|
||||||
|
create: true
|
||||||
|
`,
|
||||||
|
expected: `apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: config
|
||||||
|
data:
|
||||||
|
PORT: "8080"
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: pod
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: busybox
|
||||||
|
name: myapp-container
|
||||||
|
ports:
|
||||||
|
- protocol: TCP
|
||||||
|
containerPort: 8080
|
||||||
|
name: 8080
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
"integer source -> string target": {
|
||||||
|
input: `apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: config
|
||||||
|
data:
|
||||||
|
PORT: "8080"
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: pod
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: busybox
|
||||||
|
name: myapp-container
|
||||||
|
ports:
|
||||||
|
- containerPort: 80
|
||||||
|
`,
|
||||||
|
replacements: `replacements:
|
||||||
|
- source:
|
||||||
|
kind: Pod
|
||||||
|
name: pod
|
||||||
|
fieldPath: spec.containers.0.ports.0.containerPort
|
||||||
|
targets:
|
||||||
|
- select:
|
||||||
|
kind: ConfigMap
|
||||||
|
fieldPaths:
|
||||||
|
- data.PORT
|
||||||
|
`,
|
||||||
|
expected: `apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: config
|
||||||
|
data:
|
||||||
|
PORT: "80"
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: pod
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: busybox
|
||||||
|
name: myapp-container
|
||||||
|
ports:
|
||||||
|
- containerPort: 80
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
"boolean source -> string target": {
|
||||||
|
input: `apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: config
|
||||||
|
data:
|
||||||
|
MOUNT_TOKEN: "true"
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: pod
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: busybox
|
||||||
|
name: myapp-container
|
||||||
|
automountServiceAccountToken: false
|
||||||
|
`,
|
||||||
|
replacements: `replacements:
|
||||||
|
- source:
|
||||||
|
kind: Pod
|
||||||
|
name: pod
|
||||||
|
fieldPath: spec.containers.0.automountServiceAccountToken
|
||||||
|
targets:
|
||||||
|
- select:
|
||||||
|
kind: ConfigMap
|
||||||
|
fieldPaths:
|
||||||
|
- data.MOUNT_TOKEN
|
||||||
|
`,
|
||||||
|
expected: `apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: config
|
||||||
|
data:
|
||||||
|
MOUNT_TOKEN: "false"
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: pod
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: busybox
|
||||||
|
name: myapp-container
|
||||||
|
automountServiceAccountToken: false
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
// TODO: This result is expected, but we should create a string and not an
|
||||||
|
// integer if we could know that the target type should be one. As a result,
|
||||||
|
// the actual ConfigMap produces here cannot be applied.
|
||||||
|
"integer source -> integer creation": {
|
||||||
|
input: `apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: config
|
||||||
|
data:
|
||||||
|
FOO: "Bar"
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: pod
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: busybox
|
||||||
|
name: myapp-container
|
||||||
|
ports:
|
||||||
|
- containerPort: 80
|
||||||
|
`,
|
||||||
|
replacements: `replacements:
|
||||||
|
- source:
|
||||||
|
kind: Pod
|
||||||
|
name: pod
|
||||||
|
fieldPath: spec.containers.0.ports.0.containerPort
|
||||||
|
targets:
|
||||||
|
- select:
|
||||||
|
kind: ConfigMap
|
||||||
|
fieldPaths:
|
||||||
|
- data.PORT
|
||||||
|
options:
|
||||||
|
create: true
|
||||||
|
`,
|
||||||
|
expected: `apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: config
|
||||||
|
data:
|
||||||
|
FOO: "Bar"
|
||||||
|
PORT: 80
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: pod
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: busybox
|
||||||
|
name: myapp-container
|
||||||
|
ports:
|
||||||
|
- containerPort: 80
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,5 +41,5 @@ func (rc Filter) run(node *yaml.RNode) (*yaml.RNode, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (rc Filter) set(node *yaml.RNode) error {
|
func (rc Filter) set(node *yaml.RNode) error {
|
||||||
return rc.trackableSetter.SetScalar(strconv.FormatInt(rc.Replica.Count, 10))(node)
|
return rc.trackableSetter.SetEntry("", strconv.FormatInt(rc.Replica.Count, 10), yaml.NodeTagInt)(node)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -192,6 +192,7 @@ spec:
|
|||||||
expectedSetValueArgs: []filtertest_test.SetValueArg{
|
expectedSetValueArgs: []filtertest_test.SetValueArg{
|
||||||
{
|
{
|
||||||
Value: "42",
|
Value: "42",
|
||||||
|
Tag: "!!int",
|
||||||
NodePath: []string{"spec", "replicas"},
|
NodePath: []string{"spec", "replicas"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -11,6 +11,6 @@ require (
|
|||||||
github.com/stretchr/testify v1.7.0
|
github.com/stretchr/testify v1.7.0
|
||||||
gopkg.in/yaml.v2 v2.4.0
|
gopkg.in/yaml.v2 v2.4.0
|
||||||
k8s.io/kube-openapi v0.0.0-20210421082810-95288971da7e
|
k8s.io/kube-openapi v0.0.0-20210421082810-95288971da7e
|
||||||
sigs.k8s.io/kustomize/kyaml v0.13.2
|
sigs.k8s.io/kustomize/kyaml v0.13.4
|
||||||
sigs.k8s.io/yaml v1.2.0
|
sigs.k8s.io/yaml v1.2.0
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -634,8 +634,8 @@ k8s.io/kube-openapi v0.0.0-20210421082810-95288971da7e/go.mod h1:vHXdDvt9+2spS2R
|
|||||||
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
||||||
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
|
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
|
||||||
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
|
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
|
||||||
sigs.k8s.io/kustomize/kyaml v0.13.2 h1:R3uST+eWe4sSj6STEAJWRJPM6BJc3vdFPl7rKtHacps=
|
sigs.k8s.io/kustomize/kyaml v0.13.4 h1:UP4niyzHP8yBDZTJu3OyZMCbJUfT6PIj0fJZFcn8gQw=
|
||||||
sigs.k8s.io/kustomize/kyaml v0.13.2/go.mod h1:/ya3Gk4diiQzlE4mBh7wykyLRFZNvqlbh+JnwQ9Vhrc=
|
sigs.k8s.io/kustomize/kyaml v0.13.4/go.mod h1:/ya3Gk4diiQzlE4mBh7wykyLRFZNvqlbh+JnwQ9Vhrc=
|
||||||
sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw=
|
sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw=
|
||||||
sigs.k8s.io/yaml v1.2.0 h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=
|
sigs.k8s.io/yaml v1.2.0 h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=
|
||||||
sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc=
|
sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc=
|
||||||
|
|||||||
@@ -14,37 +14,53 @@ func IsImageMatched(s, t string) bool {
|
|||||||
// Tag values are limited to [a-zA-Z0-9_.{}-].
|
// Tag values are limited to [a-zA-Z0-9_.{}-].
|
||||||
// Some tools like Bazel rules_k8s allow tag patterns with {} characters.
|
// Some tools like Bazel rules_k8s allow tag patterns with {} characters.
|
||||||
// More info: https://github.com/bazelbuild/rules_k8s/pull/423
|
// More info: https://github.com/bazelbuild/rules_k8s/pull/423
|
||||||
pattern, _ := regexp.Compile("^" + t + "(@sha256)?(:[a-zA-Z0-9_.{}-]*)?$")
|
pattern, _ := regexp.Compile("^" + t + "(:[a-zA-Z0-9_.{}-]*)?(@sha256:[a-zA-Z0-9_.{}-]*)?$")
|
||||||
return pattern.MatchString(s)
|
return pattern.MatchString(s)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Split separates and returns the name and tag parts
|
// Split separates and returns the name and tag parts
|
||||||
// from the image string using either colon `:` or at `@` separators.
|
// from the image string using either colon `:` or at `@` separators.
|
||||||
// Note that the returned tag keeps its separator.
|
// image reference pattern: [[host[:port]/]component/]component[:tag][@digest]
|
||||||
func Split(imageName string) (name string, tag string) {
|
func Split(imageName string) (name string, tag string, digest string) {
|
||||||
// check if image name contains a domain
|
// check if image name contains a domain
|
||||||
// if domain is present, ignore domain and check for `:`
|
// if domain is present, ignore domain and check for `:`
|
||||||
ic := -1
|
searchName := imageName
|
||||||
if slashIndex := strings.Index(imageName, "/"); slashIndex < 0 {
|
slashIndex := strings.Index(imageName, "/")
|
||||||
ic = strings.LastIndex(imageName, ":")
|
if slashIndex > 0 {
|
||||||
|
searchName = imageName[slashIndex:]
|
||||||
} else {
|
} else {
|
||||||
lastIc := strings.LastIndex(imageName[slashIndex:], ":")
|
slashIndex = 0
|
||||||
// set ic only if `:` is present
|
|
||||||
if lastIc > 0 {
|
|
||||||
ic = slashIndex + lastIc
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ia := strings.LastIndex(imageName, "@")
|
|
||||||
if ic < 0 && ia < 0 {
|
|
||||||
return imageName, ""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
i := ic
|
id := strings.Index(searchName, "@")
|
||||||
if ia > 0 {
|
ic := strings.Index(searchName, ":")
|
||||||
i = ia
|
|
||||||
|
// no tag or digest
|
||||||
|
if ic < 0 && id < 0 {
|
||||||
|
return imageName, "", ""
|
||||||
}
|
}
|
||||||
|
|
||||||
name = imageName[:i]
|
// digest only
|
||||||
tag = imageName[i:]
|
if id >= 0 && (id < ic || ic < 0) {
|
||||||
return
|
id += slashIndex
|
||||||
|
name = imageName[:id]
|
||||||
|
digest = strings.TrimPrefix(imageName[id:], "@")
|
||||||
|
return name, "", digest
|
||||||
|
}
|
||||||
|
|
||||||
|
// tag and digest
|
||||||
|
if id >= 0 && ic >= 0 {
|
||||||
|
id += slashIndex
|
||||||
|
ic += slashIndex
|
||||||
|
name = imageName[:ic]
|
||||||
|
tag = strings.TrimPrefix(imageName[ic:id], ":")
|
||||||
|
digest = strings.TrimPrefix(imageName[id:], "@")
|
||||||
|
return name, tag, digest
|
||||||
|
}
|
||||||
|
|
||||||
|
// tag only
|
||||||
|
ic += slashIndex
|
||||||
|
name = imageName[:ic]
|
||||||
|
tag = strings.TrimPrefix(imageName[ic:], ":")
|
||||||
|
return name, tag, ""
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,11 +23,23 @@ func TestIsImageMatched(t *testing.T) {
|
|||||||
isMatched: true,
|
isMatched: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
testName: "name is match",
|
testName: "name is match with tag",
|
||||||
value: "nginx:12345",
|
value: "nginx:12345",
|
||||||
name: "nginx",
|
name: "nginx",
|
||||||
isMatched: true,
|
isMatched: true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
testName: "name is match with digest",
|
||||||
|
value: "nginx@sha256:xyz",
|
||||||
|
name: "nginx",
|
||||||
|
isMatched: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
testName: "name is match with tag and digest",
|
||||||
|
value: "nginx:12345@sha256:xyz",
|
||||||
|
name: "nginx",
|
||||||
|
isMatched: true,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
testName: "name is not a match",
|
testName: "name is not a match",
|
||||||
value: "apache:12345",
|
value: "apache:12345",
|
||||||
@@ -49,32 +61,65 @@ func TestSplit(t *testing.T) {
|
|||||||
value string
|
value string
|
||||||
name string
|
name string
|
||||||
tag string
|
tag string
|
||||||
|
digest string
|
||||||
}{
|
}{
|
||||||
{
|
{
|
||||||
testName: "no tag",
|
testName: "no tag",
|
||||||
value: "nginx",
|
value: "nginx",
|
||||||
name: "nginx",
|
name: "nginx",
|
||||||
tag: "",
|
tag: "",
|
||||||
|
digest: "",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
testName: "with tag",
|
testName: "with tag",
|
||||||
value: "nginx:1.2.3",
|
value: "nginx:1.2.3",
|
||||||
name: "nginx",
|
name: "nginx",
|
||||||
tag: ":1.2.3",
|
tag: "1.2.3",
|
||||||
|
digest: "",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
testName: "with digest",
|
testName: "with digest",
|
||||||
value: "nginx@12345",
|
value: "nginx@sha256:12345",
|
||||||
name: "nginx",
|
name: "nginx",
|
||||||
tag: "@12345",
|
tag: "",
|
||||||
|
digest: "sha256:12345",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
testName: "with tag and digest",
|
||||||
|
value: "nginx:1.2.3@sha256:12345",
|
||||||
|
name: "nginx",
|
||||||
|
tag: "1.2.3",
|
||||||
|
digest: "sha256:12345",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
testName: "with domain",
|
||||||
|
value: "docker.io/nginx:1.2.3",
|
||||||
|
name: "docker.io/nginx",
|
||||||
|
tag: "1.2.3",
|
||||||
|
digest: "",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
testName: "with domain and port",
|
||||||
|
value: "foo.com:443/nginx:1.2.3",
|
||||||
|
name: "foo.com:443/nginx",
|
||||||
|
tag: "1.2.3",
|
||||||
|
digest: "",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
testName: "with domain, port, tag and digest",
|
||||||
|
value: "foo.com:443/nginx:1.2.3@sha256:12345",
|
||||||
|
name: "foo.com:443/nginx",
|
||||||
|
tag: "1.2.3",
|
||||||
|
digest: "sha256:12345",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, tc := range testCases {
|
for _, tc := range testCases {
|
||||||
t.Run(tc.testName, func(t *testing.T) {
|
t.Run(tc.testName, func(t *testing.T) {
|
||||||
name, tag := Split(tc.value)
|
name, tag, digest := Split(tc.value)
|
||||||
assert.Equal(t, tc.name, name)
|
assert.Equal(t, tc.name, name)
|
||||||
assert.Equal(t, tc.tag, tag)
|
assert.Equal(t, tc.tag, tag)
|
||||||
|
assert.Equal(t, tc.digest, digest)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ type PrefixTransformerPlugin struct {
|
|||||||
FieldSpecs types.FsSlice `json:"fieldSpecs,omitempty" yaml:"fieldSpecs,omitempty"`
|
FieldSpecs types.FsSlice `json:"fieldSpecs,omitempty" yaml:"fieldSpecs,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Make this gvk skip list part of the config.
|
||||||
var prefixFieldSpecsToSkip = types.FsSlice{
|
var prefixFieldSpecsToSkip = types.FsSlice{
|
||||||
{Gvk: resid.Gvk{Kind: "CustomResourceDefinition"}},
|
{Gvk: resid.Gvk{Kind: "CustomResourceDefinition"}},
|
||||||
{Gvk: resid.Gvk{Group: "apiregistration.k8s.io", Kind: "APIService"}},
|
{Gvk: resid.Gvk{Group: "apiregistration.k8s.io", Kind: "APIService"}},
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ package builtins
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"reflect"
|
||||||
|
|
||||||
"sigs.k8s.io/kustomize/api/filters/replacement"
|
"sigs.k8s.io/kustomize/api/filters/replacement"
|
||||||
"sigs.k8s.io/kustomize/api/resmap"
|
"sigs.k8s.io/kustomize/api/resmap"
|
||||||
@@ -35,11 +36,29 @@ func (p *ReplacementTransformerPlugin) Config(
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
repl := types.Replacement{}
|
// find if the path contains a a list of replacements or a single replacement
|
||||||
if err := yaml.Unmarshal(content, &repl); err != nil {
|
var replacement interface{}
|
||||||
|
err = yaml.Unmarshal(content, &replacement)
|
||||||
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
p.Replacements = append(p.Replacements, repl)
|
items := reflect.ValueOf(replacement)
|
||||||
|
switch items.Kind() {
|
||||||
|
case reflect.Slice:
|
||||||
|
repl := []types.Replacement{}
|
||||||
|
if err := yaml.Unmarshal(content, &repl); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
p.Replacements = append(p.Replacements, repl...)
|
||||||
|
case reflect.Map:
|
||||||
|
repl := types.Replacement{}
|
||||||
|
if err := yaml.Unmarshal(content, &repl); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
p.Replacements = append(p.Replacements, repl)
|
||||||
|
default:
|
||||||
|
return fmt.Errorf("unsupported replacement type encountered within replacement path: %v", items.Kind())
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// replacement information is already loaded
|
// replacement information is already loaded
|
||||||
p.Replacements = append(p.Replacements, r.Replacement)
|
p.Replacements = append(p.Replacements, r.Replacement)
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ type SuffixTransformerPlugin struct {
|
|||||||
FieldSpecs types.FsSlice `json:"fieldSpecs,omitempty" yaml:"fieldSpecs,omitempty"`
|
FieldSpecs types.FsSlice `json:"fieldSpecs,omitempty" yaml:"fieldSpecs,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Make this gvk skip list part of the config.
|
||||||
var suffixFieldSpecsToSkip = types.FsSlice{
|
var suffixFieldSpecsToSkip = types.FsSlice{
|
||||||
{Gvk: resid.Gvk{Kind: "CustomResourceDefinition"}},
|
{Gvk: resid.Gvk{Kind: "CustomResourceDefinition"}},
|
||||||
{Gvk: resid.Gvk{Group: "apiregistration.k8s.io", Kind: "APIService"}},
|
{Gvk: resid.Gvk{Group: "apiregistration.k8s.io", Kind: "APIService"}},
|
||||||
|
|||||||
@@ -140,7 +140,7 @@ metadata:
|
|||||||
foo: 'bar'
|
foo: 'bar'
|
||||||
data:
|
data:
|
||||||
a: x
|
a: x
|
||||||
b: y
|
b: "y"
|
||||||
c: Hello World
|
c: Hello World
|
||||||
d: "true"
|
d: "true"
|
||||||
`,
|
`,
|
||||||
@@ -181,7 +181,7 @@ metadata:
|
|||||||
river: 'Missouri'
|
river: 'Missouri'
|
||||||
data:
|
data:
|
||||||
a: x
|
a: x
|
||||||
b: y
|
b: "y"
|
||||||
c: Hello World
|
c: Hello World
|
||||||
d: "true"
|
d: "true"
|
||||||
immutable: true
|
immutable: true
|
||||||
|
|||||||
@@ -83,9 +83,15 @@ func setImmutable(
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
if opts.Immutable {
|
if opts.Immutable {
|
||||||
if _, err := rn.Pipe(yaml.SetField("immutable", yaml.NewScalarRNode("true"))); err != nil {
|
n := &yaml.Node{
|
||||||
|
Kind: yaml.ScalarNode,
|
||||||
|
Value: "true",
|
||||||
|
Tag: yaml.NodeTagBool,
|
||||||
|
}
|
||||||
|
if _, err := rn.Pipe(yaml.FieldSetter{Name: "immutable", Value: yaml.NewRNode(n)}); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,6 +19,16 @@ func (e YamlFormatError) Error() string {
|
|||||||
return fmt.Sprintf("YAML file [%s] encounters a format error.\n%s\n", e.Path, e.ErrorMsg)
|
return fmt.Sprintf("YAML file [%s] encounters a format error.\n%s\n", e.Path, e.ErrorMsg)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// MalformedYamlError represents an error that occurred while trying to decode a given YAML.
|
||||||
|
type MalformedYamlError struct {
|
||||||
|
Path string
|
||||||
|
ErrorMsg string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e MalformedYamlError) Error() string {
|
||||||
|
return fmt.Sprintf("%s in File: %s", e.ErrorMsg, e.Path)
|
||||||
|
}
|
||||||
|
|
||||||
// Handler handles YamlFormatError
|
// Handler handles YamlFormatError
|
||||||
func Handler(e error, path string) error {
|
func Handler(e error, path string) error {
|
||||||
if isYAMLSyntaxError(e) {
|
if isYAMLSyntaxError(e) {
|
||||||
@@ -27,9 +37,19 @@ func Handler(e error, path string) error {
|
|||||||
ErrorMsg: e.Error(),
|
ErrorMsg: e.Error(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if IsMalformedYAMLError(e) {
|
||||||
|
return MalformedYamlError{
|
||||||
|
Path: path,
|
||||||
|
ErrorMsg: e.Error(),
|
||||||
|
}
|
||||||
|
}
|
||||||
return e
|
return e
|
||||||
}
|
}
|
||||||
|
|
||||||
func isYAMLSyntaxError(e error) bool {
|
func isYAMLSyntaxError(e error) bool {
|
||||||
return strings.Contains(e.Error(), "error converting YAML to JSON") || strings.Contains(e.Error(), "error unmarshaling JSON")
|
return strings.Contains(e.Error(), "error converting YAML to JSON") || strings.Contains(e.Error(), "error unmarshaling JSON")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func IsMalformedYAMLError(e error) bool {
|
||||||
|
return strings.Contains(e.Error(), "MalformedYAMLError")
|
||||||
|
}
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ import (
|
|||||||
"sigs.k8s.io/kustomize/api/ifc"
|
"sigs.k8s.io/kustomize/api/ifc"
|
||||||
"sigs.k8s.io/kustomize/api/internal/accumulator"
|
"sigs.k8s.io/kustomize/api/internal/accumulator"
|
||||||
"sigs.k8s.io/kustomize/api/internal/builtins"
|
"sigs.k8s.io/kustomize/api/internal/builtins"
|
||||||
|
"sigs.k8s.io/kustomize/api/internal/kusterr"
|
||||||
"sigs.k8s.io/kustomize/api/internal/plugins/builtinconfig"
|
"sigs.k8s.io/kustomize/api/internal/plugins/builtinconfig"
|
||||||
"sigs.k8s.io/kustomize/api/internal/plugins/builtinhelpers"
|
"sigs.k8s.io/kustomize/api/internal/plugins/builtinhelpers"
|
||||||
"sigs.k8s.io/kustomize/api/internal/plugins/loader"
|
"sigs.k8s.io/kustomize/api/internal/plugins/loader"
|
||||||
@@ -405,6 +406,9 @@ func (kt *KustTarget) accumulateResources(
|
|||||||
if errors.Is(errF, load.ErrorHTTP) {
|
if errors.Is(errF, load.ErrorHTTP) {
|
||||||
return nil, errF
|
return nil, errF
|
||||||
}
|
}
|
||||||
|
if kusterr.IsMalformedYAMLError(errF) { // Some error occurred while tyring to decode YAML file
|
||||||
|
return nil, errF
|
||||||
|
}
|
||||||
ldr, err := kt.ldr.New(path)
|
ldr, err := kt.ldr.New(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errors.Wrapf(
|
return nil, errors.Wrapf(
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ package krusty_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"sigs.k8s.io/kustomize/api/internal/kusterr"
|
||||||
kusttest_test "sigs.k8s.io/kustomize/api/testutils/kusttest"
|
kusttest_test "sigs.k8s.io/kustomize/api/testutils/kusttest"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -80,3 +81,35 @@ spec:
|
|||||||
clusterIP: None
|
clusterIP: None
|
||||||
`)
|
`)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//test for https://github.com/kubernetes-sigs/kustomize/issues/3812#issuecomment-862339267
|
||||||
|
func TestBasicIO3812(t *testing.T) {
|
||||||
|
th := kusttest_test.MakeHarness(t)
|
||||||
|
th.WriteK(".", `
|
||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- service.yaml
|
||||||
|
`)
|
||||||
|
|
||||||
|
th.WriteF("service.yaml", `
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: kapacitor
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: tick-kapacitor
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/name: tick-kapacitor
|
||||||
|
- name: http
|
||||||
|
port: 9092
|
||||||
|
protocol: TCP
|
||||||
|
type: ClusterIP
|
||||||
|
`)
|
||||||
|
|
||||||
|
err := th.RunWithErr(".", th.MakeDefaultOptions())
|
||||||
|
if !kusterr.IsMalformedYAMLError(err) {
|
||||||
|
t.Fatalf("unexpected error: %q", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -551,7 +551,7 @@ components:
|
|||||||
`),
|
`),
|
||||||
},
|
},
|
||||||
runPath: "filesincomponents",
|
runPath: "filesincomponents",
|
||||||
expectedError: "'/filesincomponents/stub.yaml' must be a directory to be a root",
|
expectedError: "'/filesincomponents/stub.yaml' must be a directory so that it can used as a build root",
|
||||||
},
|
},
|
||||||
"invalid-component-api-version": {
|
"invalid-component-api-version": {
|
||||||
input: []FileGen{writeTestBase, writeOverlayProd,
|
input: []FileGen{writeTestBase, writeOverlayProd,
|
||||||
|
|||||||
62
api/krusty/legacy_order_test.go
Normal file
62
api/krusty/legacy_order_test.go
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
package krusty_test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
kusttest_test "sigs.k8s.io/kustomize/api/testutils/kusttest"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestIssue4388(t *testing.T) {
|
||||||
|
th := kusttest_test.MakeHarness(t)
|
||||||
|
th.WriteK(".", `
|
||||||
|
resources:
|
||||||
|
- resources.yaml
|
||||||
|
`)
|
||||||
|
th.WriteF("resources.yaml", `
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: testing
|
||||||
|
data:
|
||||||
|
key: value
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: testing-one
|
||||||
|
data:
|
||||||
|
key: value
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: testing-two
|
||||||
|
data:
|
||||||
|
key: value
|
||||||
|
`)
|
||||||
|
opts := th.MakeDefaultOptions()
|
||||||
|
opts.DoLegacyResourceSort = true
|
||||||
|
m := th.Run(".", opts)
|
||||||
|
th.AssertActualEqualsExpected(m, `
|
||||||
|
apiVersion: v1
|
||||||
|
data:
|
||||||
|
key: value
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: testing
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
data:
|
||||||
|
key: value
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: testing-one
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
data:
|
||||||
|
key: value
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: testing-two
|
||||||
|
`)
|
||||||
|
}
|
||||||
@@ -77,6 +77,66 @@ spec:
|
|||||||
assert.NoError(t, fSys.RemoveAll(tmpDir.String()))
|
assert.NoError(t, fSys.RemoveAll(tmpDir.String()))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestRemoteResourceGitHTTP(t *testing.T) {
|
||||||
|
output := `apiVersion: v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: myapp
|
||||||
|
name: dev-myapp-pod
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: nginx:1.7.9
|
||||||
|
name: nginx
|
||||||
|
`
|
||||||
|
tests := []struct {
|
||||||
|
input []byte
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
input: []byte(`
|
||||||
|
resources:
|
||||||
|
- https://github.com/kubernetes-sigs/kustomize/examples/multibases/dev/?ref=v1.0.6
|
||||||
|
`),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
input: []byte(`
|
||||||
|
resources:
|
||||||
|
- https://github.com/kubernetes-sigs/kustomize//examples/multibases/dev/?ref=v1.0.6
|
||||||
|
`),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
input: []byte(`
|
||||||
|
resources:
|
||||||
|
- git::https://github.com/kubernetes-sigs/kustomize/examples/multibases/dev/?ref=v1.0.6
|
||||||
|
`),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
input: []byte(`
|
||||||
|
resources:
|
||||||
|
- git::https://github.com/kubernetes-sigs/kustomize//examples/multibases/dev/?ref=v1.0.6
|
||||||
|
`),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, test := range tests {
|
||||||
|
fSys := filesys.MakeFsOnDisk()
|
||||||
|
b := krusty.MakeKustomizer(krusty.MakeDefaultOptions())
|
||||||
|
tmpDir, err := filesys.NewTmpConfirmedDir()
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.NoError(t, fSys.WriteFile(filepath.Join(tmpDir.String(), "kustomization.yaml"), test.input))
|
||||||
|
m, err := b.Run(fSys, tmpDir.String())
|
||||||
|
if utils.IsErrTimeout(err) {
|
||||||
|
// Don't fail on timeouts.
|
||||||
|
t.SkipNow()
|
||||||
|
}
|
||||||
|
assert.NoError(t, err)
|
||||||
|
yml, err := m.AsYaml()
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, output, string(yml))
|
||||||
|
assert.NoError(t, fSys.RemoveAll(tmpDir.String()))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestRemoteResourceWithHTTPError(t *testing.T) {
|
func TestRemoteResourceWithHTTPError(t *testing.T) {
|
||||||
fSys := filesys.MakeFsOnDisk()
|
fSys := filesys.MakeFsOnDisk()
|
||||||
b := krusty.MakeKustomizer(krusty.MakeDefaultOptions())
|
b := krusty.MakeKustomizer(krusty.MakeDefaultOptions())
|
||||||
|
|||||||
@@ -110,6 +110,67 @@ spec:
|
|||||||
th.AssertActualEqualsExpected(m, expected)
|
th.AssertActualEqualsExpected(m, expected)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestReplacementsFieldWithPathMultiple(t *testing.T) {
|
||||||
|
th := kusttest_test.MakeEnhancedHarness(t)
|
||||||
|
defer th.Reset()
|
||||||
|
|
||||||
|
th.WriteK(".", `
|
||||||
|
resources:
|
||||||
|
- resource.yaml
|
||||||
|
|
||||||
|
replacements:
|
||||||
|
- path: replacement.yaml
|
||||||
|
`)
|
||||||
|
th.WriteF("replacement.yaml", `
|
||||||
|
- source:
|
||||||
|
kind: Deployment
|
||||||
|
fieldPath: spec.template.spec.containers.0.image
|
||||||
|
targets:
|
||||||
|
- select:
|
||||||
|
kind: Deployment
|
||||||
|
fieldPaths:
|
||||||
|
- spec.template.spec.containers.1.image
|
||||||
|
- source:
|
||||||
|
kind: Deployment
|
||||||
|
fieldPath: spec.template.spec.containers.0.name
|
||||||
|
targets:
|
||||||
|
- select:
|
||||||
|
kind: Deployment
|
||||||
|
fieldPaths:
|
||||||
|
- spec.template.spec.containers.1.name
|
||||||
|
`)
|
||||||
|
th.WriteF("resource.yaml", `
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: deploy
|
||||||
|
spec:
|
||||||
|
template:
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: foobar:1
|
||||||
|
name: replaced-with-digest
|
||||||
|
- image: postgres:1.8.0
|
||||||
|
name: postgresdb
|
||||||
|
`)
|
||||||
|
expected := `
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: deploy
|
||||||
|
spec:
|
||||||
|
template:
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: foobar:1
|
||||||
|
name: replaced-with-digest
|
||||||
|
- image: foobar:1
|
||||||
|
name: replaced-with-digest
|
||||||
|
`
|
||||||
|
m := th.Run(".", th.MakeDefaultOptions())
|
||||||
|
th.AssertActualEqualsExpected(m, expected)
|
||||||
|
}
|
||||||
|
|
||||||
func TestReplacementTransformerWithDiamondShape(t *testing.T) {
|
func TestReplacementTransformerWithDiamondShape(t *testing.T) {
|
||||||
th := kusttest_test.MakeEnhancedHarness(t)
|
th := kusttest_test.MakeEnhancedHarness(t)
|
||||||
defer th.Reset()
|
defer th.Reset()
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
package loader
|
package loader
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
@@ -158,8 +159,8 @@ func demandDirectoryRoot(
|
|||||||
}
|
}
|
||||||
if f != "" {
|
if f != "" {
|
||||||
return "", fmt.Errorf(
|
return "", fmt.Errorf(
|
||||||
"got file '%s', but '%s' must be a directory to be a root",
|
"'%s' must be a directory so that it can used as a build root",
|
||||||
f, path)
|
path)
|
||||||
}
|
}
|
||||||
return d, nil
|
return d, nil
|
||||||
}
|
}
|
||||||
@@ -298,7 +299,7 @@ func (fl *fileLoader) errIfRepoCycle(newRepoSpec *git.RepoSpec) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Load returns the content of file at the given path,
|
// Load returns the content of file at the given path,
|
||||||
// else an error. Relative paths are taken relative
|
// else an error. Relative paths are taken relative
|
||||||
// to the root.
|
// to the root.
|
||||||
func (fl *fileLoader) Load(path string) ([]byte, error) {
|
func (fl *fileLoader) Load(path string) ([]byte, error) {
|
||||||
if u, err := url.Parse(path); err == nil && (u.Scheme == "http" || u.Scheme == "https") {
|
if u, err := url.Parse(path); err == nil && (u.Scheme == "http" || u.Scheme == "https") {
|
||||||
@@ -314,6 +315,10 @@ func (fl *fileLoader) Load(path string) ([]byte, error) {
|
|||||||
}
|
}
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
if resp.StatusCode < 200 || resp.StatusCode > 299 {
|
if resp.StatusCode < 200 || resp.StatusCode > 299 {
|
||||||
|
_, err := git.NewRepoSpecFromUrl(path)
|
||||||
|
if err == nil {
|
||||||
|
return nil, errors.New("URL is a git repository")
|
||||||
|
}
|
||||||
return nil, fmt.Errorf("%w: status code %d (%s)", ErrorHTTP, resp.StatusCode, http.StatusText(resp.StatusCode))
|
return nil, fmt.Errorf("%w: status code %d (%s)", ErrorHTTP, resp.StatusCode, http.StatusText(resp.StatusCode))
|
||||||
}
|
}
|
||||||
body, err := ioutil.ReadAll(resp.Body)
|
body, err := ioutil.ReadAll(resp.Body)
|
||||||
|
|||||||
@@ -33,5 +33,5 @@ func (a IdSlice) Less(i, j int) bool {
|
|||||||
if !a[i].Gvk.Equals(a[j].Gvk) {
|
if !a[i].Gvk.Equals(a[j].Gvk) {
|
||||||
return a[i].Gvk.IsLessThan(a[j].Gvk)
|
return a[i].Gvk.IsLessThan(a[j].Gvk)
|
||||||
}
|
}
|
||||||
return a[i].String() < a[j].String()
|
return a[i].LegacySortString() < a[j].LegacySortString()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -958,6 +958,53 @@ metadata:
|
|||||||
`), strings.TrimSpace(string(yaml)))
|
`), strings.TrimSpace(string(yaml)))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestDeAnchorIntoDoc(t *testing.T) {
|
||||||
|
input := `apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: probes-test
|
||||||
|
spec:
|
||||||
|
template:
|
||||||
|
spec:
|
||||||
|
readinessProbe: &probe
|
||||||
|
periodSeconds: 5
|
||||||
|
timeoutSeconds: 3
|
||||||
|
failureThreshold: 3
|
||||||
|
httpGet:
|
||||||
|
port: http
|
||||||
|
path: /health
|
||||||
|
livenessProbe:
|
||||||
|
<<: *probe
|
||||||
|
`
|
||||||
|
rm, err := rmF.NewResMapFromBytes([]byte(input))
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.NoError(t, rm.DeAnchor())
|
||||||
|
yaml, err := rm.AsYaml()
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, strings.TrimSpace(`apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: probes-test
|
||||||
|
spec:
|
||||||
|
template:
|
||||||
|
spec:
|
||||||
|
livenessProbe:
|
||||||
|
failureThreshold: 3
|
||||||
|
httpGet:
|
||||||
|
path: /health
|
||||||
|
port: http
|
||||||
|
periodSeconds: 5
|
||||||
|
timeoutSeconds: 3
|
||||||
|
readinessProbe:
|
||||||
|
failureThreshold: 3
|
||||||
|
httpGet:
|
||||||
|
path: /health
|
||||||
|
port: http
|
||||||
|
periodSeconds: 5
|
||||||
|
timeoutSeconds: 3
|
||||||
|
`), strings.TrimSpace(string(yaml)))
|
||||||
|
}
|
||||||
|
|
||||||
// Anchor references don't cross YAML document boundaries.
|
// Anchor references don't cross YAML document boundaries.
|
||||||
func TestDeAnchorMultiDoc(t *testing.T) {
|
func TestDeAnchorMultiDoc(t *testing.T) {
|
||||||
input := `apiVersion: v1
|
input := `apiVersion: v1
|
||||||
|
|||||||
@@ -335,13 +335,7 @@ kind: List
|
|||||||
"listWithAnchorReference": {
|
"listWithAnchorReference": {
|
||||||
input: []types.PatchStrategicMerge{patchList2},
|
input: []types.PatchStrategicMerge{patchList2},
|
||||||
expectedOut: []*Resource{testDeploymentA, testDeploymentB},
|
expectedOut: []*Resource{testDeploymentA, testDeploymentB},
|
||||||
// The error using kyaml is:
|
expectedErr: false,
|
||||||
// json: unsupported type: map[interface {}]interface {}
|
|
||||||
// maybe arising from too many conversions between
|
|
||||||
// yaml, json, Resource, RNode, etc.
|
|
||||||
// These conversions go away after closing #3506
|
|
||||||
// TODO(#3271) This shouldn't have an error, but does when kyaml is used.
|
|
||||||
expectedErr: true,
|
|
||||||
},
|
},
|
||||||
"listWithNoEntries": {
|
"listWithNoEntries": {
|
||||||
input: []types.PatchStrategicMerge{patchList3},
|
input: []types.PatchStrategicMerge{patchList3},
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ type Kustomization struct {
|
|||||||
|
|
||||||
// PatchesStrategicMerge specifies the relative path to a file
|
// PatchesStrategicMerge specifies the relative path to a file
|
||||||
// containing a strategic merge patch. Format documented at
|
// containing a strategic merge patch. Format documented at
|
||||||
// https://github.com/kubernetes/community/blob/master/contributors/devel/strategic-merge-patch.md
|
// https://github.com/kubernetes/community/blob/master/contributors/devel/sig-api-machinery/strategic-merge-patch.md
|
||||||
// URLs and globs are not supported.
|
// URLs and globs are not supported.
|
||||||
PatchesStrategicMerge []PatchStrategicMerge `json:"patchesStrategicMerge,omitempty" yaml:"patchesStrategicMerge,omitempty"`
|
PatchesStrategicMerge []PatchStrategicMerge `json:"patchesStrategicMerge,omitempty" yaml:"patchesStrategicMerge,omitempty"`
|
||||||
|
|
||||||
|
|||||||
@@ -12,5 +12,5 @@ require (
|
|||||||
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
|
||||||
gopkg.in/inf.v0 v0.9.1
|
gopkg.in/inf.v0 v0.9.1
|
||||||
k8s.io/kube-openapi v0.0.0-20210421082810-95288971da7e
|
k8s.io/kube-openapi v0.0.0-20210421082810-95288971da7e
|
||||||
sigs.k8s.io/kustomize/kyaml v0.13.2
|
sigs.k8s.io/kustomize/kyaml v0.13.4
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -644,8 +644,8 @@ k8s.io/kube-openapi v0.0.0-20210421082810-95288971da7e/go.mod h1:vHXdDvt9+2spS2R
|
|||||||
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
||||||
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
|
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
|
||||||
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
|
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
|
||||||
sigs.k8s.io/kustomize/kyaml v0.13.2 h1:R3uST+eWe4sSj6STEAJWRJPM6BJc3vdFPl7rKtHacps=
|
sigs.k8s.io/kustomize/kyaml v0.13.4 h1:UP4niyzHP8yBDZTJu3OyZMCbJUfT6PIj0fJZFcn8gQw=
|
||||||
sigs.k8s.io/kustomize/kyaml v0.13.2/go.mod h1:/ya3Gk4diiQzlE4mBh7wykyLRFZNvqlbh+JnwQ9Vhrc=
|
sigs.k8s.io/kustomize/kyaml v0.13.4/go.mod h1:/ya3Gk4diiQzlE4mBh7wykyLRFZNvqlbh+JnwQ9Vhrc=
|
||||||
sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw=
|
sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw=
|
||||||
sigs.k8s.io/yaml v1.2.0 h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=
|
sigs.k8s.io/yaml v1.2.0 h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=
|
||||||
sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc=
|
sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc=
|
||||||
|
|||||||
@@ -164,7 +164,7 @@ func TestCmd_failFileContents(t *testing.T) {
|
|||||||
err := r.Command.Execute()
|
err := r.Command.Execute()
|
||||||
|
|
||||||
// expect an error
|
// expect an error
|
||||||
assert.EqualError(t, err, "yaml: line 1: did not find expected node content")
|
assert.EqualError(t, err, "MalformedYAMLError: yaml: line 1: did not find expected node content")
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestFmtSubPackages(t *testing.T) {
|
func TestFmtSubPackages(t *testing.T) {
|
||||||
|
|||||||
@@ -135,9 +135,14 @@ func (r *RunFnRunner) getContainerFunctions(c *cobra.Command, dataItems []string
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
if r.Network {
|
if r.Network {
|
||||||
|
n := &yaml.Node{
|
||||||
|
Kind: yaml.ScalarNode,
|
||||||
|
Value: "true",
|
||||||
|
Tag: yaml.NodeTagBool,
|
||||||
|
}
|
||||||
err = fn.PipeE(
|
err = fn.PipeE(
|
||||||
yaml.Lookup("container"),
|
yaml.Lookup("container"),
|
||||||
yaml.SetField("network", yaml.NewScalarRNode("true")))
|
yaml.SetField("network", yaml.NewRNode(n)))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
@@ -231,7 +236,9 @@ data: {}
|
|||||||
if len(kv) != 2 {
|
if len(kv) != 2 {
|
||||||
return nil, fmt.Errorf("args must have keys and values separated by =")
|
return nil, fmt.Errorf("args must have keys and values separated by =")
|
||||||
}
|
}
|
||||||
err := dataField.PipeE(yaml.SetField(kv[0], yaml.NewScalarRNode(kv[1])))
|
// do not set style since function should determine tag and style
|
||||||
|
err := dataField.PipeE(
|
||||||
|
yaml.FieldSetter{Name: kv[0], Value: yaml.NewScalarRNode(kv[1]), OverrideStyle: true})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,8 +6,6 @@ require (
|
|||||||
github.com/rakyll/statik v0.1.7
|
github.com/rakyll/statik v0.1.7
|
||||||
github.com/spf13/cobra v1.2.1
|
github.com/spf13/cobra v1.2.1
|
||||||
github.com/stretchr/testify v1.7.0
|
github.com/stretchr/testify v1.7.0
|
||||||
sigs.k8s.io/kustomize/api v0.10.1
|
sigs.k8s.io/kustomize/api v0.11.3
|
||||||
sigs.k8s.io/kustomize/kyaml v0.13.2
|
sigs.k8s.io/kustomize/kyaml v0.13.4
|
||||||
)
|
)
|
||||||
|
|
||||||
replace sigs.k8s.io/kustomize/api => ../../api
|
|
||||||
|
|||||||
@@ -48,6 +48,7 @@ github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kd
|
|||||||
github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o=
|
github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o=
|
||||||
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY=
|
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY=
|
||||||
github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8=
|
github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8=
|
||||||
|
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA=
|
||||||
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY=
|
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY=
|
||||||
github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=
|
github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=
|
||||||
github.com/bketelsen/crypt v0.0.4/go.mod h1:aI6NrJ0pMGgvZKL1iVgXLnfIFJtfV+bKCoqOes/6LfM=
|
github.com/bketelsen/crypt v0.0.4/go.mod h1:aI6NrJ0pMGgvZKL1iVgXLnfIFJtfV+bKCoqOes/6LfM=
|
||||||
@@ -156,6 +157,7 @@ github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm4
|
|||||||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4=
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4=
|
||||||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ=
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ=
|
||||||
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||||
|
github.com/google/uuid v1.1.2 h1:EVhdT+1Kseyi1/pUmXKaFxYsDNy9RQYkMWRH68J/W7Y=
|
||||||
github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||||
github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
|
github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
|
||||||
github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
|
github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
|
||||||
@@ -218,6 +220,7 @@ github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS4
|
|||||||
github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY=
|
github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY=
|
||||||
github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
|
github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
|
||||||
github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
|
github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
|
||||||
|
github.com/mitchellh/mapstructure v1.4.1 h1:CpVNEelQCZBooIPDn+AR3NpivK/TIKU8bDxdASFVQag=
|
||||||
github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
|
github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
|
||||||
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
|
||||||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
|
||||||
@@ -639,8 +642,10 @@ k8s.io/kube-openapi v0.0.0-20210421082810-95288971da7e/go.mod h1:vHXdDvt9+2spS2R
|
|||||||
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
||||||
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
|
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
|
||||||
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
|
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
|
||||||
sigs.k8s.io/kustomize/kyaml v0.13.2 h1:R3uST+eWe4sSj6STEAJWRJPM6BJc3vdFPl7rKtHacps=
|
sigs.k8s.io/kustomize/api v0.11.3 h1:zSfqBnm2eWKtBt1bJdeb8vdFn6RCACjkJBJXD4ewT2A=
|
||||||
sigs.k8s.io/kustomize/kyaml v0.13.2/go.mod h1:/ya3Gk4diiQzlE4mBh7wykyLRFZNvqlbh+JnwQ9Vhrc=
|
sigs.k8s.io/kustomize/api v0.11.3/go.mod h1:+pqeIrqlbShZpegTsFiJtZ6aI8awf8D+9CeO7k7iSFQ=
|
||||||
|
sigs.k8s.io/kustomize/kyaml v0.13.4 h1:UP4niyzHP8yBDZTJu3OyZMCbJUfT6PIj0fJZFcn8gQw=
|
||||||
|
sigs.k8s.io/kustomize/kyaml v0.13.4/go.mod h1:/ya3Gk4diiQzlE4mBh7wykyLRFZNvqlbh+JnwQ9Vhrc=
|
||||||
sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw=
|
sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw=
|
||||||
sigs.k8s.io/yaml v1.2.0 h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=
|
sigs.k8s.io/yaml v1.2.0 h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=
|
||||||
sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc=
|
sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc=
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
|
|
||||||
Moved to [https://kubernetes-sigs.github.io/kustomize](https://kubernetes-sigs.github.io/kustomize/faq)
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
|
|
||||||
Moved to [https://kubernetes-sigs.github.io/kustomize](https://kubernetes-sigs.github.io/kustomize/installation)
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
|
|
||||||
Moved to [https://kubernetes-sigs.github.io/kustomize](https://kubernetes-sigs.github.io/kustomize)
|
|
||||||
@@ -1,872 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/glossary/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>Glossary | Kustomize</title><meta property="og:title" content="Glossary" />
|
|
||||||
<meta property="og:description" content="Glossary of terms
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/glossary/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="Glossary">
|
|
||||||
<meta itemprop="description" content="Glossary of terms
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="Glossary"/>
|
|
||||||
<meta name="twitter:description" content="Glossary of terms
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>Glossary | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/glossary/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/glossary/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/glossary/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=Glossary" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/glossary/">Glossary</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>Glossary</h1>
|
|
||||||
<div class="lead">Glossary of terms</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/glossary/" />
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – Glossary</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/glossary/</link>
|
|
||||||
<description>Recent content in Glossary on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/glossary/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,877 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>API Reference | Kustomize</title><meta property="og:title" content="API Reference" />
|
|
||||||
<meta property="og:description" content="Reference for Kustomize client-side APIs
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="API Reference">
|
|
||||||
<meta itemprop="description" content="Reference for Kustomize client-side APIs
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="API Reference"/>
|
|
||||||
<meta name="twitter:description" content="Reference for Kustomize client-side APIs
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>API Reference | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=API%20Reference" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>API Reference</h1>
|
|
||||||
<div class="lead">Reference for Kustomize client-side APIs</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</h5>
|
|
||||||
<p>kustomization.yaml fields and API</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/glossary/">Glossary</a>
|
|
||||||
</h5>
|
|
||||||
<p>Glossary of terms</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – API Reference</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/</link>
|
|
||||||
<description>Recent content in API Reference on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/bases/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>bases | Kustomize</title><meta property="og:title" content="bases" />
|
|
||||||
<meta property="og:description" content="Add resources from a kustomization dir.
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/bases/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="bases">
|
|
||||||
<meta itemprop="description" content="Add resources from a kustomization dir.
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="bases"/>
|
|
||||||
<meta name="twitter:description" content="Add resources from a kustomization dir.
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>bases | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/bases/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/bases/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/bases/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=bases" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/bases/">bases</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>bases</h1>
|
|
||||||
<div class="lead">Add resources from a kustomization dir.</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/bases/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – bases</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/bases/</link>
|
|
||||||
<description>Recent content in bases on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/bases/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/commonannotations/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>commonAnnotations | Kustomize</title><meta property="og:title" content="commonAnnotations" />
|
|
||||||
<meta property="og:description" content="Add annotations to all resources.
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/commonannotations/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="commonAnnotations">
|
|
||||||
<meta itemprop="description" content="Add annotations to all resources.
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="commonAnnotations"/>
|
|
||||||
<meta name="twitter:description" content="Add annotations to all resources.
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>commonAnnotations | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/commonannotations/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/commonannotations/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/commonannotations/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=commonAnnotations" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/commonannotations/">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>commonAnnotations</h1>
|
|
||||||
<div class="lead">Add annotations to all resources.</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/commonannotations/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – commonAnnotations</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/commonannotations/</link>
|
|
||||||
<description>Recent content in commonAnnotations on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/commonannotations/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/commonlabels/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>commonLabels | Kustomize</title><meta property="og:title" content="commonLabels" />
|
|
||||||
<meta property="og:description" content="Add labels and selectors to add all resources.
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/commonlabels/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="commonLabels">
|
|
||||||
<meta itemprop="description" content="Add labels and selectors to add all resources.
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="commonLabels"/>
|
|
||||||
<meta name="twitter:description" content="Add labels and selectors to add all resources.
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>commonLabels | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/commonlabels/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/commonlabels/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/commonlabels/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=commonLabels" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/commonlabels/">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>commonLabels</h1>
|
|
||||||
<div class="lead">Add labels and selectors to add all resources.</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/commonlabels/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – commonLabels</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/commonlabels/</link>
|
|
||||||
<description>Recent content in commonLabels on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/commonlabels/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/components/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>components | Kustomize</title><meta property="og:title" content="components" />
|
|
||||||
<meta property="og:description" content="Compose kustomizations.
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/components/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="components">
|
|
||||||
<meta itemprop="description" content="Compose kustomizations.
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="components"/>
|
|
||||||
<meta name="twitter:description" content="Compose kustomizations.
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>components | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/components/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/components/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/components/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=components" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/components/">components</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>components</h1>
|
|
||||||
<div class="lead">Compose kustomizations.</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/components/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – components</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/components/</link>
|
|
||||||
<description>Recent content in components on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/components/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/configmapgenerator/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>configMapGenerator | Kustomize</title><meta property="og:title" content="configMapGenerator" />
|
|
||||||
<meta property="og:description" content="Generate ConfigMap resources.
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/configmapgenerator/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="configMapGenerator">
|
|
||||||
<meta itemprop="description" content="Generate ConfigMap resources.
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="configMapGenerator"/>
|
|
||||||
<meta name="twitter:description" content="Generate ConfigMap resources.
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>configMapGenerator | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/configmapgenerator/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/configmapgenerator/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/configmapgenerator/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=configMapGenerator" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/configmapgenerator/">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>configMapGenerator</h1>
|
|
||||||
<div class="lead">Generate ConfigMap resources.</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/configmapgenerator/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – configMapGenerator</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/configmapgenerator/</link>
|
|
||||||
<description>Recent content in configMapGenerator on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/configmapgenerator/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/crds/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>crds | Kustomize</title><meta property="og:title" content="crds" />
|
|
||||||
<meta property="og:description" content="Adding CRD support
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/crds/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="crds">
|
|
||||||
<meta itemprop="description" content="Adding CRD support
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="crds"/>
|
|
||||||
<meta name="twitter:description" content="Adding CRD support
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>crds | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/crds/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/crds/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/crds/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=crds" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/crds/">crds</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>crds</h1>
|
|
||||||
<div class="lead">Adding CRD support</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/crds/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – crds</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/crds/</link>
|
|
||||||
<description>Recent content in crds on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/crds/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/generatoroptions/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>generatorOptions | Kustomize</title><meta property="og:title" content="generatorOptions" />
|
|
||||||
<meta property="og:description" content="Control behavior of [ConfigMap](/kustomize/api-reference/kustomization/configmapgenerator) and [Secret](/kustomize/api-reference/kustomization/secretgenerator) generators.
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/generatoroptions/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="generatorOptions">
|
|
||||||
<meta itemprop="description" content="Control behavior of [ConfigMap](/kustomize/api-reference/kustomization/configmapgenerator) and [Secret](/kustomize/api-reference/kustomization/secretgenerator) generators.
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="generatorOptions"/>
|
|
||||||
<meta name="twitter:description" content="Control behavior of [ConfigMap](/kustomize/api-reference/kustomization/configmapgenerator) and [Secret](/kustomize/api-reference/kustomization/secretgenerator) generators.
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>generatorOptions | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/generatoroptions/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/generatoroptions/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/generatoroptions/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=generatorOptions" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/generatoroptions/">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>generatorOptions</h1>
|
|
||||||
<div class="lead">Control behavior of <a href="/kustomize/api-reference/kustomization/configmapgenerator">ConfigMap</a> and <a href="/kustomize/api-reference/kustomization/secretgenerator">Secret</a> generators.</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/generatoroptions/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – generatorOptions</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/generatoroptions/</link>
|
|
||||||
<description>Recent content in generatorOptions on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/generatoroptions/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/images/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>images | Kustomize</title><meta property="og:title" content="images" />
|
|
||||||
<meta property="og:description" content="Modify the name, tags and/or digest for images.
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/images/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="images">
|
|
||||||
<meta itemprop="description" content="Modify the name, tags and/or digest for images.
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="images"/>
|
|
||||||
<meta name="twitter:description" content="Modify the name, tags and/or digest for images.
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>images | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/images/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/images/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/images/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=images" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/images/">images</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>images</h1>
|
|
||||||
<div class="lead">Modify the name, tags and/or digest for images.</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/images/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – images</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/images/</link>
|
|
||||||
<description>Recent content in images on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/images/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,999 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>kustomization.yaml | Kustomize</title><meta property="og:title" content="kustomization.yaml" />
|
|
||||||
<meta property="og:description" content="kustomization.yaml fields and API
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="kustomization.yaml">
|
|
||||||
<meta itemprop="description" content="kustomization.yaml fields and API
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="kustomization.yaml"/>
|
|
||||||
<meta name="twitter:description" content="kustomization.yaml fields and API
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>kustomization.yaml | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=kustomization.yaml" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>kustomization.yaml</h1>
|
|
||||||
<div class="lead">kustomization.yaml fields and API</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/">bases</a>
|
|
||||||
</h5>
|
|
||||||
<p>Add resources from a kustomization dir.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/">commonAnnotations</a>
|
|
||||||
</h5>
|
|
||||||
<p>Add annotations to all resources.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/">commonLabels</a>
|
|
||||||
</h5>
|
|
||||||
<p>Add labels and selectors to add all resources.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/">components</a>
|
|
||||||
</h5>
|
|
||||||
<p>Compose kustomizations.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/">configMapGenerator</a>
|
|
||||||
</h5>
|
|
||||||
<p>Generate ConfigMap resources.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/">crds</a>
|
|
||||||
</h5>
|
|
||||||
<p>Adding CRD support</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/">generatorOptions</a>
|
|
||||||
</h5>
|
|
||||||
<p>Control behavior of <a href="/kustomize/api-reference/kustomization/configmapgenerator">ConfigMap</a> and <a href="/kustomize/api-reference/kustomization/secretgenerator">Secret</a> generators.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/">images</a>
|
|
||||||
</h5>
|
|
||||||
<p>Modify the name, tags and/or digest for images.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/">namePrefix</a>
|
|
||||||
</h5>
|
|
||||||
<p>Prepends the value to the names of all resources and references.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/">namespace</a>
|
|
||||||
</h5>
|
|
||||||
<p>Adds namespace to all resources.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/">nameSuffix</a>
|
|
||||||
</h5>
|
|
||||||
<p>Appends the value to the names of all resources and references.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/">patches</a>
|
|
||||||
</h5>
|
|
||||||
<p>Patch resources</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/">patchesJson6902</a>
|
|
||||||
</h5>
|
|
||||||
<p>Patch resources using the <a href="https://tools.ietf.org/html/rfc6902">json 6902 standard</a></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/">patchesStrategicMerge</a>
|
|
||||||
</h5>
|
|
||||||
<p>Patch resources using the strategic merge patch standard.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/">replicas</a>
|
|
||||||
</h5>
|
|
||||||
<p>Change the number of replicas for a resource.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/">resources</a>
|
|
||||||
</h5>
|
|
||||||
<p>Resources to include.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/">secretGenerator</a>
|
|
||||||
</h5>
|
|
||||||
<p>Generate Secret resources.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="entry">
|
|
||||||
<h5>
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/">vars</a>
|
|
||||||
</h5>
|
|
||||||
<p>Substitute name references.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,287 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – kustomization.yaml</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/</link>
|
|
||||||
<description>Recent content in kustomization.yaml on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: bases</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/bases/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/bases/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/bases/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: commonAnnotations</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/commonannotations/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/commonannotations/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/commonannotations/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: commonLabels</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/commonlabels/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/commonlabels/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/commonlabels/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: components</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/components/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/components/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/components/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: configMapGenerator</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/configmapgenerator/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/configmapgenerator/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/configmapgenerator/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: crds</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/crds/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/crds/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/crds/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: generatorOptions</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/generatoroptions/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/generatoroptions/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/generatoroptions/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: images</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/images/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/images/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/images/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: namePrefix</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/nameprefix/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/nameprefix/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/nameprefix/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: namespace</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/namespace/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/namespace/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/namespace/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: nameSuffix</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/namesuffix/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/namesuffix/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/namesuffix/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: patches</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patches/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patches/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/patches/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: patchesJson6902</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patchesjson6902/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patchesjson6902/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: patchesStrategicMerge</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patchesstrategicmerge/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patchesstrategicmerge/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: replicas</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/replicas/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/replicas/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/replicas/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: resources</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/resources/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/resources/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/resources/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: secretGenerator</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/secretegenerator/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/secretegenerator/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/secretegenerator/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Api-Reference: vars</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/vars/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/vars/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/vars/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/nameprefix/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>namePrefix | Kustomize</title><meta property="og:title" content="namePrefix" />
|
|
||||||
<meta property="og:description" content="Prepends the value to the names of all resources and references.
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/nameprefix/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="namePrefix">
|
|
||||||
<meta itemprop="description" content="Prepends the value to the names of all resources and references.
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="namePrefix"/>
|
|
||||||
<meta name="twitter:description" content="Prepends the value to the names of all resources and references.
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>namePrefix | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/nameprefix/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/nameprefix/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/nameprefix/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=namePrefix" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/nameprefix/">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>namePrefix</h1>
|
|
||||||
<div class="lead">Prepends the value to the names of all resources and references.</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/nameprefix/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – namePrefix</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/nameprefix/</link>
|
|
||||||
<description>Recent content in namePrefix on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/nameprefix/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/namespace/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>namespace | Kustomize</title><meta property="og:title" content="namespace" />
|
|
||||||
<meta property="og:description" content="Adds namespace to all resources.
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/namespace/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="namespace">
|
|
||||||
<meta itemprop="description" content="Adds namespace to all resources.
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="namespace"/>
|
|
||||||
<meta name="twitter:description" content="Adds namespace to all resources.
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>namespace | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/namespace/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/namespace/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/namespace/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=namespace" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/namespace/">namespace</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>namespace</h1>
|
|
||||||
<div class="lead">Adds namespace to all resources.</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/namespace/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – namespace</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/namespace/</link>
|
|
||||||
<description>Recent content in namespace on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/namespace/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/namesuffix/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>nameSuffix | Kustomize</title><meta property="og:title" content="nameSuffix" />
|
|
||||||
<meta property="og:description" content="Appends the value to the names of all resources and references.
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/namesuffix/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="nameSuffix">
|
|
||||||
<meta itemprop="description" content="Appends the value to the names of all resources and references.
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="nameSuffix"/>
|
|
||||||
<meta name="twitter:description" content="Appends the value to the names of all resources and references.
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>nameSuffix | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/namesuffix/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/namesuffix/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/namesuffix/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=nameSuffix" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/namesuffix/">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>nameSuffix</h1>
|
|
||||||
<div class="lead">Appends the value to the names of all resources and references.</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/namesuffix/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – nameSuffix</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/namesuffix/</link>
|
|
||||||
<description>Recent content in nameSuffix on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/namesuffix/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patches/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>patches | Kustomize</title><meta property="og:title" content="patches" />
|
|
||||||
<meta property="og:description" content="Patch resources
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patches/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="patches">
|
|
||||||
<meta itemprop="description" content="Patch resources
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="patches"/>
|
|
||||||
<meta name="twitter:description" content="Patch resources
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>patches | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/patches/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/patches/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/patches/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=patches" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patches/">patches</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>patches</h1>
|
|
||||||
<div class="lead">Patch resources</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/patches/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – patches</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patches/</link>
|
|
||||||
<description>Recent content in patches on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patches/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patchesjson6902/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>patchesJson6902 | Kustomize</title><meta property="og:title" content="patchesJson6902" />
|
|
||||||
<meta property="og:description" content="Patch resources using the [json 6902 standard](https://tools.ietf.org/html/rfc6902)
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patchesjson6902/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="patchesJson6902">
|
|
||||||
<meta itemprop="description" content="Patch resources using the [json 6902 standard](https://tools.ietf.org/html/rfc6902)
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="patchesJson6902"/>
|
|
||||||
<meta name="twitter:description" content="Patch resources using the [json 6902 standard](https://tools.ietf.org/html/rfc6902)
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>patchesJson6902 | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/patchesjson6902/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/patchesjson6902/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/patchesjson6902/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=patchesJson6902" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patchesjson6902/">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>patchesJson6902</h1>
|
|
||||||
<div class="lead">Patch resources using the <a href="https://tools.ietf.org/html/rfc6902">json 6902 standard</a></div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/patchesjson6902/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – patchesJson6902</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patchesjson6902/</link>
|
|
||||||
<description>Recent content in patchesJson6902 on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patchesjson6902/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patchesstrategicmerge/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>patchesStrategicMerge | Kustomize</title><meta property="og:title" content="patchesStrategicMerge" />
|
|
||||||
<meta property="og:description" content="Patch resources using the strategic merge patch standard.
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patchesstrategicmerge/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="patchesStrategicMerge">
|
|
||||||
<meta itemprop="description" content="Patch resources using the strategic merge patch standard.
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="patchesStrategicMerge"/>
|
|
||||||
<meta name="twitter:description" content="Patch resources using the strategic merge patch standard.
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>patchesStrategicMerge | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/patchesstrategicmerge/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/patchesstrategicmerge/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/patchesStrategicMerge/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=patchesStrategicMerge" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patchesstrategicmerge/">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>patchesStrategicMerge</h1>
|
|
||||||
<div class="lead">Patch resources using the strategic merge patch standard.</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/patchesstrategicmerge/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – patchesStrategicMerge</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patchesstrategicmerge/</link>
|
|
||||||
<description>Recent content in patchesStrategicMerge on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/patchesstrategicmerge/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/replicas/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>replicas | Kustomize</title><meta property="og:title" content="replicas" />
|
|
||||||
<meta property="og:description" content="Change the number of replicas for a resource.
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/replicas/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="replicas">
|
|
||||||
<meta itemprop="description" content="Change the number of replicas for a resource.
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="replicas"/>
|
|
||||||
<meta name="twitter:description" content="Change the number of replicas for a resource.
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>replicas | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/replicas/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/replicas/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/replicas/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=replicas" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/replicas/">replicas</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>replicas</h1>
|
|
||||||
<div class="lead">Change the number of replicas for a resource.</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/replicas/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – replicas</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/replicas/</link>
|
|
||||||
<description>Recent content in replicas on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/replicas/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/resources/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>resources | Kustomize</title><meta property="og:title" content="resources" />
|
|
||||||
<meta property="og:description" content="Resources to include.
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/resources/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="resources">
|
|
||||||
<meta itemprop="description" content="Resources to include.
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="resources"/>
|
|
||||||
<meta name="twitter:description" content="Resources to include.
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>resources | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/resources/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/resources/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/resources/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=resources" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/resources/">resources</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>resources</h1>
|
|
||||||
<div class="lead">Resources to include.</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/resources/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – resources</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/resources/</link>
|
|
||||||
<description>Recent content in resources on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/resources/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/secretegenerator/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>secretGenerator | Kustomize</title><meta property="og:title" content="secretGenerator" />
|
|
||||||
<meta property="og:description" content="Generate Secret resources.
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/secretegenerator/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="secretGenerator">
|
|
||||||
<meta itemprop="description" content="Generate Secret resources.
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="secretGenerator"/>
|
|
||||||
<meta name="twitter:description" content="Generate Secret resources.
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>secretGenerator | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/secretegenerator/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/secretegenerator/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/secretegenerator/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=secretGenerator" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/secretegenerator/">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>secretGenerator</h1>
|
|
||||||
<div class="lead">Generate Secret resources.</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/secretegenerator/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – secretGenerator</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/secretegenerator/</link>
|
|
||||||
<description>Recent content in secretGenerator on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/secretegenerator/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,883 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/vars/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>vars | Kustomize</title><meta property="og:title" content="vars" />
|
|
||||||
<meta property="og:description" content="Substitute name references.
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/vars/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="vars">
|
|
||||||
<meta itemprop="description" content="Substitute name references.
|
|
||||||
">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="vars"/>
|
|
||||||
<meta name="twitter:description" content="Substitute name references.
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>vars | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/api-reference/" ><span class="active">API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/blog/" ><span>Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/vars/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/api-reference/kustomization/vars/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">API Reference</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-reference">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomization">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/bases/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">bases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationbases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonannotations/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonAnnotations</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonannotations">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/commonlabels/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">commonLabels</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcommonlabels">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/components/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">components</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcomponents">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/configmapgenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">configMapGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationconfigmapgenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/crds/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">crds</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationcrds">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/generatoroptions/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">generatorOptions</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationgeneratoroptions">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/images/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">images</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationimages">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/nameprefix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namePrefix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnameprefix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namespace/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">namespace</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamespace">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/namesuffix/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">nameSuffix</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationnamesuffix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patches/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patches</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatches">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesjson6902/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesJson6902</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesjson6902">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/patchesstrategicmerge/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">patchesStrategicMerge</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationpatchesstrategicmerge">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/replicas/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">replicas</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationreplicas">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/resources/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">resources</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationresources">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/secretegenerator/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">secretGenerator</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referencekustomizationsecretegenerator">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/kustomization/vars/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">vars</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeapi-referencekustomizationvars">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/api-reference/glossary/" class="align-left pl-0 pr-2 collapsed td-sidebar-link td-sidebar-link__section">Glossary</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse " id="kustomizeapi-referenceglossary">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/api-reference/kustomization/vars/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=vars" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
|
|
||||||
<ol class="breadcrumb spb-1">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/">API Reference</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item" >
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/">kustomization.yaml</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/vars/">vars</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
</nav >
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>vars</h1>
|
|
||||||
<div class="lead">Substitute name references.</div>
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://kubectl.docs.kubernetes.io/references/kustomize/vars/" />
|
|
||||||
<p>Moved to <a href="https://github.com/kubernetes-sigs/cli-experimental">https://github.com/kubernetes-sigs/cli-experimental</a></p>
|
|
||||||
|
|
||||||
<div class="section-index">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr class="panel-line">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="text-muted mt-5 pt-3 border-top">Last modified November 11, 2020: <a href="https://github.com/kubernetes-sigs/kustomize/commit/71b763888cad614abb44b3086e291fe72d601080">Remove duplicate kustomize docs content (71b76388)</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – vars</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/vars/</link>
|
|
||||||
<description>Recent content in vars on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/api-reference/kustomization/vars/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
# kustomization authoring
|
|
||||||
|
|
||||||
kustomize provides sub-commands for managing the contents of a kustomization file from the command line.
|
|
||||||
|
|
||||||
## kustomize create
|
|
||||||
|
|
||||||
The `kustomize create` command will create a new kustomization in the current directory.
|
|
||||||
|
|
||||||
When run without any flags the command will create an empty `kustomization.yaml` file that can then be updated manually or with the `kustomize edit` sub-commands.
|
|
||||||
|
|
||||||
```
|
|
||||||
kustomize create --namespace=myapp --resources=deployment.yaml,service.yaml --label=app=myapp
|
|
||||||
```
|
|
||||||
|
|
||||||
### Detecting resources
|
|
||||||
|
|
||||||
> NOTE: Resource detection will not follow symlinks.
|
|
||||||
|
|
||||||
Flags:
|
|
||||||
|
|
||||||
--annotation string Add one or more common annotations.
|
|
||||||
--autodetect Search for kubernetes resources in the current directory to be added to the kustomization file.
|
|
||||||
--help, -h help for create
|
|
||||||
--label string Add one or more common labels.
|
|
||||||
--nameprefix string Sets the value of the namePrefix field in the kustomization file.
|
|
||||||
--namespace string Set the value of the namespace field in the customization file.
|
|
||||||
--namesuffix string Sets the value of the nameSuffix field in the kustomization file.
|
|
||||||
--recursive Enable recursive directory searching for resource auto-detection.
|
|
||||||
--resources string Name of a file containing a file to add to the kustomization file.
|
|
||||||
|
|
||||||
## kustomize edit
|
|
||||||
|
|
||||||
With an existing kustomization file the `kustomize edit` command
|
|
||||||
|
|
||||||
* add
|
|
||||||
* set
|
|
||||||
* remove
|
|
||||||
* fix
|
|
||||||
@@ -1,436 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>v1.0.1 | Kustomize</title><meta property="og:title" content="v1.0.1" />
|
|
||||||
<meta property="og:description" content="Kustomize v1.0.1
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/blog/2018/05/21/v1.0.1/" />
|
|
||||||
<meta property="article:published_time" content="2018-05-21T00:00:00+00:00" />
|
|
||||||
<meta property="article:modified_time" content="2020-07-16T12:57:18-07:00" /><meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="v1.0.1">
|
|
||||||
<meta itemprop="description" content="Kustomize v1.0.1
|
|
||||||
">
|
|
||||||
<meta itemprop="datePublished" content="2018-05-21T00:00:00+00:00" />
|
|
||||||
<meta itemprop="dateModified" content="2020-07-16T12:57:18-07:00" />
|
|
||||||
<meta itemprop="wordCount" content="45">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta itemprop="keywords" content="" />
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="v1.0.1"/>
|
|
||||||
<meta name="twitter:description" content="Kustomize v1.0.1
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>v1.0.1 | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-page td-blog">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/api-reference/" ><span>API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/blog/" ><span class="active">Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2018/05/21/v1.0.1/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2018/05/21/v1.0.1/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">Blog</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblog">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/releases/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">Releases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblogreleases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20191024v330" href="/kustomize/blog/2019/10/24/v3.3.0/">v3.3.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190926v321" href="/kustomize/blog/2019/09/26/v3.2.1/">v3.2.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190917v320" href="/kustomize/blog/2019/09/17/v3.2.0/">v3.2.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190726v310" href="/kustomize/blog/2019/07/26/v3.1.0/">v3.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190703v300" href="/kustomize/blog/2019/07/03/v3.0.0/">v3.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190618v210" href="/kustomize/blog/2019/06/18/v2.1.0/">v2.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190205v200" href="/kustomize/blog/2019/02/05/v2.0.0/">v2.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page active" id="m-kustomizeblog20180521v101" href="/kustomize/blog/2018/05/21/v1.0.1/">v1.0.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/blog/releases/v1.0.1.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=v1.0.1" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5 pr-md-4" role="main">
|
|
||||||
<a class="btn btn-lg -bg-orange td-rss-button d-none d-lg-block" href="https://kubernetes-sigs.github.io/kustomize/blog/releases/index.xml" target="_blank">
|
|
||||||
RSS <i class="fa fa-rss ml-2 "></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>v1.0.1</h1>
|
|
||||||
<div class="lead">Kustomize v1.0.1</div>
|
|
||||||
<div class="td-byline mb-4">
|
|
||||||
|
|
||||||
<time datetime="2018-05-21" class="text-muted">Monday, May 21, 2018</time>
|
|
||||||
</div>
|
|
||||||
<p>Initial release after move from github.com/kubernetes/kubectl to github.com/kubernetes-sigs/kustomize.</p>
|
|
||||||
<p>History</p>
|
|
||||||
<ul>
|
|
||||||
<li>May 2018: v1.0 after move to github.com/kubernetes-sigs/kubectl
|
|
||||||
from github.com/kubernetes/kubectl.
|
|
||||||
Has kustomization file, bases, overlays, basic transforms.</li>
|
|
||||||
<li>Apr 2018: s/kinflate/kustomize/, s/manifest/kustomization/</li>
|
|
||||||
<li>Oct 2017: s/kexpand/kinflate/</li>
|
|
||||||
<li>Sep 2017: kexpand <a href="https://github.com/kubernetes/kubectl/pull/65">starts</a>
|
|
||||||
in github.com/kubernetes/kubectl</li>
|
|
||||||
<li>Aug 2017: <a href="https://docs.google.com/document/d/1cLPGweVEYrVqQvBLJg6sxV-TrE5Rm2MNOBA_cxZP2WU">DAM</a> authored by Brian Grant</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-unstyled d-flex justify-content-between align-items-center mb-0 pt-5">
|
|
||||||
<li>
|
|
||||||
<a class="btn btn-primary disabled"><span class="mr-1">←</span> Previous</a>
|
|
||||||
</li>
|
|
||||||
<a href="/kustomize/blog/2019/02/05/v2.0.0/" class="btn btn-primary ">Next <span class="ml-1">→</span></a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,539 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>v2.0.0 | Kustomize</title><meta property="og:title" content="v2.0.0" />
|
|
||||||
<meta property="og:description" content="Kustomize v2.0.0
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/blog/2019/02/05/v2.0.0/" />
|
|
||||||
<meta property="article:published_time" content="2019-02-05T00:00:00+00:00" />
|
|
||||||
<meta property="article:modified_time" content="2020-06-07T21:07:46-07:00" /><meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="v2.0.0">
|
|
||||||
<meta itemprop="description" content="Kustomize v2.0.0
|
|
||||||
">
|
|
||||||
<meta itemprop="datePublished" content="2019-02-05T00:00:00+00:00" />
|
|
||||||
<meta itemprop="dateModified" content="2020-06-07T21:07:46-07:00" />
|
|
||||||
<meta itemprop="wordCount" content="458">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta itemprop="keywords" content="" />
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="v2.0.0"/>
|
|
||||||
<meta name="twitter:description" content="Kustomize v2.0.0
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>v2.0.0 | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-page td-blog">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/api-reference/" ><span>API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/blog/" ><span class="active">Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2019/02/05/v2.0.0/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2019/02/05/v2.0.0/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">Blog</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblog">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/releases/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">Releases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblogreleases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20191024v330" href="/kustomize/blog/2019/10/24/v3.3.0/">v3.3.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190926v321" href="/kustomize/blog/2019/09/26/v3.2.1/">v3.2.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190917v320" href="/kustomize/blog/2019/09/17/v3.2.0/">v3.2.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190726v310" href="/kustomize/blog/2019/07/26/v3.1.0/">v3.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190703v300" href="/kustomize/blog/2019/07/03/v3.0.0/">v3.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190618v210" href="/kustomize/blog/2019/06/18/v2.1.0/">v2.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page active" id="m-kustomizeblog20190205v200" href="/kustomize/blog/2019/02/05/v2.0.0/">v2.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20180521v101" href="/kustomize/blog/2018/05/21/v1.0.1/">v1.0.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/blog/releases/v2.0.0.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=v2.0.0" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#backward-incompatible-changes">Backward Incompatible Changes</a>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#kustomization-path-constraints">Kustomization Path Constraints</a></li>
|
|
||||||
<li><a href="#kustomization-field-removals">Kustomization Field Removals</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a href="#compatible-changes-new-features">Compatible Changes (New Features)</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5 pr-md-4" role="main">
|
|
||||||
<a class="btn btn-lg -bg-orange td-rss-button d-none d-lg-block" href="https://kubernetes-sigs.github.io/kustomize/blog/releases/index.xml" target="_blank">
|
|
||||||
RSS <i class="fa fa-rss ml-2 "></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>v2.0.0</h1>
|
|
||||||
<div class="lead">Kustomize v2.0.0</div>
|
|
||||||
<div class="td-byline mb-4">
|
|
||||||
|
|
||||||
<time datetime="2019-02-05" class="text-muted">Tuesday, February 05, 2019</time>
|
|
||||||
</div>
|
|
||||||
<p>After security review, a field used in secret
|
|
||||||
generation (see below) was removed from the
|
|
||||||
definition of a kustomization file with no
|
|
||||||
mechanism to convert it to a new form. Also, the
|
|
||||||
set of files accessible from a kustomization file
|
|
||||||
has been further constrained.</p>
|
|
||||||
<p>Per the <a href="/kustomize/faq/versioningpolicy">versioning policy</a>,
|
|
||||||
backward incompatible changes trigger an increment
|
|
||||||
of the major version number, hence we go
|
|
||||||
from 1.0.11 to 2.0.0. We’re taking this major
|
|
||||||
version increment opportunity to remove some
|
|
||||||
already deprecated fields, and the code paths
|
|
||||||
associated with them.</p>
|
|
||||||
<h2 id="backward-incompatible-changes">Backward Incompatible Changes</h2>
|
|
||||||
<h3 id="kustomization-path-constraints">Kustomization Path Constraints</h3>
|
|
||||||
<p>A kustomization file can specify paths to other
|
|
||||||
files, including resources, patches, configmap
|
|
||||||
generation data, secret generation data and
|
|
||||||
bases. In the case of a base, the path can be a
|
|
||||||
git URL instead.</p>
|
|
||||||
<p>In 1.x, these paths had to be relative to the
|
|
||||||
current kustomization directory (the location of
|
|
||||||
the kustomization file used in the <code>build</code>
|
|
||||||
command).</p>
|
|
||||||
<p>In 2.0, bases can continue to specify, via
|
|
||||||
relative paths, kustomizations outside the current
|
|
||||||
kustomization directory. But non-base paths are
|
|
||||||
constrained to terminate in or below the current
|
|
||||||
kustomization directory. Further, bases specified
|
|
||||||
via a git URL may not reference files outside of
|
|
||||||
the directory used to clone the repository.</p>
|
|
||||||
<h3 id="kustomization-field-removals">Kustomization Field Removals</h3>
|
|
||||||
<h4 id="patches">patches</h4>
|
|
||||||
<p><code>patches</code> was deprecated and replaced by
|
|
||||||
<code>patchesStrategicMerge</code> when <code>patchesJson6902</code> was
|
|
||||||
introduced. In Kustomize 2.0.0, <code>patches</code> is
|
|
||||||
removed. Please use <code>patchesStrategicMerge</code>
|
|
||||||
instead.</p>
|
|
||||||
<h4 id="imagetags">imageTags</h4>
|
|
||||||
<p><code>imageTags</code> is replaced by <code>images</code> since <code>images</code>
|
|
||||||
can provide more features to change image names,
|
|
||||||
registries, tags and digests.</p>
|
|
||||||
<h4 id="secretgeneratorcommands">secretGenerator/commands</h4>
|
|
||||||
<p><code>commands</code> is removed from SecretGenerator due to
|
|
||||||
a <a href="https://docs.google.com/document/d/1FYgLVdq-siB_Cef9yuQBmit0PbrE8lsyTBdGI2eA2y8/edit">security concern</a>. One can use <code>files</code> or
|
|
||||||
<code>literals</code>, similar to ConfigMapGenerator, to
|
|
||||||
generate a secret.</p>
|
|
||||||
<pre><code>secretGenerator:
|
|
||||||
- name: app-tls
|
|
||||||
files:
|
|
||||||
- secret/tls.cert
|
|
||||||
- secret/tls.key
|
|
||||||
type: "kubernetes.io/tls"
|
|
||||||
</code></pre><h2 id="compatible-changes-new-features">Compatible Changes (New Features)</h2>
|
|
||||||
<p>As this release is triggered by a security change,
|
|
||||||
there are no major new features to announce. A few
|
|
||||||
things that are worth mentioning in this release
|
|
||||||
are:</p>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<p>More than <em>40</em> issues closed since 1.0.11
|
|
||||||
release (including many extensions to
|
|
||||||
transformation rules).</p>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<p>Users can run <code>kustomize edit fix</code> to migrate a
|
|
||||||
kustomization file working with previous
|
|
||||||
versions to one working with 2.0.0. For example,
|
|
||||||
a kustomization.yaml with following content</p>
|
|
||||||
<pre><code>patches:
|
|
||||||
- deployment-patch.yaml
|
|
||||||
imageTags:
|
|
||||||
- name: postgres
|
|
||||||
newTag: v1
|
|
||||||
</code></pre><p>will be converted to</p>
|
|
||||||
<pre><code>apiVersion: kustomize.config.k8s.io/v1beta1
|
|
||||||
kind: Kustomization
|
|
||||||
patchesStrategicMerge:
|
|
||||||
- deployment-patch.yaml
|
|
||||||
images:
|
|
||||||
- name: postgres
|
|
||||||
newTag: v1
|
|
||||||
</code></pre></li>
|
|
||||||
<li>
|
|
||||||
<p>Kustomization filename</p>
|
|
||||||
<p>In previous versions, the name of a
|
|
||||||
kustomization file had to be
|
|
||||||
<code>kustomization.yaml</code>.
|
|
||||||
Kustomize allows <code>kustomization.yaml</code>,
|
|
||||||
<code>kustomization.yml</code> and
|
|
||||||
<code>Kustomization</code>. In a directory, only one of
|
|
||||||
those filenames is allowed. If there are more
|
|
||||||
than one found, Kustomize will exit with an
|
|
||||||
error. Please select the best filename for your
|
|
||||||
use cases.</p>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<p>Cancelled plans to deprecate applying prefix/suffix to namespace.
|
|
||||||
The deprecation warning</p>
|
|
||||||
<pre><code>Adding nameprefix and namesuffix to Namespace resource will be deprecated in next release.
|
|
||||||
</code></pre><p>was removed.</p>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-unstyled d-flex justify-content-between align-items-center mb-0 pt-5">
|
|
||||||
<li>
|
|
||||||
<a href="/kustomize/blog/2018/05/21/v1.0.1/" class="btn btn-primary "><span class="mr-1">←</span> Previous</a>
|
|
||||||
</li>
|
|
||||||
<a href="/kustomize/blog/2019/06/18/v2.1.0/" class="btn btn-primary ">Next <span class="ml-1">→</span></a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,608 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>v2.1.0 | Kustomize</title><meta property="og:title" content="v2.1.0" />
|
|
||||||
<meta property="og:description" content="Kustomize v2.1.0
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/blog/2019/06/18/v2.1.0/" />
|
|
||||||
<meta property="article:published_time" content="2019-06-18T00:00:00+00:00" />
|
|
||||||
<meta property="article:modified_time" content="2020-07-16T12:57:18-07:00" /><meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="v2.1.0">
|
|
||||||
<meta itemprop="description" content="Kustomize v2.1.0
|
|
||||||
">
|
|
||||||
<meta itemprop="datePublished" content="2019-06-18T00:00:00+00:00" />
|
|
||||||
<meta itemprop="dateModified" content="2020-07-16T12:57:18-07:00" />
|
|
||||||
<meta itemprop="wordCount" content="920">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta itemprop="keywords" content="" />
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="v2.1.0"/>
|
|
||||||
<meta name="twitter:description" content="Kustomize v2.1.0
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>v2.1.0 | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-page td-blog">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/api-reference/" ><span>API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/blog/" ><span class="active">Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2019/06/18/v2.1.0/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2019/06/18/v2.1.0/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">Blog</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblog">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/releases/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">Releases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblogreleases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20191024v330" href="/kustomize/blog/2019/10/24/v3.3.0/">v3.3.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190926v321" href="/kustomize/blog/2019/09/26/v3.2.1/">v3.2.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190917v320" href="/kustomize/blog/2019/09/17/v3.2.0/">v3.2.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190726v310" href="/kustomize/blog/2019/07/26/v3.1.0/">v3.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190703v300" href="/kustomize/blog/2019/07/03/v3.0.0/">v3.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page active" id="m-kustomizeblog20190618v210" href="/kustomize/blog/2019/06/18/v2.1.0/">v2.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190205v200" href="/kustomize/blog/2019/02/05/v2.0.0/">v2.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20180521v101" href="/kustomize/blog/2018/05/21/v1.0.1/">v1.0.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/blog/releases/v2.1.0.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=v2.1.0" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#go-modules">Go modules</a></li>
|
|
||||||
<li><a href="#resource-ordering">Resource ordering</a></li>
|
|
||||||
<li><a href="#generator-and-transformer-plugins">Generator and transformer plugins</a></li>
|
|
||||||
<li><a href="#remove-load-restrictions">Remove load restrictions</a></li>
|
|
||||||
<li><a href="#inventory-generation-for-pruning">Inventory generation for pruning</a></li>
|
|
||||||
<li><a href="#field-changes--deprecations">Field changes / deprecations</a>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#resources-expanded-bases-deprecated"><code>resources</code> expanded, <code>bases</code> deprecated</a></li>
|
|
||||||
<li><a href="#replicas-field"><code>replicas</code> field</a></li>
|
|
||||||
<li><a href="#envs-field"><code>envs</code> field</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5 pr-md-4" role="main">
|
|
||||||
<a class="btn btn-lg -bg-orange td-rss-button d-none d-lg-block" href="https://kubernetes-sigs.github.io/kustomize/blog/releases/index.xml" target="_blank">
|
|
||||||
RSS <i class="fa fa-rss ml-2 "></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>v2.1.0</h1>
|
|
||||||
<div class="lead">Kustomize v2.1.0</div>
|
|
||||||
<div class="td-byline mb-4">
|
|
||||||
|
|
||||||
<time datetime="2019-06-18" class="text-muted">Tuesday, June 18, 2019</time>
|
|
||||||
</div>
|
|
||||||
<p>Go modules, resource ordering respected, generator and transformer plugins, eased
|
|
||||||
loading restrictions, the notion of inventory, eased replica count modification.
|
|
||||||
About ~90 issues closed since <a href="https://github.com/kubernetes-sigs/kustomize/releases/tag/v1.0.9releases/tag/v2.0.3">v2.0.3</a> in ~400 commits.</p>
|
|
||||||
<p>Download <a href="https://github.com/kubernetes-sigs/kustomize/releases/tag/v1.0.9releases/tag/v2.1.0">here</a>.</p>
|
|
||||||
<h2 id="go-modules">Go modules</h2>
|
|
||||||
<p><img src="/kustomize/images/goModules.png" alt="gopher with boxes"></p>
|
|
||||||
<p>Kustomize now defines its dependencies in a top
|
|
||||||
level <code>go.mod</code> file. This is the first step
|
|
||||||
towards a package structure intentially exported
|
|
||||||
as one or more <a href="https://github.com/golang/go/wiki/Modules">Go modules</a> for use in other
|
|
||||||
programs (kubectl, kubebuilder, etc.) and in
|
|
||||||
kustomize plugins (see below).</p>
|
|
||||||
<h2 id="resource-ordering">Resource ordering</h2>
|
|
||||||
<p><img src="/kustomize/images/sorted.png" alt="sort order retained"></p>
|
|
||||||
<p>Kustomize now retains the depth-first order of
|
|
||||||
resources as read, a frequently requested
|
|
||||||
feature.</p>
|
|
||||||
<p>This means resource order can be controlled
|
|
||||||
by editting kustomization files. This is
|
|
||||||
also vital to applying user-defined
|
|
||||||
transformations (plugins) in a particular
|
|
||||||
order.</p>
|
|
||||||
<p>Nothing needs to be done to activate this;
|
|
||||||
it happens automatically.</p>
|
|
||||||
<p>The <code>build</code> command now accepts a <code>--reorder</code>
|
|
||||||
flag with values <code>legacy</code> and <code>none</code>,
|
|
||||||
with a default value of <code>legacy</code>.</p>
|
|
||||||
<p><code>legacy</code> means apply an ordering based on
|
|
||||||
GVK, that currently emits <code>Namespace</code> objects
|
|
||||||
first, and <code>ValidatingWebhookConfiguration</code>
|
|
||||||
objects last. This means that despite
|
|
||||||
automatic retention of load order, your
|
|
||||||
<code>build</code> output won’t change by default.</p>
|
|
||||||
<p><code>none</code> means <em>don’t</em> reorder the resources before
|
|
||||||
output. Specify this to see output order
|
|
||||||
respect input order.</p>
|
|
||||||
<h2 id="generator-and-transformer-plugins">Generator and transformer plugins</h2>
|
|
||||||
<p><img src="/kustomize/images/plugins.png" alt="kid putting knife in electrical outlet"></p>
|
|
||||||
<p>Since the beginning (as <code>kinflate</code> back in Sep
|
|
||||||
2017), kustomize has read or generated resources,
|
|
||||||
applied a series of pipelined transformation to
|
|
||||||
them, and emitted the result to <code>stdout</code>.</p>
|
|
||||||
<p>At that time, the only way to change the behavior
|
|
||||||
of a generator (e.g. a secret generator), or
|
|
||||||
change the behavior of a transformer (e.g. a name
|
|
||||||
changer, or json patcher), was to modify source
|
|
||||||
code and put out a release.</p>
|
|
||||||
<p><a href="https://github.com/kubernetes-sigs/kustomize/releases/tag/v1.0.9">v1.0.9</a> introduced <a href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples/generatorOptions.md">generator options</a> as a means
|
|
||||||
to change the behavior of the only two generators
|
|
||||||
available at the time - Secret and ConfigMap
|
|
||||||
generators. It also introduced
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples/transformerconfigs">transformer configs</a> as a way to fine tune the
|
|
||||||
targets of transformations (e.g. to which fields
|
|
||||||
<em>selectors</em> should be added). Most of the feature
|
|
||||||
requests for kustomize revolve around changing the
|
|
||||||
behavior of the builtin generators and
|
|
||||||
transformers.</p>
|
|
||||||
<p><a href="https://github.com/kubernetes-sigs/kustomize/releases/tag/v1.0.9releases/tag/v2.1.0">v2.1.0</a> adds an <em>alpha</em> plugin framework, that
|
|
||||||
encourages users to write their own generators or
|
|
||||||
transformers, <em>declaring them as kubernetes
|
|
||||||
objects just like everything else</em>, and apply them
|
|
||||||
as part of the <code>kustomize build</code> process.</p>
|
|
||||||
<p>To inform the API exposed to plugins, and to
|
|
||||||
confirm that the plugin framework can offer plugin
|
|
||||||
authors the same capabilities as builtin
|
|
||||||
operations, all the builtin generators and
|
|
||||||
tranformers have been converted to plugin form
|
|
||||||
(with one exceptions awaiting Go module
|
|
||||||
refinements). This means that adding, say, a
|
|
||||||
<code>secretGenerator</code> or <code>commonAnnotations</code> directive
|
|
||||||
to your kustomization will (in <a href="https://github.com/kubernetes-sigs/kustomize/releases/tag/v1.0.9releases/tag/v2.1.0">v2.1.0</a>) trigger
|
|
||||||
execution of
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/tree/master/plugin/builtin">code committed as a plugin</a>.</p>
|
|
||||||
<p>For more information, see the
|
|
||||||
<a href="plugins">kustomize plugin documentation</a>.</p>
|
|
||||||
<h2 id="remove-load-restrictions">Remove load restrictions</h2>
|
|
||||||
<p><img src="/kustomize/images/abandonedTrainingWheels.png" alt="removed training wheels"></p>
|
|
||||||
<p>The following usage:</p>
|
|
||||||
<pre><code>kustomize build --load_restrictor none $target
|
|
||||||
</code></pre><p>allows a <code>kustomization.yaml</code> file used in this
|
|
||||||
build to refer to files outside its own directory
|
|
||||||
(i.e. outside its <a href="/kustomize/api-reference/glossary#kustomization-root">root</a>).</p>
|
|
||||||
<p>This is an opt-in to suppress a security feature
|
|
||||||
that denies this precise behavior.</p>
|
|
||||||
<p>This feature should only be used to allow multiple
|
|
||||||
overlays (e.g. prod, staging and dev) to share a
|
|
||||||
patch file. To share <em>resources</em>, use a relative
|
|
||||||
path or URL to a kustomization directory in the
|
|
||||||
<code>resources</code> directive.</p>
|
|
||||||
<h2 id="inventory-generation-for-pruning">Inventory generation for pruning</h2>
|
|
||||||
<p><img src="/kustomize/images/pruning.png" alt="pruning dead branches"></p>
|
|
||||||
<p><em>Alpha</em></p>
|
|
||||||
<p>Users can add an <code>inventory</code> stanza to their
|
|
||||||
kustomization file, to add a special <em>inventory
|
|
||||||
object</em> to the <code>build</code> result.</p>
|
|
||||||
<p>This object applies to the cluster along with
|
|
||||||
everything else in the build result and can be
|
|
||||||
used by other clients to intelligently <em>prune</em>
|
|
||||||
orphaned cluster resources.</p>
|
|
||||||
<p>For more information see the
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/tree/master/docs/inventory_object.md">kustomize inventory object documentation</a>.</p>
|
|
||||||
<h2 id="field-changes--deprecations">Field changes / deprecations</h2>
|
|
||||||
<h3 id="resources-expanded-bases-deprecated"><code>resources</code> expanded, <code>bases</code> deprecated</h3>
|
|
||||||
<p>The <code>resources</code> field has been generalized; it now
|
|
||||||
accepts what formerly could only be specified in
|
|
||||||
the <code>bases</code> field.</p>
|
|
||||||
<p>This change was made to allow users fine control
|
|
||||||
over resource processing order. With a distinct
|
|
||||||
<code>bases</code> field, bases had to be loaded separately
|
|
||||||
from resources as a group. Now, base loading may
|
|
||||||
be interleaved as desired with the loading of
|
|
||||||
resource files from the current
|
|
||||||
directory. <a href="#resource-ordering">Resource ordering</a>
|
|
||||||
had to be respected before this feature could be
|
|
||||||
introduced.</p>
|
|
||||||
<p>The <code>bases</code> field is now deprecated, and will be
|
|
||||||
deleted in some future major release. Manage the
|
|
||||||
deprecation simply moving the arguments of the
|
|
||||||
<code>bases</code> field to the <code>resources</code> field in the
|
|
||||||
desired order, e.g.</p>
|
|
||||||
<blockquote>
|
|
||||||
<pre><code>resources:
|
|
||||||
- someResouceFile.yaml
|
|
||||||
- someOtherResourceFile.yaml
|
|
||||||
bases:
|
|
||||||
- ../../someBaseDir
|
|
||||||
</code></pre></blockquote>
|
|
||||||
<p>could become</p>
|
|
||||||
<blockquote>
|
|
||||||
<pre><code>resources:
|
|
||||||
- someResouceFile.yaml
|
|
||||||
- ../../someBaseDir
|
|
||||||
- someOtherResourceFile.yaml
|
|
||||||
</code></pre></blockquote>
|
|
||||||
<p>The <code>kustomized edit fix</code> command will do this for
|
|
||||||
you, though it will always put the bases at the
|
|
||||||
end.</p>
|
|
||||||
<p>As an aside, the <code>resources</code>, <code>generators</code> and
|
|
||||||
<code>transformers</code> fields now all accept the same
|
|
||||||
argument format.</p>
|
|
||||||
<blockquote>
|
|
||||||
<p>Each field’s argument is a <em>string list</em>,
|
|
||||||
where each entry is either a <em>resource</em> (a
|
|
||||||
relative path to a YAML file) or a
|
|
||||||
<a href="/kustomize/api-reference/glossary#kustomization"><em>kustomization</em></a> (a path or URL
|
|
||||||
pointing to a directory with a kustomization
|
|
||||||
file). A kustomization directory used in this
|
|
||||||
context is called a <a href="/kustomize/api-reference/glossary#base"><em>base</em></a>.</p>
|
|
||||||
</blockquote>
|
|
||||||
<p>The fact that the <code>generators</code> and <code>transformers</code>
|
|
||||||
field accept <a href="/kustomize/api-reference/glossary#base">bases</a> and the fact that generator
|
|
||||||
and transformer configuration objects are just
|
|
||||||
normal k8s resources means that one can generate
|
|
||||||
or transform a generator or a transformer (see
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/tree/master/api/internal/target/transformerplugin_test.go">TestTransformerTransformers</a>).</p>
|
|
||||||
<h3 id="replicas-field"><code>replicas</code> field</h3>
|
|
||||||
<p>The common task of patching a deployment to edit
|
|
||||||
the number of replicas is now made easier
|
|
||||||
with the new <a href="/kustomize/api-reference/kustomization/replicas">replicas</a> field.</p>
|
|
||||||
<h3 id="envs-field"><code>envs</code> field</h3>
|
|
||||||
<p>An <code>envs</code> sub-field has been added to both
|
|
||||||
<code>configMapGenerator</code> and <code>secretGenerator</code>,
|
|
||||||
replacing the now deprecated (and singular)
|
|
||||||
<code>env</code> field. The new field accepts lists, just
|
|
||||||
like its sibling fields <code>files</code> and <code>literals</code>.</p>
|
|
||||||
<p>Optionally use <code>kustomize edit fix</code> to merge
|
|
||||||
singular <code>env</code> field into a plural field.</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-unstyled d-flex justify-content-between align-items-center mb-0 pt-5">
|
|
||||||
<li>
|
|
||||||
<a href="/kustomize/blog/2019/02/05/v2.0.0/" class="btn btn-primary "><span class="mr-1">←</span> Previous</a>
|
|
||||||
</li>
|
|
||||||
<a href="/kustomize/blog/2019/07/03/v3.0.0/" class="btn btn-primary ">Next <span class="ml-1">→</span></a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,471 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>v3.0.0 | Kustomize</title><meta property="og:title" content="v3.0.0" />
|
|
||||||
<meta property="og:description" content="Kustomize v3.0.0
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/blog/2019/07/03/v3.0.0/" />
|
|
||||||
<meta property="article:published_time" content="2019-07-03T00:00:00+00:00" />
|
|
||||||
<meta property="article:modified_time" content="2020-07-16T12:57:18-07:00" /><meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="v3.0.0">
|
|
||||||
<meta itemprop="description" content="Kustomize v3.0.0
|
|
||||||
">
|
|
||||||
<meta itemprop="datePublished" content="2019-07-03T00:00:00+00:00" />
|
|
||||||
<meta itemprop="dateModified" content="2020-07-16T12:57:18-07:00" />
|
|
||||||
<meta itemprop="wordCount" content="324">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta itemprop="keywords" content="" />
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="v3.0.0"/>
|
|
||||||
<meta name="twitter:description" content="Kustomize v3.0.0
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>v3.0.0 | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-page td-blog">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/api-reference/" ><span>API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/blog/" ><span class="active">Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2019/07/03/v3.0.0/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2019/07/03/v3.0.0/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">Blog</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblog">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/releases/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">Releases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblogreleases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20191024v330" href="/kustomize/blog/2019/10/24/v3.3.0/">v3.3.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190926v321" href="/kustomize/blog/2019/09/26/v3.2.1/">v3.2.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190917v320" href="/kustomize/blog/2019/09/17/v3.2.0/">v3.2.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190726v310" href="/kustomize/blog/2019/07/26/v3.1.0/">v3.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page active" id="m-kustomizeblog20190703v300" href="/kustomize/blog/2019/07/03/v3.0.0/">v3.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190618v210" href="/kustomize/blog/2019/06/18/v2.1.0/">v2.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190205v200" href="/kustomize/blog/2019/02/05/v2.0.0/">v2.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20180521v101" href="/kustomize/blog/2018/05/21/v1.0.1/">v1.0.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/blog/releases/v3.0.0.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=v3.0.0" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5 pr-md-4" role="main">
|
|
||||||
<a class="btn btn-lg -bg-orange td-rss-button d-none d-lg-block" href="https://kubernetes-sigs.github.io/kustomize/blog/releases/index.xml" target="_blank">
|
|
||||||
RSS <i class="fa fa-rss ml-2 "></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>v3.0.0</h1>
|
|
||||||
<div class="lead">Kustomize v3.0.0</div>
|
|
||||||
<div class="td-byline mb-4">
|
|
||||||
|
|
||||||
<time datetime="2019-07-03" class="text-muted">Wednesday, July 03, 2019</time>
|
|
||||||
</div>
|
|
||||||
<p>This release is basically <a href="v2.1.0.md">v2.1.0</a>,
|
|
||||||
with many post-v2.1.0 bugs fixed (in about 150
|
|
||||||
commits) and a <code>v3</code> in Go package paths.</p>
|
|
||||||
<p>The major version increment to <code>v3</code> puts a new
|
|
||||||
floor on a stable API for <a href="/docs/plugins">plugin</a> developers
|
|
||||||
(both <em>Go</em> plugin developers and <em>exec</em> plugin
|
|
||||||
developers who happen to use Go).</p>
|
|
||||||
<h3 id="why-so-soon-after-v210">Why so soon after v2.1.0</h3>
|
|
||||||
<p>We made a mistake - v2.1.0 should have been
|
|
||||||
v3.0.0. Per the <a href="https://github.com/golang/go/wiki/Modules#releasing-modules-v2-or-higher">Go modules doc</a> (which have
|
|
||||||
improved a great deal recently), a release that’s
|
|
||||||
already tagged v2 or higher should increment the
|
|
||||||
major version when performing their first Go
|
|
||||||
module-based release.</p>
|
|
||||||
<p>This advice applies to kustomize, since it was
|
|
||||||
already at major version 2 when it began using Go
|
|
||||||
modules to state <em>its own</em> dependencies in v2.1.0.</p>
|
|
||||||
<p>But the more important reason for <code>v3</code> is a change
|
|
||||||
to the kustomize <a href="/kustomize/faq/versioningpolicy">versioning policy</a>, forced by
|
|
||||||
the introduction of plugins.</p>
|
|
||||||
<p>Historically, kustomize’s <a href="/kustomize/faq/versioningpolicy">versioning policy</a>
|
|
||||||
didn’t involve Go modules and addressed <em>only</em> the
|
|
||||||
command line tool’s behavior and the fields in a
|
|
||||||
kustomization file. The underlying packages were
|
|
||||||
an implementation detail, not under semantic
|
|
||||||
versioning, because they weren’t intended for
|
|
||||||
export (and should have all been under
|
|
||||||
<code>internal</code>). Thus although the v2.1.0 CLI is
|
|
||||||
backward compatible with v2.0.3, the underlying
|
|
||||||
package APIs are not.</p>
|
|
||||||
<p>With Go modules, the <code>go</code> tool must assume that Go
|
|
||||||
packages respect <a href="https://semver.org">semantic versioning</a>, so it can
|
|
||||||
perform <a href="https://research.swtch.com/vgo-mvs">minimal version selection</a>.</p>
|
|
||||||
<p>With the introduction of alpha plugins, kustomize
|
|
||||||
sub-packages - in particular <code>loader</code> and
|
|
||||||
<code>resmap</code> - become part of an API formally exposed
|
|
||||||
to plugin authors, and so must be semantically
|
|
||||||
versioned. This allows plugins defined in other
|
|
||||||
repositories to clarify that they depend on
|
|
||||||
kustomize v3.0.0, and not see confusing errors
|
|
||||||
arising from incompatibilities between v2.1.0 and
|
|
||||||
v2.0.3. Hence, the jump to v3.</p>
|
|
||||||
<p>Aside - the set of kustomize packages outside
|
|
||||||
<code>internal</code> is too large, and over time, informed
|
|
||||||
by package use, this API surface must shrink.
|
|
||||||
Such shrinkage will trigger a major version
|
|
||||||
increment.</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-unstyled d-flex justify-content-between align-items-center mb-0 pt-5">
|
|
||||||
<li>
|
|
||||||
<a href="/kustomize/blog/2019/06/18/v2.1.0/" class="btn btn-primary "><span class="mr-1">←</span> Previous</a>
|
|
||||||
</li>
|
|
||||||
<a href="/kustomize/blog/2019/07/26/v3.1.0/" class="btn btn-primary ">Next <span class="ml-1">→</span></a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,538 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>v3.1.0 | Kustomize</title><meta property="og:title" content="v3.1.0" />
|
|
||||||
<meta property="og:description" content="Kustomize v3.1.0
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/blog/2019/07/26/v3.1.0/" />
|
|
||||||
<meta property="article:published_time" content="2019-07-26T00:00:00+00:00" />
|
|
||||||
<meta property="article:modified_time" content="2020-07-16T12:57:18-07:00" /><meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="v3.1.0">
|
|
||||||
<meta itemprop="description" content="Kustomize v3.1.0
|
|
||||||
">
|
|
||||||
<meta itemprop="datePublished" content="2019-07-26T00:00:00+00:00" />
|
|
||||||
<meta itemprop="dateModified" content="2020-07-16T12:57:18-07:00" />
|
|
||||||
<meta itemprop="wordCount" content="362">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta itemprop="keywords" content="" />
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="v3.1.0"/>
|
|
||||||
<meta name="twitter:description" content="Kustomize v3.1.0
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>v3.1.0 | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-page td-blog">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/api-reference/" ><span>API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/blog/" ><span class="active">Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2019/07/26/v3.1.0/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2019/07/26/v3.1.0/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">Blog</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblog">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/releases/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">Releases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblogreleases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20191024v330" href="/kustomize/blog/2019/10/24/v3.3.0/">v3.3.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190926v321" href="/kustomize/blog/2019/09/26/v3.2.1/">v3.2.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190917v320" href="/kustomize/blog/2019/09/17/v3.2.0/">v3.2.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page active" id="m-kustomizeblog20190726v310" href="/kustomize/blog/2019/07/26/v3.1.0/">v3.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190703v300" href="/kustomize/blog/2019/07/03/v3.0.0/">v3.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190618v210" href="/kustomize/blog/2019/06/18/v2.1.0/">v2.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190205v200" href="/kustomize/blog/2019/02/05/v2.0.0/">v2.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20180521v101" href="/kustomize/blog/2018/05/21/v1.0.1/">v1.0.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/blog/releases/v3.1.0.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=v3.1.0" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#extended-patches">Extended patches</a></li>
|
|
||||||
<li><a href="#improved-resource-matching">Improved Resource Matching</a>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#patch-resolution-improvement">Patch resolution improvement</a></li>
|
|
||||||
<li><a href="#variable-resolution-improvement">Variable resolution improvement</a></li>
|
|
||||||
<li><a href="#simultaneous-change-of-names-and-namespaces">Simultaneous change of names and namespaces</a></li>
|
|
||||||
<li><a href="#resource-and-kustomize-context-matching">Resource and Kustomize Context matching</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a href="#other-improvements">Other improvements</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5 pr-md-4" role="main">
|
|
||||||
<a class="btn btn-lg -bg-orange td-rss-button d-none d-lg-block" href="https://kubernetes-sigs.github.io/kustomize/blog/releases/index.xml" target="_blank">
|
|
||||||
RSS <i class="fa fa-rss ml-2 "></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>v3.1.0</h1>
|
|
||||||
<div class="lead">Kustomize v3.1.0</div>
|
|
||||||
<div class="td-byline mb-4">
|
|
||||||
|
|
||||||
<time datetime="2019-07-26" class="text-muted">Friday, July 26, 2019</time>
|
|
||||||
</div>
|
|
||||||
<h2 id="extended-patches">Extended patches</h2>
|
|
||||||
<p>Since this version, Kustomize allows applying one patch to multiple resources. This works for both Strategic Merge Patch and JSON Patch. Take a look at <a href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples/patchMultipleObjects.md">patch multiple objects</a>.</p>
|
|
||||||
<h2 id="improved-resource-matching">Improved Resource Matching</h2>
|
|
||||||
<p>Multiple improvements have been made to allow the user to leverage “namespace”
|
|
||||||
instead/or with “name suffix/prefix” to segregate resources.</p>
|
|
||||||
<h3 id="patch-resolution-improvement">Patch resolution improvement</h3>
|
|
||||||
<p>The following example demonstrates how using the namespace field in the patch definition,
|
|
||||||
will let the user define two different patches against two different Deployment having the
|
|
||||||
same “deploy1” name but in different namespaces in the same Kustomize context/folder.
|
|
||||||
Unless the <code>namespace:</code> field has been specified in the kustomization.yaml, no namespace
|
|
||||||
value will be handled as Kubernetes <code>default</code> namespace.</p>
|
|
||||||
<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-yaml" data-lang="yaml"><span style="color:#204a87;font-weight:bold">apiVersion</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>apps/v1<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">kind</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>Deployment<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">metadata</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>deploy1<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">namespace</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>main<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">spec</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">template</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">spec</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">containers</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span>- <span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>nginx<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">env</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span>- <span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>ANOTHERENV<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">value</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>TESTVALUE<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span>---<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">apiVersion</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>apps/v1<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">kind</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>Deployment<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">metadata</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>deploy1<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">namespace</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>production<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">spec</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">template</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">spec</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">containers</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span>- <span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>main<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">env</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span>- <span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>ANOTHERENV<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">value</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>PRODVALUE<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span></code></pre></div><h3 id="variable-resolution-improvement">Variable resolution improvement</h3>
|
|
||||||
<p>It is possible to add namespace field to the variable declaration. In the following example,
|
|
||||||
two <code>Service</code> objects with the same <code>elasticsearch</code> name have been declared.
|
|
||||||
Specifying the namespace in the objRef of the corresponding varriables, allows Kustomize to
|
|
||||||
resovlve thoses variables.
|
|
||||||
If the namespace is not specified, Kustomize will handle it has a “wildcard” value.</p>
|
|
||||||
<p>Extract of kustomization.yaml:</p>
|
|
||||||
<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-yaml" data-lang="yaml"><span style="color:#204a87;font-weight:bold">vars</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span>- <span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>elasticsearch-test-protocol<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">objref</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">kind</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>Service<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>elasticsearch<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">namespace</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>test<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">apiVersion</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>v1<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">fieldref</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">fieldpath</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>spec.ports<span style="color:#000;font-weight:bold">[</span><span style="color:#0000cf;font-weight:bold">0</span><span style="color:#000;font-weight:bold">]</span>.protocol<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span>- <span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>elasticsearch-dev-protocol<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">objref</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">kind</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>Service<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>elasticsearch<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">namespace</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>dev<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">apiVersion</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>v1<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">fieldref</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">fieldpath</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>spec.ports<span style="color:#000;font-weight:bold">[</span><span style="color:#0000cf;font-weight:bold">0</span><span style="color:#000;font-weight:bold">]</span>.protocol<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span></code></pre></div><h3 id="simultaneous-change-of-names-and-namespaces">Simultaneous change of names and namespaces</h3>
|
|
||||||
<p>Kustomize is now able to deal with simultaneous changes of name and namespace.
|
|
||||||
Special attention has been paid the handling of:</p>
|
|
||||||
<ul>
|
|
||||||
<li>ClusterRoleBinding/RoleBinding “subjects” field,</li>
|
|
||||||
<li>ValidatingWebhookConfiguration “webhooks” field.</li>
|
|
||||||
</ul>
|
|
||||||
<p>The user should be able to use a kustomization.yaml as shown in the example bellow
|
|
||||||
even if ClusterRoleBind,RoleBinding and ValidatingWebookConfiguration are part of the
|
|
||||||
resources he needs to declare.</p>
|
|
||||||
<p>Extract of kustomization.yaml:</p>
|
|
||||||
<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-yaml" data-lang="yaml"><span style="color:#204a87;font-weight:bold">namePrefix</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>pfx-<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">nameSuffix</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>-sfx<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">namespace</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>testnamespace<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">resources</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span>...<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span></code></pre></div><h3 id="resource-and-kustomize-context-matching">Resource and Kustomize Context matching</h3>
|
|
||||||
<p>Kustomize is now able to support more aggregation patterns.</p>
|
|
||||||
<p>If for instance, the top level of kustomization.yaml, is simply
|
|
||||||
combining sub-components, (as in the following example), Kustomize has improved
|
|
||||||
resource matching capabilities. This removes some of the constraints which were
|
|
||||||
present on the utilization of prefix/suffix and namespace transformers in the
|
|
||||||
individual components.</p>
|
|
||||||
<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-yaml" data-lang="yaml"><span style="color:#204a87;font-weight:bold">resources</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span>- ../component1<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span>- ../component2<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span>- ../component3<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span></code></pre></div><h2 id="other-improvements">Other improvements</h2>
|
|
||||||
<ul>
|
|
||||||
<li>Image transformation has been improved. This allows the user to update the sha256 of
|
|
||||||
an image with another sha256.</li>
|
|
||||||
<li>Multiple default transformer configuration entries have been added, removing the need for the
|
|
||||||
user to add them as part of the <code>configurations:</code> section of the kustomization.yaml.</li>
|
|
||||||
<li><code>kustomize</code> help command has been tidied up.</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-unstyled d-flex justify-content-between align-items-center mb-0 pt-5">
|
|
||||||
<li>
|
|
||||||
<a href="/kustomize/blog/2019/07/03/v3.0.0/" class="btn btn-primary "><span class="mr-1">←</span> Previous</a>
|
|
||||||
</li>
|
|
||||||
<a href="/kustomize/blog/2019/09/17/v3.2.0/" class="btn btn-primary ">Next <span class="ml-1">→</span></a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,447 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>v3.2.0 | Kustomize</title><meta property="og:title" content="v3.2.0" />
|
|
||||||
<meta property="og:description" content="Kustomize v3.2.0
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/blog/2019/09/17/v3.2.0/" />
|
|
||||||
<meta property="article:published_time" content="2019-09-17T00:00:00+00:00" />
|
|
||||||
<meta property="article:modified_time" content="2020-07-16T12:57:18-07:00" /><meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="v3.2.0">
|
|
||||||
<meta itemprop="description" content="Kustomize v3.2.0
|
|
||||||
">
|
|
||||||
<meta itemprop="datePublished" content="2019-09-17T00:00:00+00:00" />
|
|
||||||
<meta itemprop="dateModified" content="2020-07-16T12:57:18-07:00" />
|
|
||||||
<meta itemprop="wordCount" content="103">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta itemprop="keywords" content="" />
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="v3.2.0"/>
|
|
||||||
<meta name="twitter:description" content="Kustomize v3.2.0
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>v3.2.0 | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-page td-blog">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/api-reference/" ><span>API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/blog/" ><span class="active">Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2019/09/17/v3.2.0/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2019/09/17/v3.2.0/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">Blog</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblog">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/releases/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">Releases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblogreleases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20191024v330" href="/kustomize/blog/2019/10/24/v3.3.0/">v3.3.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190926v321" href="/kustomize/blog/2019/09/26/v3.2.1/">v3.2.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page active" id="m-kustomizeblog20190917v320" href="/kustomize/blog/2019/09/17/v3.2.0/">v3.2.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190726v310" href="/kustomize/blog/2019/07/26/v3.1.0/">v3.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190703v300" href="/kustomize/blog/2019/07/03/v3.0.0/">v3.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190618v210" href="/kustomize/blog/2019/06/18/v2.1.0/">v2.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190205v200" href="/kustomize/blog/2019/02/05/v2.0.0/">v2.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20180521v101" href="/kustomize/blog/2018/05/21/v1.0.1/">v1.0.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/blog/releases/v3.2.0.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=v3.2.0" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#inline-patch">Inline Patch</a></li>
|
|
||||||
<li><a href="#new-subcommand">New Subcommand</a>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#new-example-generator">New Example Generator</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5 pr-md-4" role="main">
|
|
||||||
<a class="btn btn-lg -bg-orange td-rss-button d-none d-lg-block" href="https://kubernetes-sigs.github.io/kustomize/blog/releases/index.xml" target="_blank">
|
|
||||||
RSS <i class="fa fa-rss ml-2 "></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>v3.2.0</h1>
|
|
||||||
<div class="lead">Kustomize v3.2.0</div>
|
|
||||||
<div class="td-byline mb-4">
|
|
||||||
|
|
||||||
<time datetime="2019-09-17" class="text-muted">Tuesday, September 17, 2019</time>
|
|
||||||
</div>
|
|
||||||
<h2 id="inline-patch">Inline Patch</h2>
|
|
||||||
<p>Since this version, Kustomize allows inline patches in all three of <code>patchesStrategicMerge</code>, <code>patchesJson6902</code> and <code>patches</code>. Take a look at <a href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples/examples/inlinePatch.md">inline patch</a>.</p>
|
|
||||||
<h2 id="new-subcommand">New Subcommand</h2>
|
|
||||||
<p>Since this version, one can create a kustomization.yaml file in a directory through a <code>create</code> subcommand.</p>
|
|
||||||
<p>Create a new overlay from the base ../base</p>
|
|
||||||
<pre><code>kustomize create --resources ../base
|
|
||||||
</code></pre><p>Create a new kustomization detecing resources in the current directory</p>
|
|
||||||
<pre><code>kustomize create --autodetect
|
|
||||||
</code></pre><p>Once can also add all resources in the current directory recursively by</p>
|
|
||||||
<pre><code>kustomize create --autodetect --recursive
|
|
||||||
</code></pre><h3 id="new-example-generator">New Example Generator</h3>
|
|
||||||
<p>A new example generator of using go-getter to download resources is added. Take a look at <a href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples/goGetterGeneratorPlugin.md">go-getter generator</a>.</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-unstyled d-flex justify-content-between align-items-center mb-0 pt-5">
|
|
||||||
<li>
|
|
||||||
<a href="/kustomize/blog/2019/07/26/v3.1.0/" class="btn btn-primary "><span class="mr-1">←</span> Previous</a>
|
|
||||||
</li>
|
|
||||||
<a href="/kustomize/blog/2019/09/26/v3.2.1/" class="btn btn-primary ">Next <span class="ml-1">→</span></a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,432 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>v3.2.1 | Kustomize</title><meta property="og:title" content="v3.2.1" />
|
|
||||||
<meta property="og:description" content="Kustomize v3.2.1
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/blog/2019/09/26/v3.2.1/" />
|
|
||||||
<meta property="article:published_time" content="2019-09-26T00:00:00+00:00" />
|
|
||||||
<meta property="article:modified_time" content="2020-06-07T21:07:46-07:00" /><meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="v3.2.1">
|
|
||||||
<meta itemprop="description" content="Kustomize v3.2.1
|
|
||||||
">
|
|
||||||
<meta itemprop="datePublished" content="2019-09-26T00:00:00+00:00" />
|
|
||||||
<meta itemprop="dateModified" content="2020-06-07T21:07:46-07:00" />
|
|
||||||
<meta itemprop="wordCount" content="63">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta itemprop="keywords" content="" />
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="v3.2.1"/>
|
|
||||||
<meta name="twitter:description" content="Kustomize v3.2.1
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>v3.2.1 | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-page td-blog">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/api-reference/" ><span>API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/blog/" ><span class="active">Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2019/09/26/v3.2.1/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2019/09/26/v3.2.1/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">Blog</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblog">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/releases/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">Releases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblogreleases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20191024v330" href="/kustomize/blog/2019/10/24/v3.3.0/">v3.3.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page active" id="m-kustomizeblog20190926v321" href="/kustomize/blog/2019/09/26/v3.2.1/">v3.2.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190917v320" href="/kustomize/blog/2019/09/17/v3.2.0/">v3.2.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190726v310" href="/kustomize/blog/2019/07/26/v3.1.0/">v3.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190703v300" href="/kustomize/blog/2019/07/03/v3.0.0/">v3.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190618v210" href="/kustomize/blog/2019/06/18/v2.1.0/">v2.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190205v200" href="/kustomize/blog/2019/02/05/v2.0.0/">v2.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20180521v101" href="/kustomize/blog/2018/05/21/v1.0.1/">v1.0.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/blog/releases/v3.2.1.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=v3.2.1" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5 pr-md-4" role="main">
|
|
||||||
<a class="btn btn-lg -bg-orange td-rss-button d-none d-lg-block" href="https://kubernetes-sigs.github.io/kustomize/blog/releases/index.xml" target="_blank">
|
|
||||||
RSS <i class="fa fa-rss ml-2 "></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>v3.2.1</h1>
|
|
||||||
<div class="lead">Kustomize v3.2.1</div>
|
|
||||||
<div class="td-byline mb-4">
|
|
||||||
|
|
||||||
<time datetime="2019-09-26" class="text-muted">Thursday, September 26, 2019</time>
|
|
||||||
</div>
|
|
||||||
<p>This is a patch release, with no new features from 3.2.0.</p>
|
|
||||||
<p>It reflects a change in dependence.</p>
|
|
||||||
<p>The kustomize binary is now built as a client, with no special
|
|
||||||
consideration, of the set of public packages represented by the Go
|
|
||||||
module at [https://github.com/kubernetes-sigs/kustomize].</p>
|
|
||||||
<p>kustomize the binary is now a client of the kustomize API
|
|
||||||
represented by the public package surface presented by
|
|
||||||
<code>https://github.com/kubernetes-sigs/kustomize/v{whatever}</code></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-unstyled d-flex justify-content-between align-items-center mb-0 pt-5">
|
|
||||||
<li>
|
|
||||||
<a href="/kustomize/blog/2019/09/17/v3.2.0/" class="btn btn-primary "><span class="mr-1">←</span> Previous</a>
|
|
||||||
</li>
|
|
||||||
<a href="/kustomize/blog/2019/10/24/v3.3.0/" class="btn btn-primary ">Next <span class="ml-1">→</span></a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,531 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>v3.3.0 | Kustomize</title><meta property="og:title" content="v3.3.0" />
|
|
||||||
<meta property="og:description" content="Kustomize v3.3.0
|
|
||||||
" />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/blog/2019/10/24/v3.3.0/" />
|
|
||||||
<meta property="article:published_time" content="2019-10-24T00:00:00+00:00" />
|
|
||||||
<meta property="article:modified_time" content="2020-07-16T12:57:18-07:00" /><meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="v3.3.0">
|
|
||||||
<meta itemprop="description" content="Kustomize v3.3.0
|
|
||||||
">
|
|
||||||
<meta itemprop="datePublished" content="2019-10-24T00:00:00+00:00" />
|
|
||||||
<meta itemprop="dateModified" content="2020-07-16T12:57:18-07:00" />
|
|
||||||
<meta itemprop="wordCount" content="863">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta itemprop="keywords" content="" />
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="v3.3.0"/>
|
|
||||||
<meta name="twitter:description" content="Kustomize v3.3.0
|
|
||||||
"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>v3.3.0 | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-page td-blog">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/api-reference/" ><span>API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/blog/" ><span class="active">Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2019/10/24/v3.3.0/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/2019/10/24/v3.3.0/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">Blog</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblog">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/releases/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">Releases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblogreleases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page active" id="m-kustomizeblog20191024v330" href="/kustomize/blog/2019/10/24/v3.3.0/">v3.3.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190926v321" href="/kustomize/blog/2019/09/26/v3.2.1/">v3.2.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190917v320" href="/kustomize/blog/2019/09/17/v3.2.0/">v3.2.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190726v310" href="/kustomize/blog/2019/07/26/v3.1.0/">v3.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190703v300" href="/kustomize/blog/2019/07/03/v3.0.0/">v3.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190618v210" href="/kustomize/blog/2019/06/18/v2.1.0/">v2.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190205v200" href="/kustomize/blog/2019/02/05/v2.0.0/">v2.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20180521v101" href="/kustomize/blog/2018/05/21/v1.0.1/">v1.0.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/blog/releases/v3.3.0.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=v3.3.0" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#summary-of-changes">Summary of changes</a>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#first-release-of-the-go-api-only-module">First release of the Go API-only module</a></li>
|
|
||||||
<li><a href="#change-log-since-v320">Change log since v3.2.0</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5 pr-md-4" role="main">
|
|
||||||
<a class="btn btn-lg -bg-orange td-rss-button d-none d-lg-block" href="https://kubernetes-sigs.github.io/kustomize/blog/releases/index.xml" target="_blank">
|
|
||||||
RSS <i class="fa fa-rss ml-2 "></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<div class="td-content">
|
|
||||||
<h1>v3.3.0</h1>
|
|
||||||
<div class="lead">Kustomize v3.3.0</div>
|
|
||||||
<div class="td-byline mb-4">
|
|
||||||
|
|
||||||
<time datetime="2019-10-24" class="text-muted">Thursday, October 24, 2019</time>
|
|
||||||
</div>
|
|
||||||
<h2 id="summary-of-changes">Summary of changes</h2>
|
|
||||||
<h3 id="first-release-of-the-go-api-only-module">First release of the Go API-only module</h3>
|
|
||||||
<p>Many of the PRs since the last vrelease were
|
|
||||||
around restructuring the <em>sigs.k8s.io/kustomize</em>
|
|
||||||
repository into three Go modules instead of just one.</p>
|
|
||||||
<p>The reasons for this are detailed in the <a href="/site/content/en/faq/versioningPolicy.md">versioning
|
|
||||||
policy documentation</a>, and what it means for releasing
|
|
||||||
is explained in the <a href="/releasing">release process documentation</a>.</p>
|
|
||||||
<p>The tl;dr is that the top level module
|
|
||||||
<code>sigs.k8s.io/kustomize</code> now defines the kustomize Go
|
|
||||||
API, and the <em>kustomize</em> CLI sits below it in an
|
|
||||||
independent module <code>sigs.k8s.io/kustomize/kustomize</code>.</p>
|
|
||||||
<p>The modules release independently, though in practice a
|
|
||||||
new release of the kustomize Go API will likely be
|
|
||||||
followed quickly by a new release of the <code>kustomize</code>
|
|
||||||
executable.</p>
|
|
||||||
<p>This is a necessary step to creating a much smaller
|
|
||||||
kustomize Go API surface that has some hope of
|
|
||||||
conforming to semantic versioning and being of some use
|
|
||||||
to clients.</p>
|
|
||||||
<p>The kustomize CLI will see the same kustomize Go API as
|
|
||||||
any other client.</p>
|
|
||||||
<p>The new semver-able API will begin with <code>v4.0.0</code> (not
|
|
||||||
yet released) and be a clean break with <code>v3</code> etc.</p>
|
|
||||||
<h3 id="change-log-since-v320">Change log since v3.2.0</h3>
|
|
||||||
<pre><code>3c9d828f - Have kustomize CLI depend on kustomize Go API v3.3.0 (Jeffrey Regan)
|
|
||||||
5d800f0b - Merge pull request #1595 from monopole/threeReleases (Jeff Regan)
|
|
||||||
4eb2d5bc - Three builders. (Jeffrey Regan)
|
|
||||||
988af1ff - Update README.md (Jeff Regan)
|
|
||||||
1617183e - Merge pull request #1590 from monopole/releaseProcessUpdate (Kubernetes Prow Robot)
|
|
||||||
ee727464 - update release process doc (jregan)
|
|
||||||
c9e7dc3b - Merge pull request #1589 from monopole/moreTestsAroundKustFileName (Jeff Regan)
|
|
||||||
07e0e46a - improve tests for alternative kustomization file names (Jeffrey Regan)
|
|
||||||
404d2d63 - Merge pull request #1587 from monopole/reducePgmconfig (Jeff Regan)
|
|
||||||
baa0296a - Reduce size of pgmconfig package (Jeffrey Regan)
|
|
||||||
0f665ac1 - Merge pull request #1544 from ptux/add-transformer-href (Jeff Regan)
|
|
||||||
14b0a650 - Merge pull request #1581 from monopole/refactorFs (Jeff Regan)
|
|
||||||
2d58f8b8 - Break the dep between fs and pgmconfig. (Jeffrey Regan)
|
|
||||||
9a43ca53 - Merge pull request #1578 from nlamirault/fix/build-plugins-doc (Jeff Regan)
|
|
||||||
5372fc6f - Merge pull request #1579 from monopole/fsPackageCleanup (Jeff Regan)
|
|
||||||
86bc3440 - Merge pull request #1513 from nimohunter/fix_empty_list_item (Kubernetes Prow Robot)
|
|
||||||
a014f7d4 - Merge pull request #1561 from beautytiger/dev-190925 (Jeff Regan)
|
|
||||||
9a94bcb8 - Improve fs package and doc in prep to officially go public (Jeffrey Regan)
|
|
||||||
07634ef0 - Merge pull request #1575 from monopole/versioning (Jeff Regan)
|
|
||||||
995f88d6 - Update versioning notes. (jregan)
|
|
||||||
334a6467 - Fix: documentation link for plugins (Nicolas Lamirault)
|
|
||||||
08963ba5 - improve test code coverage in transformers (Guangming Wang)
|
|
||||||
326fb689 - Merge pull request #1570 from bzub/1234-go_plugin_doc (Jeff Regan)
|
|
||||||
970ce67c - Update goPluginCaveats.md (Jeff Regan)
|
|
||||||
98d18930 - Update INSTALL.md (Jeff Regan)
|
|
||||||
d89b448c - Fix git tag recovery in cloud build. (Jeff Regan)
|
|
||||||
17bf9d32 - Update releasing README. (Jeff Regan)
|
|
||||||
a99aff1d - Merge pull request #1571 from monopole/updateCloudBuildProcess (Kubernetes Prow Robot)
|
|
||||||
a694ac7b - Update cloud build process for kustomize. (Jeffrey Regan)
|
|
||||||
b5b11ef6 - Fix compile kustomize example. (bzub)
|
|
||||||
fa1af6f5 - Merge pull request #1473 from richardmarshall/execpluginhash (Jeff Regan)
|
|
||||||
9288dec0 - Fix failing BashedConfigMapTest (Jeff Regan)
|
|
||||||
1a45dd0b - Merge pull request #1566 from monopole/releaseNotes3.2.1 (Kubernetes Prow Robot)
|
|
||||||
592c5acf - docs: Exec plugin generator options (Richard Marshall)
|
|
||||||
ac9424fa - tests: Add unit tests for update resource options (Richard Marshall)
|
|
||||||
79fbe7c4 - Support resource generator options in exec plugins (Richard Marshall)
|
|
||||||
f69d526f - v3.2.1 release notes (Jeff Regan)
|
|
||||||
07a95a60 - Merge pull request #1565 from monopole/tweakBinaryDepsBeforeTagging (Jeff Regan)
|
|
||||||
032b3857 - Pin the kustomize binary's dependence on kustomize libs. (jregan)
|
|
||||||
81062959 - Merge pull request #1564 from monopole/moveKustomizeBinaryToOwnModule (Kubernetes Prow Robot)
|
|
||||||
b82a8fd3 - Move the kustomize binary to its own module. (Jeffrey Regan)
|
|
||||||
2d0c22d6 - Merge pull request #1562 from keleustes/tools (Kubernetes Prow Robot)
|
|
||||||
aa342def - Pin tool versions using go modules (Ian Howell)
|
|
||||||
10786ec0 - Merge pull request #1554 from keleustes/readme (Kubernetes Prow Robot)
|
|
||||||
7c705687 - Update README.md to include Kubernetes 1.16 (Jerome Brette)
|
|
||||||
e8933d97 - Merge pull request #1560 from monopole/precommitTuneup (Jeff Regan)
|
|
||||||
9d7b6544 - Make pre-commit more portable and less tricky. (jregan)
|
|
||||||
7a0946a9 - Merge pull request #1558 from monopole/dependOnNewPluginatorModule (Jeff Regan)
|
|
||||||
def4f045 - Depend on new pluginator location. (Jeffrey Regan)
|
|
||||||
2f2408f1 - Merge pull request #1559 from monopole/compressCopyright (Jeff Regan)
|
|
||||||
3b9bcc48 - Compress copyright in the commands package. (Jeffrey Regan)
|
|
||||||
d0429ff4 - Merge pull request #1557 from monopole/pluginatorModule (Jeff Regan)
|
|
||||||
33deefc3 - Copy pluginator to its own module. (Jeffrey Regan)
|
|
||||||
9b3de82b - Merge pull request #1506 from Liujingfang1/release (Jeff Regan)
|
|
||||||
d217074f - Merge pull request #1550 from keleustes/apiversion (Kubernetes Prow Robot)
|
|
||||||
1d90ba7c - Fix typo in apiVersion yaml declaration (Jerome Brette)
|
|
||||||
eeeb4c36 - Merge pull request #1547 from keleustes/extensions (Kubernetes Prow Robot)
|
|
||||||
b1faa989 - Update Ingress apiVersion to networking.k8s.io/v1beta1 (Jerome Brette)
|
|
||||||
d8250c9e - move test case (nimohunter)
|
|
||||||
c9500466 - add transformer href (Wang(わん))
|
|
||||||
0c32691e - Merge pull request #1537 from jaypipes/gomod-install-note (Kubernetes Prow Robot)
|
|
||||||
88b1d627 - Merge pull request #1541 from rtnpro/patch-1 (Jeff Regan)
|
|
||||||
aec82066 - Update INSTALL.md (Jeff Regan)
|
|
||||||
20c2b53a - Merge pull request #1542 from monopole/tweakFilePathsInTest (Jeff Regan)
|
|
||||||
274b5c3b - Tweak file path handling and logging in test. (Jeffrey Regan)
|
|
||||||
b1fdaa23 - Fix typo in transformerconfigs README (Ratnadeep Debnath)
|
|
||||||
b5d5e70b - empty list or map item return error (nimohunter)
|
|
||||||
2e829853 - empty list or map item return error (nimohunter)
|
|
||||||
55941f57 - add note about GO111MODULE for source install (Jay Pipes)
|
|
||||||
9e226001 - empty list or map item return error (nimohunter)
|
|
||||||
77b63f96 - add release note for v3.2.0 (jingfangliu)
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-unstyled d-flex justify-content-between align-items-center mb-0 pt-5">
|
|
||||||
<li>
|
|
||||||
<a href="/kustomize/blog/2019/09/26/v3.2.1/" class="btn btn-primary "><span class="mr-1">←</span> Previous</a>
|
|
||||||
</li>
|
|
||||||
<a class="btn btn-primary disabled">Next <span class="ml-1">→</span></a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,553 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
|
|
||||||
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://kubernetes-sigs.github.io/kustomize/blog/index.xml">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/favicons/favicon.ico" >
|
|
||||||
<link rel="apple-touch-icon" href="/kustomize/favicons/apple-touch-icon-180x180.png" sizes="180x180">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-16x16.png" sizes="16x16">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/favicon-32x32.png" sizes="32x32">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-36x36.png" sizes="36x36">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-48x48.png" sizes="48x48">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-72x72.png" sizes="72x72">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-96x96.png" sizes="96x96">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-144x144.png" sizes="144x144">
|
|
||||||
<link rel="icon" type="image/png" href="/kustomize/favicons/android-192x192.png" sizes="192x192">
|
|
||||||
|
|
||||||
<title>Kustomize Blog | Kustomize</title><meta property="og:title" content="Kustomize Blog" />
|
|
||||||
<meta property="og:description" content="Kubernetes Configuration Customization" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://kubernetes-sigs.github.io/kustomize/blog/" />
|
|
||||||
<meta property="og:site_name" content="Kustomize" />
|
|
||||||
<meta itemprop="name" content="Kustomize Blog">
|
|
||||||
<meta itemprop="description" content="Kubernetes Configuration Customization">
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="Kustomize Blog"/>
|
|
||||||
<meta name="twitter:description" content="Kubernetes Configuration Customization"/>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preload" href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" as="style">
|
|
||||||
<link href="/kustomize/scss/main.min.818a933df0186c907f1faea6730835dd5fa01c3b53af36bb68396dc80a2d3c45.css" rel="stylesheet" integrity="">
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
||||||
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://kubernetes-sigs.github.io/kustomize//css/asciinema-player.css" />
|
|
||||||
|
|
||||||
<title>Kustomize Blog | Kustomize</title>
|
|
||||||
</head>
|
|
||||||
<body class="td-section td-blog">
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark flex-column flex-md-row td-navbar">
|
|
||||||
<a class="navbar-brand" href="/kustomize/">
|
|
||||||
<span class="navbar-logo"></span><span class="text-uppercase font-weight-bold">Kustomize</span>
|
|
||||||
</a>
|
|
||||||
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
|
|
||||||
<ul class="navbar-nav mt-2 mt-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/installation/" ><span>Installation</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/guides/" ><span>Guides</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/api-reference/" ><span>API Reference</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples" target="_blank" ><span>Example</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/faq/" ><span>FAQ</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link active" href="/kustomize/blog/" ><span class="active">Blog</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item mr-4 mb-2 mb-lg-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link" href="/kustomize/contributing/" ><span>Contributing</span></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item dropdown d-none d-lg-block">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-nav d-none d-lg-block">
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<div class="container-fluid td-outer">
|
|
||||||
<div class="td-main">
|
|
||||||
<div class="row flex-xl-nowrap">
|
|
||||||
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="td-sidebar-menu" class="td-sidebar__inner">
|
|
||||||
|
|
||||||
<form class="td-sidebar__search d-flex align-items-center">
|
|
||||||
|
|
||||||
|
|
||||||
<button class="btn btn-link td-sidebar__toggle d-md-none p-0 ml-3 fas fa-bars" type="button" data-toggle="collapse" data-target="#td-section-nav" aria-controls="td-docs-nav" aria-expanded="false" aria-label="Toggle section navigation">
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<nav class="collapse td-sidebar-nav pt-2 pl-4" id="td-section-nav">
|
|
||||||
|
|
||||||
<div class="nav-item dropdown d-block d-lg-none">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
||||||
|
|
||||||
<a class="dropdown-item" href="/kustomize/zh/blog/">简体中文</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/" class="align-left pl-0 pr-2 active td-sidebar-link td-sidebar-link__section">Blog</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblog">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="td-sidebar-nav__section pr-md-3">
|
|
||||||
<li class="td-sidebar-nav__section-title">
|
|
||||||
<a href="/kustomize/blog/releases/" class="align-left pl-0 pr-2 td-sidebar-link td-sidebar-link__section">Releases</a>
|
|
||||||
</li>
|
|
||||||
<ul>
|
|
||||||
<li class="collapse show" id="kustomizeblogreleases">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20191024v330" href="/kustomize/blog/2019/10/24/v3.3.0/">v3.3.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190926v321" href="/kustomize/blog/2019/09/26/v3.2.1/">v3.2.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190917v320" href="/kustomize/blog/2019/09/17/v3.2.0/">v3.2.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190726v310" href="/kustomize/blog/2019/07/26/v3.1.0/">v3.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190703v300" href="/kustomize/blog/2019/07/03/v3.0.0/">v3.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190618v210" href="/kustomize/blog/2019/06/18/v2.1.0/">v2.1.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20190205v200" href="/kustomize/blog/2019/02/05/v2.0.0/">v2.0.0</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="td-sidebar-link td-sidebar-link__page " id="m-kustomizeblog20180521v101" href="/kustomize/blog/2018/05/21/v1.0.1/">v1.0.1</a>
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/edit/master/site/content/en/blog/_index.md" target="_blank"><i class="fa fa-edit fa-fw"></i> Edit this page</a>
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new?title=Kustomize%20Blog" target="_blank"><i class="fab fa-github fa-fw"></i> Create documentation issue</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/issues/new" target="_blank"><i class="fas fa-tasks fa-fw"></i> Create project issue</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<main class="col-12 col-md-9 col-xl-8 pl-md-5 pr-md-4" role="main">
|
|
||||||
<a class="btn btn-lg -bg-orange td-rss-button d-none d-lg-block" href="https://kubernetes-sigs.github.io/kustomize/blog/index.xml" target="_blank">
|
|
||||||
RSS <i class="fa fa-rss ml-2 "></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-12">
|
|
||||||
|
|
||||||
<h2>Posts in 2019</h2>
|
|
||||||
<ul class="list-unstyled mt-4">
|
|
||||||
|
|
||||||
<li class="media mb-4">
|
|
||||||
<div class="media-body">
|
|
||||||
<h5 class="mt-0 mb-1"><a href="/kustomize/blog/2019/10/24/v3.3.0/">v3.3.0</a></h5>
|
|
||||||
<p class="mb-2 mb-md-3"><small class="text-muted">Thursday, October 24, 2019 in Releases</small></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p class="pt-0 mt-0">Summary of changes First release of the Go API-only module Many of the PRs since the last vrelease were around restructuring the sigs.k8s.io/kustomize repository into three Go modules instead of just one.
|
|
||||||
The reasons for this are detailed in the …</p>
|
|
||||||
<p class="pt-0"><a href="/kustomize/blog/2019/10/24/v3.3.0/">Read more</a></p>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="media mb-4">
|
|
||||||
<div class="media-body">
|
|
||||||
<h5 class="mt-0 mb-1"><a href="/kustomize/blog/2019/09/26/v3.2.1/">v3.2.1</a></h5>
|
|
||||||
<p class="mb-2 mb-md-3"><small class="text-muted">Thursday, September 26, 2019 in Releases</small></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p class="pt-0 mt-0">This is a patch release, with no new features from 3.2.0.
|
|
||||||
It reflects a change in dependence.
|
|
||||||
The kustomize binary is now built as a client, with no special consideration, of the set of public packages represented by the Go module at …</p>
|
|
||||||
<p class="pt-0"><a href="/kustomize/blog/2019/09/26/v3.2.1/">Read more</a></p>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="media mb-4">
|
|
||||||
<div class="media-body">
|
|
||||||
<h5 class="mt-0 mb-1"><a href="/kustomize/blog/2019/09/17/v3.2.0/">v3.2.0</a></h5>
|
|
||||||
<p class="mb-2 mb-md-3"><small class="text-muted">Tuesday, September 17, 2019 in Releases</small></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p class="pt-0 mt-0">Inline Patch Since this version, Kustomize allows inline patches in all three of patchesStrategicMerge, patchesJson6902 and patches. Take a look at inline patch.
|
|
||||||
New Subcommand Since this version, one can create a kustomization.yaml file in a …</p>
|
|
||||||
<p class="pt-0"><a href="/kustomize/blog/2019/09/17/v3.2.0/">Read more</a></p>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="media mb-4">
|
|
||||||
<div class="media-body">
|
|
||||||
<h5 class="mt-0 mb-1"><a href="/kustomize/blog/2019/07/26/v3.1.0/">v3.1.0</a></h5>
|
|
||||||
<p class="mb-2 mb-md-3"><small class="text-muted">Friday, July 26, 2019 in Releases</small></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p class="pt-0 mt-0">Extended patches Since this version, Kustomize allows applying one patch to multiple resources. This works for both Strategic Merge Patch and JSON Patch. Take a look at patch multiple objects.
|
|
||||||
Improved Resource Matching Multiple improvements have …</p>
|
|
||||||
<p class="pt-0"><a href="/kustomize/blog/2019/07/26/v3.1.0/">Read more</a></p>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="media mb-4">
|
|
||||||
<div class="media-body">
|
|
||||||
<h5 class="mt-0 mb-1"><a href="/kustomize/blog/2019/07/03/v3.0.0/">v3.0.0</a></h5>
|
|
||||||
<p class="mb-2 mb-md-3"><small class="text-muted">Wednesday, July 03, 2019 in Releases</small></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p class="pt-0 mt-0">This release is basically v2.1.0, with many post-v2.1.0 bugs fixed (in about 150 commits) and a v3 in Go package paths.
|
|
||||||
The major version increment to v3 puts a new floor on a stable API for plugin developers (both Go plugin developers and exec …</p>
|
|
||||||
<p class="pt-0"><a href="/kustomize/blog/2019/07/03/v3.0.0/">Read more</a></p>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="media mb-4">
|
|
||||||
<div class="media-body">
|
|
||||||
<h5 class="mt-0 mb-1"><a href="/kustomize/blog/2019/06/18/v2.1.0/">v2.1.0</a></h5>
|
|
||||||
<p class="mb-2 mb-md-3"><small class="text-muted">Tuesday, June 18, 2019 in Releases</small></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p class="pt-0 mt-0">Go modules, resource ordering respected, generator and transformer plugins, eased loading restrictions, the notion of inventory, eased replica count modification. About ~90 issues closed since v2.0.3 in ~400 commits.
|
|
||||||
Download here.
|
|
||||||
Go modules …</p>
|
|
||||||
<p class="pt-0"><a href="/kustomize/blog/2019/06/18/v2.1.0/">Read more</a></p>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="media mb-4">
|
|
||||||
<div class="media-body">
|
|
||||||
<h5 class="mt-0 mb-1"><a href="/kustomize/blog/2019/02/05/v2.0.0/">v2.0.0</a></h5>
|
|
||||||
<p class="mb-2 mb-md-3"><small class="text-muted">Tuesday, February 05, 2019 in Releases</small></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p class="pt-0 mt-0">After security review, a field used in secret generation (see below) was removed from the definition of a kustomization file with no mechanism to convert it to a new form. Also, the set of files accessible from a kustomization file has been further …</p>
|
|
||||||
<p class="pt-0"><a href="/kustomize/blog/2019/02/05/v2.0.0/">Read more</a></p>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h2>Posts in 2018</h2>
|
|
||||||
<ul class="list-unstyled mt-4">
|
|
||||||
|
|
||||||
<li class="media mb-4">
|
|
||||||
<div class="media-body">
|
|
||||||
<h5 class="mt-0 mb-1"><a href="/kustomize/blog/2018/05/21/v1.0.1/">v1.0.1</a></h5>
|
|
||||||
<p class="mb-2 mb-md-3"><small class="text-muted">Monday, May 21, 2018 in Releases</small></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p class="pt-0 mt-0">Initial release after move from github.com/kubernetes/kubectl to github.com/kubernetes-sigs/kustomize.
|
|
||||||
History
|
|
||||||
May 2018: v1.0 after move to github.com/kubernetes-sigs/kubectl from github.com/kubernetes/kubectl. Has kustomization file, bases, …</p>
|
|
||||||
<p class="pt-0"><a href="/kustomize/blog/2018/05/21/v1.0.1/">Read more</a></p>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row pl-2 pt-2">
|
|
||||||
<div class="col">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="bg-dark py-5 row d-print-none">
|
|
||||||
<div class="container-fluid mx-sm-5">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="User mailing list" aria-label="User mailing list">
|
|
||||||
<a class="text-white" target="_blank" href="https://groups.google.com/forum/#!forum/kubernetes-sig-cli">
|
|
||||||
<i class="fa fa-envelope"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="list-inline mb-0">
|
|
||||||
|
|
||||||
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="GitHub" aria-label="GitHub">
|
|
||||||
<a class="text-white" target="_blank" href="https://github.com/kubernetes-sigs/kustomize">
|
|
||||||
<i class="fab fa-github"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
|
||||||
<small class="text-white">© 2020 Kubernetes Authors All Rights Reserved</small>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/kustomize/js/main.min.35b203b3c2114e187f6e4bbf0903c511aaaac5535186321e3b5e364656b6de0c.js" integrity="sha256-NbIDs8IRThh/bku/CQPFEaqqxVNRhjIeO142Rla23gw=" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="https://kubernetes-sigs.github.io/kustomize//js/asciinema-player.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,665 +0,0 @@
|
|||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Kustomize – Kustomize Blog</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/blog/</link>
|
|
||||||
<description>Recent content in Kustomize Blog on Kustomize</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
|
|
||||||
<atom:link href="https://kubernetes-sigs.github.io/kustomize/blog/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Blog: v3.3.0</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/blog/2019/10/24/v3.3.0/</link>
|
|
||||||
<pubDate>Thu, 24 Oct 2019 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/blog/2019/10/24/v3.3.0/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<h2 id="summary-of-changes">Summary of changes</h2>
|
|
||||||
<h3 id="first-release-of-the-go-api-only-module">First release of the Go API-only module</h3>
|
|
||||||
<p>Many of the PRs since the last vrelease were
|
|
||||||
around restructuring the <em>sigs.k8s.io/kustomize</em>
|
|
||||||
repository into three Go modules instead of just one.</p>
|
|
||||||
<p>The reasons for this are detailed in the <a href="https://kubernetes-sigs.github.io/kustomize/site/content/en/faq/versioningPolicy.md">versioning
|
|
||||||
policy documentation</a>, and what it means for releasing
|
|
||||||
is explained in the <a href="https://kubernetes-sigs.github.io/kustomize/releasing">release process documentation</a>.</p>
|
|
||||||
<p>The tl;dr is that the top level module
|
|
||||||
<code>sigs.k8s.io/kustomize</code> now defines the kustomize Go
|
|
||||||
API, and the <em>kustomize</em> CLI sits below it in an
|
|
||||||
independent module <code>sigs.k8s.io/kustomize/kustomize</code>.</p>
|
|
||||||
<p>The modules release independently, though in practice a
|
|
||||||
new release of the kustomize Go API will likely be
|
|
||||||
followed quickly by a new release of the <code>kustomize</code>
|
|
||||||
executable.</p>
|
|
||||||
<p>This is a necessary step to creating a much smaller
|
|
||||||
kustomize Go API surface that has some hope of
|
|
||||||
conforming to semantic versioning and being of some use
|
|
||||||
to clients.</p>
|
|
||||||
<p>The kustomize CLI will see the same kustomize Go API as
|
|
||||||
any other client.</p>
|
|
||||||
<p>The new semver-able API will begin with <code>v4.0.0</code> (not
|
|
||||||
yet released) and be a clean break with <code>v3</code> etc.</p>
|
|
||||||
<h3 id="change-log-since-v320">Change log since v3.2.0</h3>
|
|
||||||
<pre><code>3c9d828f - Have kustomize CLI depend on kustomize Go API v3.3.0 (Jeffrey Regan)
|
|
||||||
5d800f0b - Merge pull request #1595 from monopole/threeReleases (Jeff Regan)
|
|
||||||
4eb2d5bc - Three builders. (Jeffrey Regan)
|
|
||||||
988af1ff - Update README.md (Jeff Regan)
|
|
||||||
1617183e - Merge pull request #1590 from monopole/releaseProcessUpdate (Kubernetes Prow Robot)
|
|
||||||
ee727464 - update release process doc (jregan)
|
|
||||||
c9e7dc3b - Merge pull request #1589 from monopole/moreTestsAroundKustFileName (Jeff Regan)
|
|
||||||
07e0e46a - improve tests for alternative kustomization file names (Jeffrey Regan)
|
|
||||||
404d2d63 - Merge pull request #1587 from monopole/reducePgmconfig (Jeff Regan)
|
|
||||||
baa0296a - Reduce size of pgmconfig package (Jeffrey Regan)
|
|
||||||
0f665ac1 - Merge pull request #1544 from ptux/add-transformer-href (Jeff Regan)
|
|
||||||
14b0a650 - Merge pull request #1581 from monopole/refactorFs (Jeff Regan)
|
|
||||||
2d58f8b8 - Break the dep between fs and pgmconfig. (Jeffrey Regan)
|
|
||||||
9a43ca53 - Merge pull request #1578 from nlamirault/fix/build-plugins-doc (Jeff Regan)
|
|
||||||
5372fc6f - Merge pull request #1579 from monopole/fsPackageCleanup (Jeff Regan)
|
|
||||||
86bc3440 - Merge pull request #1513 from nimohunter/fix_empty_list_item (Kubernetes Prow Robot)
|
|
||||||
a014f7d4 - Merge pull request #1561 from beautytiger/dev-190925 (Jeff Regan)
|
|
||||||
9a94bcb8 - Improve fs package and doc in prep to officially go public (Jeffrey Regan)
|
|
||||||
07634ef0 - Merge pull request #1575 from monopole/versioning (Jeff Regan)
|
|
||||||
995f88d6 - Update versioning notes. (jregan)
|
|
||||||
334a6467 - Fix: documentation link for plugins (Nicolas Lamirault)
|
|
||||||
08963ba5 - improve test code coverage in transformers (Guangming Wang)
|
|
||||||
326fb689 - Merge pull request #1570 from bzub/1234-go_plugin_doc (Jeff Regan)
|
|
||||||
970ce67c - Update goPluginCaveats.md (Jeff Regan)
|
|
||||||
98d18930 - Update INSTALL.md (Jeff Regan)
|
|
||||||
d89b448c - Fix git tag recovery in cloud build. (Jeff Regan)
|
|
||||||
17bf9d32 - Update releasing README. (Jeff Regan)
|
|
||||||
a99aff1d - Merge pull request #1571 from monopole/updateCloudBuildProcess (Kubernetes Prow Robot)
|
|
||||||
a694ac7b - Update cloud build process for kustomize. (Jeffrey Regan)
|
|
||||||
b5b11ef6 - Fix compile kustomize example. (bzub)
|
|
||||||
fa1af6f5 - Merge pull request #1473 from richardmarshall/execpluginhash (Jeff Regan)
|
|
||||||
9288dec0 - Fix failing BashedConfigMapTest (Jeff Regan)
|
|
||||||
1a45dd0b - Merge pull request #1566 from monopole/releaseNotes3.2.1 (Kubernetes Prow Robot)
|
|
||||||
592c5acf - docs: Exec plugin generator options (Richard Marshall)
|
|
||||||
ac9424fa - tests: Add unit tests for update resource options (Richard Marshall)
|
|
||||||
79fbe7c4 - Support resource generator options in exec plugins (Richard Marshall)
|
|
||||||
f69d526f - v3.2.1 release notes (Jeff Regan)
|
|
||||||
07a95a60 - Merge pull request #1565 from monopole/tweakBinaryDepsBeforeTagging (Jeff Regan)
|
|
||||||
032b3857 - Pin the kustomize binary's dependence on kustomize libs. (jregan)
|
|
||||||
81062959 - Merge pull request #1564 from monopole/moveKustomizeBinaryToOwnModule (Kubernetes Prow Robot)
|
|
||||||
b82a8fd3 - Move the kustomize binary to its own module. (Jeffrey Regan)
|
|
||||||
2d0c22d6 - Merge pull request #1562 from keleustes/tools (Kubernetes Prow Robot)
|
|
||||||
aa342def - Pin tool versions using go modules (Ian Howell)
|
|
||||||
10786ec0 - Merge pull request #1554 from keleustes/readme (Kubernetes Prow Robot)
|
|
||||||
7c705687 - Update README.md to include Kubernetes 1.16 (Jerome Brette)
|
|
||||||
e8933d97 - Merge pull request #1560 from monopole/precommitTuneup (Jeff Regan)
|
|
||||||
9d7b6544 - Make pre-commit more portable and less tricky. (jregan)
|
|
||||||
7a0946a9 - Merge pull request #1558 from monopole/dependOnNewPluginatorModule (Jeff Regan)
|
|
||||||
def4f045 - Depend on new pluginator location. (Jeffrey Regan)
|
|
||||||
2f2408f1 - Merge pull request #1559 from monopole/compressCopyright (Jeff Regan)
|
|
||||||
3b9bcc48 - Compress copyright in the commands package. (Jeffrey Regan)
|
|
||||||
d0429ff4 - Merge pull request #1557 from monopole/pluginatorModule (Jeff Regan)
|
|
||||||
33deefc3 - Copy pluginator to its own module. (Jeffrey Regan)
|
|
||||||
9b3de82b - Merge pull request #1506 from Liujingfang1/release (Jeff Regan)
|
|
||||||
d217074f - Merge pull request #1550 from keleustes/apiversion (Kubernetes Prow Robot)
|
|
||||||
1d90ba7c - Fix typo in apiVersion yaml declaration (Jerome Brette)
|
|
||||||
eeeb4c36 - Merge pull request #1547 from keleustes/extensions (Kubernetes Prow Robot)
|
|
||||||
b1faa989 - Update Ingress apiVersion to networking.k8s.io/v1beta1 (Jerome Brette)
|
|
||||||
d8250c9e - move test case (nimohunter)
|
|
||||||
c9500466 - add transformer href (Wang(わん))
|
|
||||||
0c32691e - Merge pull request #1537 from jaypipes/gomod-install-note (Kubernetes Prow Robot)
|
|
||||||
88b1d627 - Merge pull request #1541 from rtnpro/patch-1 (Jeff Regan)
|
|
||||||
aec82066 - Update INSTALL.md (Jeff Regan)
|
|
||||||
20c2b53a - Merge pull request #1542 from monopole/tweakFilePathsInTest (Jeff Regan)
|
|
||||||
274b5c3b - Tweak file path handling and logging in test. (Jeffrey Regan)
|
|
||||||
b1fdaa23 - Fix typo in transformerconfigs README (Ratnadeep Debnath)
|
|
||||||
b5d5e70b - empty list or map item return error (nimohunter)
|
|
||||||
2e829853 - empty list or map item return error (nimohunter)
|
|
||||||
55941f57 - add note about GO111MODULE for source install (Jay Pipes)
|
|
||||||
9e226001 - empty list or map item return error (nimohunter)
|
|
||||||
77b63f96 - add release note for v3.2.0 (jingfangliu)
|
|
||||||
</code></pre>
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Blog: v3.2.1</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/blog/2019/09/26/v3.2.1/</link>
|
|
||||||
<pubDate>Thu, 26 Sep 2019 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/blog/2019/09/26/v3.2.1/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<p>This is a patch release, with no new features from 3.2.0.</p>
|
|
||||||
<p>It reflects a change in dependence.</p>
|
|
||||||
<p>The kustomize binary is now built as a client, with no special
|
|
||||||
consideration, of the set of public packages represented by the Go
|
|
||||||
module at [https://github.com/kubernetes-sigs/kustomize].</p>
|
|
||||||
<p>kustomize the binary is now a client of the kustomize API
|
|
||||||
represented by the public package surface presented by
|
|
||||||
<code>https://github.com/kubernetes-sigs/kustomize/v{whatever}</code></p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Blog: v3.2.0</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/blog/2019/09/17/v3.2.0/</link>
|
|
||||||
<pubDate>Tue, 17 Sep 2019 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/blog/2019/09/17/v3.2.0/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<h2 id="inline-patch">Inline Patch</h2>
|
|
||||||
<p>Since this version, Kustomize allows inline patches in all three of <code>patchesStrategicMerge</code>, <code>patchesJson6902</code> and <code>patches</code>. Take a look at <a href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples/examples/inlinePatch.md">inline patch</a>.</p>
|
|
||||||
<h2 id="new-subcommand">New Subcommand</h2>
|
|
||||||
<p>Since this version, one can create a kustomization.yaml file in a directory through a <code>create</code> subcommand.</p>
|
|
||||||
<p>Create a new overlay from the base ../base</p>
|
|
||||||
<pre><code>kustomize create --resources ../base
|
|
||||||
</code></pre><p>Create a new kustomization detecing resources in the current directory</p>
|
|
||||||
<pre><code>kustomize create --autodetect
|
|
||||||
</code></pre><p>Once can also add all resources in the current directory recursively by</p>
|
|
||||||
<pre><code>kustomize create --autodetect --recursive
|
|
||||||
</code></pre><h3 id="new-example-generator">New Example Generator</h3>
|
|
||||||
<p>A new example generator of using go-getter to download resources is added. Take a look at <a href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples/goGetterGeneratorPlugin.md">go-getter generator</a>.</p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Blog: v3.1.0</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/blog/2019/07/26/v3.1.0/</link>
|
|
||||||
<pubDate>Fri, 26 Jul 2019 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/blog/2019/07/26/v3.1.0/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<h2 id="extended-patches">Extended patches</h2>
|
|
||||||
<p>Since this version, Kustomize allows applying one patch to multiple resources. This works for both Strategic Merge Patch and JSON Patch. Take a look at <a href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples/patchMultipleObjects.md">patch multiple objects</a>.</p>
|
|
||||||
<h2 id="improved-resource-matching">Improved Resource Matching</h2>
|
|
||||||
<p>Multiple improvements have been made to allow the user to leverage &ldquo;namespace&rdquo;
|
|
||||||
instead/or with &ldquo;name suffix/prefix&rdquo; to segregate resources.</p>
|
|
||||||
<h3 id="patch-resolution-improvement">Patch resolution improvement</h3>
|
|
||||||
<p>The following example demonstrates how using the namespace field in the patch definition,
|
|
||||||
will let the user define two different patches against two different Deployment having the
|
|
||||||
same &ldquo;deploy1&rdquo; name but in different namespaces in the same Kustomize context/folder.
|
|
||||||
Unless the <code>namespace:</code> field has been specified in the kustomization.yaml, no namespace
|
|
||||||
value will be handled as Kubernetes <code>default</code> namespace.</p>
|
|
||||||
<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-yaml" data-lang="yaml"><span style="color:#204a87;font-weight:bold">apiVersion</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>apps/v1<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">kind</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>Deployment<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">metadata</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>deploy1<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">namespace</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>main<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">spec</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">template</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">spec</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">containers</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span>- <span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>nginx<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">env</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span>- <span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>ANOTHERENV<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">value</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>TESTVALUE<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span>---<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">apiVersion</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>apps/v1<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">kind</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>Deployment<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">metadata</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>deploy1<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">namespace</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>production<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">spec</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">template</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">spec</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">containers</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span>- <span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>main<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">env</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span>- <span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>ANOTHERENV<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">value</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>PRODVALUE<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span></code></pre></div><h3 id="variable-resolution-improvement">Variable resolution improvement</h3>
|
|
||||||
<p>It is possible to add namespace field to the variable declaration. In the following example,
|
|
||||||
two <code>Service</code> objects with the same <code>elasticsearch</code> name have been declared.
|
|
||||||
Specifying the namespace in the objRef of the corresponding varriables, allows Kustomize to
|
|
||||||
resovlve thoses variables.
|
|
||||||
If the namespace is not specified, Kustomize will handle it has a &ldquo;wildcard&rdquo; value.</p>
|
|
||||||
<p>Extract of kustomization.yaml:</p>
|
|
||||||
<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-yaml" data-lang="yaml"><span style="color:#204a87;font-weight:bold">vars</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span>- <span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>elasticsearch-test-protocol<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">objref</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">kind</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>Service<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>elasticsearch<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">namespace</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>test<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">apiVersion</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>v1<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">fieldref</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">fieldpath</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>spec.ports<span style="color:#000;font-weight:bold">[</span><span style="color:#0000cf;font-weight:bold">0</span><span style="color:#000;font-weight:bold">]</span>.protocol<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span>- <span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>elasticsearch-dev-protocol<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">objref</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">kind</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>Service<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">name</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>elasticsearch<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">namespace</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>dev<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">apiVersion</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>v1<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">fieldref</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"> </span><span style="color:#204a87;font-weight:bold">fieldpath</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>spec.ports<span style="color:#000;font-weight:bold">[</span><span style="color:#0000cf;font-weight:bold">0</span><span style="color:#000;font-weight:bold">]</span>.protocol<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span></code></pre></div><h3 id="simultaneous-change-of-names-and-namespaces">Simultaneous change of names and namespaces</h3>
|
|
||||||
<p>Kustomize is now able to deal with simultaneous changes of name and namespace.
|
|
||||||
Special attention has been paid the handling of:</p>
|
|
||||||
<ul>
|
|
||||||
<li>ClusterRoleBinding/RoleBinding &ldquo;subjects&rdquo; field,</li>
|
|
||||||
<li>ValidatingWebhookConfiguration &ldquo;webhooks&rdquo; field.</li>
|
|
||||||
</ul>
|
|
||||||
<p>The user should be able to use a kustomization.yaml as shown in the example bellow
|
|
||||||
even if ClusterRoleBind,RoleBinding and ValidatingWebookConfiguration are part of the
|
|
||||||
resources he needs to declare.</p>
|
|
||||||
<p>Extract of kustomization.yaml:</p>
|
|
||||||
<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-yaml" data-lang="yaml"><span style="color:#204a87;font-weight:bold">namePrefix</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>pfx-<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">nameSuffix</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>-sfx<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">namespace</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline"> </span>testnamespace<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span><span style="color:#204a87;font-weight:bold">resources</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span>...<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span></code></pre></div><h3 id="resource-and-kustomize-context-matching">Resource and Kustomize Context matching</h3>
|
|
||||||
<p>Kustomize is now able to support more aggregation patterns.</p>
|
|
||||||
<p>If for instance, the top level of kustomization.yaml, is simply
|
|
||||||
combining sub-components, (as in the following example), Kustomize has improved
|
|
||||||
resource matching capabilities. This removes some of the constraints which were
|
|
||||||
present on the utilization of prefix/suffix and namespace transformers in the
|
|
||||||
individual components.</p>
|
|
||||||
<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-yaml" data-lang="yaml"><span style="color:#204a87;font-weight:bold">resources</span><span style="color:#000;font-weight:bold">:</span><span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span>- ../component1<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span>- ../component2<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span><span style="color:#f8f8f8;text-decoration:underline"></span>- ../component3<span style="color:#f8f8f8;text-decoration:underline">
|
|
||||||
</span></code></pre></div><h2 id="other-improvements">Other improvements</h2>
|
|
||||||
<ul>
|
|
||||||
<li>Image transformation has been improved. This allows the user to update the sha256 of
|
|
||||||
an image with another sha256.</li>
|
|
||||||
<li>Multiple default transformer configuration entries have been added, removing the need for the
|
|
||||||
user to add them as part of the <code>configurations:</code> section of the kustomization.yaml.</li>
|
|
||||||
<li><code>kustomize</code> help command has been tidied up.</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Blog: v3.0.0</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/blog/2019/07/03/v3.0.0/</link>
|
|
||||||
<pubDate>Wed, 03 Jul 2019 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/blog/2019/07/03/v3.0.0/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<p>This release is basically <a href="v2.1.0.md">v2.1.0</a>,
|
|
||||||
with many post-v2.1.0 bugs fixed (in about 150
|
|
||||||
commits) and a <code>v3</code> in Go package paths.</p>
|
|
||||||
<p>The major version increment to <code>v3</code> puts a new
|
|
||||||
floor on a stable API for <a href="https://kubernetes-sigs.github.io/kustomize/docs/plugins">plugin</a> developers
|
|
||||||
(both <em>Go</em> plugin developers and <em>exec</em> plugin
|
|
||||||
developers who happen to use Go).</p>
|
|
||||||
<h3 id="why-so-soon-after-v210">Why so soon after v2.1.0</h3>
|
|
||||||
<p>We made a mistake - v2.1.0 should have been
|
|
||||||
v3.0.0. Per the <a href="https://github.com/golang/go/wiki/Modules#releasing-modules-v2-or-higher">Go modules doc</a> (which have
|
|
||||||
improved a great deal recently), a release that&rsquo;s
|
|
||||||
already tagged v2 or higher should increment the
|
|
||||||
major version when performing their first Go
|
|
||||||
module-based release.</p>
|
|
||||||
<p>This advice applies to kustomize, since it was
|
|
||||||
already at major version 2 when it began using Go
|
|
||||||
modules to state <em>its own</em> dependencies in v2.1.0.</p>
|
|
||||||
<p>But the more important reason for <code>v3</code> is a change
|
|
||||||
to the kustomize <a href="https://kubernetes-sigs.github.io/kustomize/kustomize/faq/versioningpolicy">versioning policy</a>, forced by
|
|
||||||
the introduction of plugins.</p>
|
|
||||||
<p>Historically, kustomize&rsquo;s <a href="https://kubernetes-sigs.github.io/kustomize/kustomize/faq/versioningpolicy">versioning policy</a>
|
|
||||||
didn&rsquo;t involve Go modules and addressed <em>only</em> the
|
|
||||||
command line tool&rsquo;s behavior and the fields in a
|
|
||||||
kustomization file. The underlying packages were
|
|
||||||
an implementation detail, not under semantic
|
|
||||||
versioning, because they weren&rsquo;t intended for
|
|
||||||
export (and should have all been under
|
|
||||||
<code>internal</code>). Thus although the v2.1.0 CLI is
|
|
||||||
backward compatible with v2.0.3, the underlying
|
|
||||||
package APIs are not.</p>
|
|
||||||
<p>With Go modules, the <code>go</code> tool must assume that Go
|
|
||||||
packages respect <a href="https://semver.org">semantic versioning</a>, so it can
|
|
||||||
perform <a href="https://research.swtch.com/vgo-mvs">minimal version selection</a>.</p>
|
|
||||||
<p>With the introduction of alpha plugins, kustomize
|
|
||||||
sub-packages - in particular <code>loader</code> and
|
|
||||||
<code>resmap</code> - become part of an API formally exposed
|
|
||||||
to plugin authors, and so must be semantically
|
|
||||||
versioned. This allows plugins defined in other
|
|
||||||
repositories to clarify that they depend on
|
|
||||||
kustomize v3.0.0, and not see confusing errors
|
|
||||||
arising from incompatibilities between v2.1.0 and
|
|
||||||
v2.0.3. Hence, the jump to v3.</p>
|
|
||||||
<p>Aside - the set of kustomize packages outside
|
|
||||||
<code>internal</code> is too large, and over time, informed
|
|
||||||
by package use, this API surface must shrink.
|
|
||||||
Such shrinkage will trigger a major version
|
|
||||||
increment.</p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Blog: v2.1.0</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/blog/2019/06/18/v2.1.0/</link>
|
|
||||||
<pubDate>Tue, 18 Jun 2019 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/blog/2019/06/18/v2.1.0/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<p>Go modules, resource ordering respected, generator and transformer plugins, eased
|
|
||||||
loading restrictions, the notion of inventory, eased replica count modification.
|
|
||||||
About ~90 issues closed since <a href="https://github.com/kubernetes-sigs/kustomize/releases/tag/v1.0.9releases/tag/v2.0.3">v2.0.3</a> in ~400 commits.</p>
|
|
||||||
<p>Download <a href="https://github.com/kubernetes-sigs/kustomize/releases/tag/v1.0.9releases/tag/v2.1.0">here</a>.</p>
|
|
||||||
<h2 id="go-modules">Go modules</h2>
|
|
||||||
<p><img src="https://kubernetes-sigs.github.io/kustomize/kustomize/images/goModules.png" alt="gopher with boxes"></p>
|
|
||||||
<p>Kustomize now defines its dependencies in a top
|
|
||||||
level <code>go.mod</code> file. This is the first step
|
|
||||||
towards a package structure intentially exported
|
|
||||||
as one or more <a href="https://github.com/golang/go/wiki/Modules">Go modules</a> for use in other
|
|
||||||
programs (kubectl, kubebuilder, etc.) and in
|
|
||||||
kustomize plugins (see below).</p>
|
|
||||||
<h2 id="resource-ordering">Resource ordering</h2>
|
|
||||||
<p><img src="https://kubernetes-sigs.github.io/kustomize/kustomize/images/sorted.png" alt="sort order retained"></p>
|
|
||||||
<p>Kustomize now retains the depth-first order of
|
|
||||||
resources as read, a frequently requested
|
|
||||||
feature.</p>
|
|
||||||
<p>This means resource order can be controlled
|
|
||||||
by editting kustomization files. This is
|
|
||||||
also vital to applying user-defined
|
|
||||||
transformations (plugins) in a particular
|
|
||||||
order.</p>
|
|
||||||
<p>Nothing needs to be done to activate this;
|
|
||||||
it happens automatically.</p>
|
|
||||||
<p>The <code>build</code> command now accepts a <code>--reorder</code>
|
|
||||||
flag with values <code>legacy</code> and <code>none</code>,
|
|
||||||
with a default value of <code>legacy</code>.</p>
|
|
||||||
<p><code>legacy</code> means apply an ordering based on
|
|
||||||
GVK, that currently emits <code>Namespace</code> objects
|
|
||||||
first, and <code>ValidatingWebhookConfiguration</code>
|
|
||||||
objects last. This means that despite
|
|
||||||
automatic retention of load order, your
|
|
||||||
<code>build</code> output won&rsquo;t change by default.</p>
|
|
||||||
<p><code>none</code> means <em>don&rsquo;t</em> reorder the resources before
|
|
||||||
output. Specify this to see output order
|
|
||||||
respect input order.</p>
|
|
||||||
<h2 id="generator-and-transformer-plugins">Generator and transformer plugins</h2>
|
|
||||||
<p><img src="https://kubernetes-sigs.github.io/kustomize/kustomize/images/plugins.png" alt="kid putting knife in electrical outlet"></p>
|
|
||||||
<p>Since the beginning (as <code>kinflate</code> back in Sep
|
|
||||||
2017), kustomize has read or generated resources,
|
|
||||||
applied a series of pipelined transformation to
|
|
||||||
them, and emitted the result to <code>stdout</code>.</p>
|
|
||||||
<p>At that time, the only way to change the behavior
|
|
||||||
of a generator (e.g. a secret generator), or
|
|
||||||
change the behavior of a transformer (e.g. a name
|
|
||||||
changer, or json patcher), was to modify source
|
|
||||||
code and put out a release.</p>
|
|
||||||
<p><a href="https://github.com/kubernetes-sigs/kustomize/releases/tag/v1.0.9">v1.0.9</a> introduced <a href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples/generatorOptions.md">generator options</a> as a means
|
|
||||||
to change the behavior of the only two generators
|
|
||||||
available at the time - Secret and ConfigMap
|
|
||||||
generators. It also introduced
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/tree/master/examples/transformerconfigs">transformer configs</a> as a way to fine tune the
|
|
||||||
targets of transformations (e.g. to which fields
|
|
||||||
<em>selectors</em> should be added). Most of the feature
|
|
||||||
requests for kustomize revolve around changing the
|
|
||||||
behavior of the builtin generators and
|
|
||||||
transformers.</p>
|
|
||||||
<p><a href="https://github.com/kubernetes-sigs/kustomize/releases/tag/v1.0.9releases/tag/v2.1.0">v2.1.0</a> adds an <em>alpha</em> plugin framework, that
|
|
||||||
encourages users to write their own generators or
|
|
||||||
transformers, <em>declaring them as kubernetes
|
|
||||||
objects just like everything else</em>, and apply them
|
|
||||||
as part of the <code>kustomize build</code> process.</p>
|
|
||||||
<p>To inform the API exposed to plugins, and to
|
|
||||||
confirm that the plugin framework can offer plugin
|
|
||||||
authors the same capabilities as builtin
|
|
||||||
operations, all the builtin generators and
|
|
||||||
tranformers have been converted to plugin form
|
|
||||||
(with one exceptions awaiting Go module
|
|
||||||
refinements). This means that adding, say, a
|
|
||||||
<code>secretGenerator</code> or <code>commonAnnotations</code> directive
|
|
||||||
to your kustomization will (in <a href="https://github.com/kubernetes-sigs/kustomize/releases/tag/v1.0.9releases/tag/v2.1.0">v2.1.0</a>) trigger
|
|
||||||
execution of
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/tree/master/plugin/builtin">code committed as a plugin</a>.</p>
|
|
||||||
<p>For more information, see the
|
|
||||||
<a href="plugins">kustomize plugin documentation</a>.</p>
|
|
||||||
<h2 id="remove-load-restrictions">Remove load restrictions</h2>
|
|
||||||
<p><img src="https://kubernetes-sigs.github.io/kustomize/kustomize/images/abandonedTrainingWheels.png" alt="removed training wheels"></p>
|
|
||||||
<p>The following usage:</p>
|
|
||||||
<pre><code>kustomize build --load_restrictor none $target
|
|
||||||
</code></pre><p>allows a <code>kustomization.yaml</code> file used in this
|
|
||||||
build to refer to files outside its own directory
|
|
||||||
(i.e. outside its <a href="https://kubernetes-sigs.github.io/kustomize/kustomize/api-reference/glossary#kustomization-root">root</a>).</p>
|
|
||||||
<p>This is an opt-in to suppress a security feature
|
|
||||||
that denies this precise behavior.</p>
|
|
||||||
<p>This feature should only be used to allow multiple
|
|
||||||
overlays (e.g. prod, staging and dev) to share a
|
|
||||||
patch file. To share <em>resources</em>, use a relative
|
|
||||||
path or URL to a kustomization directory in the
|
|
||||||
<code>resources</code> directive.</p>
|
|
||||||
<h2 id="inventory-generation-for-pruning">Inventory generation for pruning</h2>
|
|
||||||
<p><img src="https://kubernetes-sigs.github.io/kustomize/kustomize/images/pruning.png" alt="pruning dead branches"></p>
|
|
||||||
<p><em>Alpha</em></p>
|
|
||||||
<p>Users can add an <code>inventory</code> stanza to their
|
|
||||||
kustomization file, to add a special <em>inventory
|
|
||||||
object</em> to the <code>build</code> result.</p>
|
|
||||||
<p>This object applies to the cluster along with
|
|
||||||
everything else in the build result and can be
|
|
||||||
used by other clients to intelligently <em>prune</em>
|
|
||||||
orphaned cluster resources.</p>
|
|
||||||
<p>For more information see the
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/tree/master/docs/inventory_object.md">kustomize inventory object documentation</a>.</p>
|
|
||||||
<h2 id="field-changes--deprecations">Field changes / deprecations</h2>
|
|
||||||
<h3 id="resources-expanded-bases-deprecated"><code>resources</code> expanded, <code>bases</code> deprecated</h3>
|
|
||||||
<p>The <code>resources</code> field has been generalized; it now
|
|
||||||
accepts what formerly could only be specified in
|
|
||||||
the <code>bases</code> field.</p>
|
|
||||||
<p>This change was made to allow users fine control
|
|
||||||
over resource processing order. With a distinct
|
|
||||||
<code>bases</code> field, bases had to be loaded separately
|
|
||||||
from resources as a group. Now, base loading may
|
|
||||||
be interleaved as desired with the loading of
|
|
||||||
resource files from the current
|
|
||||||
directory. <a href="#resource-ordering">Resource ordering</a>
|
|
||||||
had to be respected before this feature could be
|
|
||||||
introduced.</p>
|
|
||||||
<p>The <code>bases</code> field is now deprecated, and will be
|
|
||||||
deleted in some future major release. Manage the
|
|
||||||
deprecation simply moving the arguments of the
|
|
||||||
<code>bases</code> field to the <code>resources</code> field in the
|
|
||||||
desired order, e.g.</p>
|
|
||||||
<blockquote>
|
|
||||||
<pre><code>resources:
|
|
||||||
- someResouceFile.yaml
|
|
||||||
- someOtherResourceFile.yaml
|
|
||||||
bases:
|
|
||||||
- ../../someBaseDir
|
|
||||||
</code></pre></blockquote>
|
|
||||||
<p>could become</p>
|
|
||||||
<blockquote>
|
|
||||||
<pre><code>resources:
|
|
||||||
- someResouceFile.yaml
|
|
||||||
- ../../someBaseDir
|
|
||||||
- someOtherResourceFile.yaml
|
|
||||||
</code></pre></blockquote>
|
|
||||||
<p>The <code>kustomized edit fix</code> command will do this for
|
|
||||||
you, though it will always put the bases at the
|
|
||||||
end.</p>
|
|
||||||
<p>As an aside, the <code>resources</code>, <code>generators</code> and
|
|
||||||
<code>transformers</code> fields now all accept the same
|
|
||||||
argument format.</p>
|
|
||||||
<blockquote>
|
|
||||||
<p>Each field&rsquo;s argument is a <em>string list</em>,
|
|
||||||
where each entry is either a <em>resource</em> (a
|
|
||||||
relative path to a YAML file) or a
|
|
||||||
<a href="https://kubernetes-sigs.github.io/kustomize/kustomize/api-reference/glossary#kustomization"><em>kustomization</em></a> (a path or URL
|
|
||||||
pointing to a directory with a kustomization
|
|
||||||
file). A kustomization directory used in this
|
|
||||||
context is called a <a href="https://kubernetes-sigs.github.io/kustomize/kustomize/api-reference/glossary#base"><em>base</em></a>.</p>
|
|
||||||
</blockquote>
|
|
||||||
<p>The fact that the <code>generators</code> and <code>transformers</code>
|
|
||||||
field accept <a href="https://kubernetes-sigs.github.io/kustomize/kustomize/api-reference/glossary#base">bases</a> and the fact that generator
|
|
||||||
and transformer configuration objects are just
|
|
||||||
normal k8s resources means that one can generate
|
|
||||||
or transform a generator or a transformer (see
|
|
||||||
<a href="https://github.com/kubernetes-sigs/kustomize/tree/master/api/internal/target/transformerplugin_test.go">TestTransformerTransformers</a>).</p>
|
|
||||||
<h3 id="replicas-field"><code>replicas</code> field</h3>
|
|
||||||
<p>The common task of patching a deployment to edit
|
|
||||||
the number of replicas is now made easier
|
|
||||||
with the new <a href="https://kubernetes-sigs.github.io/kustomize/kustomize/api-reference/kustomization/replicas">replicas</a> field.</p>
|
|
||||||
<h3 id="envs-field"><code>envs</code> field</h3>
|
|
||||||
<p>An <code>envs</code> sub-field has been added to both
|
|
||||||
<code>configMapGenerator</code> and <code>secretGenerator</code>,
|
|
||||||
replacing the now deprecated (and singular)
|
|
||||||
<code>env</code> field. The new field accepts lists, just
|
|
||||||
like its sibling fields <code>files</code> and <code>literals</code>.</p>
|
|
||||||
<p>Optionally use <code>kustomize edit fix</code> to merge
|
|
||||||
singular <code>env</code> field into a plural field.</p>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Blog: v2.0.0</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/blog/2019/02/05/v2.0.0/</link>
|
|
||||||
<pubDate>Tue, 05 Feb 2019 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/blog/2019/02/05/v2.0.0/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<p>After security review, a field used in secret
|
|
||||||
generation (see below) was removed from the
|
|
||||||
definition of a kustomization file with no
|
|
||||||
mechanism to convert it to a new form. Also, the
|
|
||||||
set of files accessible from a kustomization file
|
|
||||||
has been further constrained.</p>
|
|
||||||
<p>Per the <a href="https://kubernetes-sigs.github.io/kustomize/kustomize/faq/versioningpolicy">versioning policy</a>,
|
|
||||||
backward incompatible changes trigger an increment
|
|
||||||
of the major version number, hence we go
|
|
||||||
from 1.0.11 to 2.0.0. We&rsquo;re taking this major
|
|
||||||
version increment opportunity to remove some
|
|
||||||
already deprecated fields, and the code paths
|
|
||||||
associated with them.</p>
|
|
||||||
<h2 id="backward-incompatible-changes">Backward Incompatible Changes</h2>
|
|
||||||
<h3 id="kustomization-path-constraints">Kustomization Path Constraints</h3>
|
|
||||||
<p>A kustomization file can specify paths to other
|
|
||||||
files, including resources, patches, configmap
|
|
||||||
generation data, secret generation data and
|
|
||||||
bases. In the case of a base, the path can be a
|
|
||||||
git URL instead.</p>
|
|
||||||
<p>In 1.x, these paths had to be relative to the
|
|
||||||
current kustomization directory (the location of
|
|
||||||
the kustomization file used in the <code>build</code>
|
|
||||||
command).</p>
|
|
||||||
<p>In 2.0, bases can continue to specify, via
|
|
||||||
relative paths, kustomizations outside the current
|
|
||||||
kustomization directory. But non-base paths are
|
|
||||||
constrained to terminate in or below the current
|
|
||||||
kustomization directory. Further, bases specified
|
|
||||||
via a git URL may not reference files outside of
|
|
||||||
the directory used to clone the repository.</p>
|
|
||||||
<h3 id="kustomization-field-removals">Kustomization Field Removals</h3>
|
|
||||||
<h4 id="patches">patches</h4>
|
|
||||||
<p><code>patches</code> was deprecated and replaced by
|
|
||||||
<code>patchesStrategicMerge</code> when <code>patchesJson6902</code> was
|
|
||||||
introduced. In Kustomize 2.0.0, <code>patches</code> is
|
|
||||||
removed. Please use <code>patchesStrategicMerge</code>
|
|
||||||
instead.</p>
|
|
||||||
<h4 id="imagetags">imageTags</h4>
|
|
||||||
<p><code>imageTags</code> is replaced by <code>images</code> since <code>images</code>
|
|
||||||
can provide more features to change image names,
|
|
||||||
registries, tags and digests.</p>
|
|
||||||
<h4 id="secretgeneratorcommands">secretGenerator/commands</h4>
|
|
||||||
<p><code>commands</code> is removed from SecretGenerator due to
|
|
||||||
a <a href="https://docs.google.com/document/d/1FYgLVdq-siB_Cef9yuQBmit0PbrE8lsyTBdGI2eA2y8/edit">security concern</a>. One can use <code>files</code> or
|
|
||||||
<code>literals</code>, similar to ConfigMapGenerator, to
|
|
||||||
generate a secret.</p>
|
|
||||||
<pre><code>secretGenerator:
|
|
||||||
- name: app-tls
|
|
||||||
files:
|
|
||||||
- secret/tls.cert
|
|
||||||
- secret/tls.key
|
|
||||||
type: &quot;kubernetes.io/tls&quot;
|
|
||||||
</code></pre><h2 id="compatible-changes-new-features">Compatible Changes (New Features)</h2>
|
|
||||||
<p>As this release is triggered by a security change,
|
|
||||||
there are no major new features to announce. A few
|
|
||||||
things that are worth mentioning in this release
|
|
||||||
are:</p>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<p>More than <em>40</em> issues closed since 1.0.11
|
|
||||||
release (including many extensions to
|
|
||||||
transformation rules).</p>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<p>Users can run <code>kustomize edit fix</code> to migrate a
|
|
||||||
kustomization file working with previous
|
|
||||||
versions to one working with 2.0.0. For example,
|
|
||||||
a kustomization.yaml with following content</p>
|
|
||||||
<pre><code>patches:
|
|
||||||
- deployment-patch.yaml
|
|
||||||
imageTags:
|
|
||||||
- name: postgres
|
|
||||||
newTag: v1
|
|
||||||
</code></pre><p>will be converted to</p>
|
|
||||||
<pre><code>apiVersion: kustomize.config.k8s.io/v1beta1
|
|
||||||
kind: Kustomization
|
|
||||||
patchesStrategicMerge:
|
|
||||||
- deployment-patch.yaml
|
|
||||||
images:
|
|
||||||
- name: postgres
|
|
||||||
newTag: v1
|
|
||||||
</code></pre></li>
|
|
||||||
<li>
|
|
||||||
<p>Kustomization filename</p>
|
|
||||||
<p>In previous versions, the name of a
|
|
||||||
kustomization file had to be
|
|
||||||
<code>kustomization.yaml</code>.
|
|
||||||
Kustomize allows <code>kustomization.yaml</code>,
|
|
||||||
<code>kustomization.yml</code> and
|
|
||||||
<code>Kustomization</code>. In a directory, only one of
|
|
||||||
those filenames is allowed. If there are more
|
|
||||||
than one found, Kustomize will exit with an
|
|
||||||
error. Please select the best filename for your
|
|
||||||
use cases.</p>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<p>Cancelled plans to deprecate applying prefix/suffix to namespace.
|
|
||||||
The deprecation warning</p>
|
|
||||||
<pre><code>Adding nameprefix and namesuffix to Namespace resource will be deprecated in next release.
|
|
||||||
</code></pre><p>was removed.</p>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Blog: v1.0.1</title>
|
|
||||||
<link>https://kubernetes-sigs.github.io/kustomize/blog/2018/05/21/v1.0.1/</link>
|
|
||||||
<pubDate>Mon, 21 May 2018 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://kubernetes-sigs.github.io/kustomize/blog/2018/05/21/v1.0.1/</guid>
|
|
||||||
<description>
|
|
||||||
|
|
||||||
|
|
||||||
<p>Initial release after move from github.com/kubernetes/kubectl to github.com/kubernetes-sigs/kustomize.</p>
|
|
||||||
<p>History</p>
|
|
||||||
<ul>
|
|
||||||
<li>May 2018: v1.0 after move to github.com/kubernetes-sigs/kubectl
|
|
||||||
from github.com/kubernetes/kubectl.
|
|
||||||
Has kustomization file, bases, overlays, basic transforms.</li>
|
|
||||||
<li>Apr 2018: s/kinflate/kustomize/, s/manifest/kustomization/</li>
|
|
||||||
<li>Oct 2017: s/kexpand/kinflate/</li>
|
|
||||||
<li>Sep 2017: kexpand <a href="https://github.com/kubernetes/kubectl/pull/65">starts</a>
|
|
||||||
in github.com/kubernetes/kubectl</li>
|
|
||||||
<li>Aug 2017: <a href="https://docs.google.com/document/d/1cLPGweVEYrVqQvBLJg6sxV-TrE5Rm2MNOBA_cxZP2WU">DAM</a> authored by Brian Grant</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user