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
21 lines
394 B
YAML
21 lines
394 B
YAML
kind: Pod
|
|
apiVersion: v1
|
|
metadata:
|
|
name: task-pv-pod
|
|
spec:
|
|
volumes:
|
|
- name: task-pv-storage
|
|
persistentVolumeClaim:
|
|
claimName: task-pv-claim
|
|
containers:
|
|
- name: task-pv-container
|
|
image: nginx
|
|
ports:
|
|
- containerPort: 80
|
|
name: "http-server"
|
|
volumeMounts:
|
|
- mountPath: "/usr/share/nginx/html"
|
|
name: task-pv-storage
|
|
|
|
|