c87a30450a
1. Confirm the document content is similar as en version.
2. Merge the zh release-1.14 version into 1.15 version
3. add the 1.14 all sample into 1.15 for template work. The build looks fine.
- docs
- concepts
- architecture
24 lines
407 B
YAML
24 lines
407 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: test-projected-volume
|
|
spec:
|
|
containers:
|
|
- name: test-projected-volume
|
|
image: busybox
|
|
args:
|
|
- sleep
|
|
- "86400"
|
|
volumeMounts:
|
|
- name: all-in-one
|
|
mountPath: "/projected-volume"
|
|
readOnly: true
|
|
volumes:
|
|
- name: all-in-one
|
|
projected:
|
|
sources:
|
|
- secret:
|
|
name: user
|
|
- secret:
|
|
name: pass
|