[zh] Translate projected volume page

This commit is contained in:
Qiming Teng
2022-01-03 18:59:25 +08:00
parent b6f0d8ffbc
commit b6ceda82c9
4 changed files with 309 additions and 0 deletions
@@ -0,0 +1,27 @@
apiVersion: v1
kind: Pod
metadata:
name: volume-test
spec:
containers:
- name: container-test
image: busybox
volumeMounts:
- name: all-in-one
mountPath: "/projected-volume"
readOnly: true
volumes:
- name: all-in-one
projected:
sources:
- secret:
name: mysecret
items:
- key: username
path: my-group/my-username
- secret:
name: mysecret2
items:
- key: password
path: my-group/my-password
mode: 511