Merge pull request #26041 from tengqm/zh-kustomization

[zh] Fix typo in kustomization example
This commit is contained in:
Kubernetes Prow Robot 2021-01-15 22:01:43 -08:00 committed by GitHub
commit 43e0326ab3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 4 deletions

View File

@ -518,8 +518,8 @@ spec:
containers:
- name: my-nginx
resources:
limits:
memory: 512Mi
limits:
memory: 512Mi
EOF
cat <<EOF >./kustomization.yaml
@ -553,11 +553,12 @@ spec:
spec:
containers:
- image: nginx
limits:
memory: 512Mi
name: my-nginx
ports:
- containerPort: 80
resources:
limits:
memory: 512Mi
```
<!--