本地存储
本地存储
Empty-Dir
每当一个
vim pod-emptydir.yaml
apiVersion : v1
kind : Pod
metadata :
name : busybox
namespace : default
spec :
containers :
- image : busybox
name : busy
command :
- sleep
- " 3600 "
volumeMounts :
- mountPath : /giropops
name : giropops-dir
volumes :
- name : giropops-dir
emptyDir : {}
然后创建卷:
$ kubectl create -f pod-emptydir.yaml
pod/busybox created
$ kubectl get pod
NAME READY STATUS RESTARTS AGE
busybox 1/1 Running 0 12s
让我们列举一下
$ kubectl get pods busybox -n default -o jsonpath='{.spec.containers[*].name}*'
busy
现在让我们在创建的
$ kubectl exec -ti busybox -c busy -- touch /giropops/funciona
$ kubectl exec -ti busybox -c busy -- ls -l /giropops/
total 0
-rw-r--r-- 1 root root 0 Jul 7 17:37 funciona
正如我们所看到的,我们的文件被正确的创建了,我们检查一下这个文件是否在
$ kubectl get pod -o wide
NAME READY STATUS RESTARTS AGE IP NODE
busybox 1/1 Running 0 1m 10.40.0.6 elliot-02
$ kubectl exec -ti busybox -c busy sh
$ ls giropops
现在让我们走出
$find /var/lib/kubelet/pods/ -iname giropops-dir
/var/lib/kubelet/pods/7d33810f-8215-11e8-b889-42010a8a0002/volumes/kubernetes.io~empty-dir/giropops-dir
$ ls /var/lib/kubelet/pods/7d33810f-8215-11e8-b889-42010a8a0002/volumes/kubernetes.io~empty-dir/giropops-dir
funciona
回到节点
$ kubectl delete -f pod-emptydir.yaml
pod "busybox" deleted
再次访问节点
$ ls /var/lib/kubelet/pods/7d...kubernetes.io~empty-dir/giropops-dir
No such file or directory
哎呀,我们收到了找不到目录的消息,正是我们所期望的正确吗?因为类型为
Links
- https://blog.csdn.net/solaraceboy/article/details/84339673
Kubernetes 中,两种常见类型的Volume 深度实践