Merge pull request #41590 from Arhell/zh-update

[zh] Update kustomize examples to use non-deprecated resources key
pull/41609/head
Kubernetes Prow Robot 2023-06-11 16:49:47 -07:00 committed by GitHub
commit 3746cedbc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1092,14 +1092,14 @@ in different overlays. Here are two overlays using the same base.
```shell
mkdir dev
cat <<EOF > dev/kustomization.yaml
bases:
resources:
- ../base
namePrefix: dev-
EOF
mkdir prod
cat <<EOF > prod/kustomization.yaml
bases:
resources:
- ../base
namePrefix: prod-
EOF