Kubernetes Volumes
92 words
One minute
Volumes & Mounts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| apiVersion: v1
kind: Pod
metadata:
name: random-number-generator
spec:
containers:
- image: alpine
name: alpine
command: [ "/bin/sh", "-c" ]
args: [ "shuf -i 0-100 -n 1 >> /opt/number.out;" ]
volumeMounts:
- mountPath: /opt
name: data-volume
volumes:
- name: data-volume
hostPath:
path: /data
type: Directory
|
Volume Types
- NFS
- GlusterFS
- Flocker
- ceph
- SCALEIO
- AWS
- Google Cloud
- Azure
1
2
3
4
5
6
| spec:
volumes:
- name: data-volume
awsElasticBlockStore:
volumeID: <volume-id>
fsType: ext4
|