k8s-tutorials-stateful-application (#5112)

* k8s-tutorials-stateful-application

* change author and email to pass CLA
This commit is contained in:
打雷不怕
2017-09-03 07:04:43 +08:00
committed by Andrew Chen
parent cc8d5283b4
commit 593dc8cca1
15 changed files with 3981 additions and 0 deletions
@@ -0,0 +1,27 @@
apiVersion: v1
kind: PersistentVolume
metadata:
name: local-pv-1
labels:
type: local
spec:
capacity:
storage: 20Gi
accessModes:
- ReadWriteOnce
hostPath:
path: /tmp/data/pv-1
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: local-pv-2
labels:
type: local
spec:
capacity:
storage: 20Gi
accessModes:
- ReadWriteOnce
hostPath:
path: /tmp/data/pv-2