首页
技术小册
AIGC
面试刷题
技术文章
MAGENTO
云计算
视频课程
源码下载
PDF书籍
「涨薪秘籍」
登录
注册
1. Volume
1.1. 模板
1.2. emptyDir
1.2.1. 介绍
1.2.2. 案例
1.3. hostPath
1.4. nfs
2. PV/PVC
2.1. PV/PVC介绍
2.1.1. 介绍
2.1.2. PV/PVC工作方式
2.2. 模板
2.3. 案例
2.3.1. PV/PVC定义和使用
3. ConfigMap
3.1. 介绍
3.2. 模板
3.3. 案例
3.3.1. 创建configmap对象
3.3.2. 使用env方式引用
3.3.3. 使用volume方式引用
4. Secret
4.1. 介绍
4.2. 模板
当前位置:
首页>>
技术小册>>
Kubernets合辑7-存储
小册名称:Kubernets合辑7-存储
``` [root@hdss7-200 volume]# vim /data/k8s-yaml/base_resource/volume/emptydir.yaml apiVersion: v1 kind: Pod metadata: name: pod-emptydir namespace: app labels: tier: volume role: empty-dir spec: containers: - name: main-container image: harbor.od.com/public/busybox:v1.31.1 volumeMounts: - name: web-root mountPath: /tmp command: - httpd args: - -f - -h - "/tmp/" - name: sidecar-container image: harbor.od.com/public/centos:7 volumeMounts: - name: web-root mountPath: /tmp command: - /bin/bash args: - -c - "while :;do date +'%F %T' > /tmp/index.html;sleep 1;done" volumes: - name: web-root emptyDir: {} ``` ``` [root@hdss7-21 ~]# kubectl apply -f http://k8s-yaml.od.com/base_resource/volume/emptydir.yaml [root@hdss7-21 ~]# kubectl get pod pod-emptydir -n app -o wide NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES pod-emptydir 2/2 Running 0 71s 172.7.22.11 hdss7-22.host.com <none> <none> [root@hdss7-21 ~]# kubectl describe pod pod-emptydir -n app Name: pod-emptydir Namespace: app ... Containers: main-container: ... Mounts: /tmp from web-root (rw) ... sidecar-container: ... Mounts: /tmp from web-root (rw) ... Volumes: web-root: Type: EmptyDir (a temporary directory that shares a pod's lifetime) Medium: SizeLimit: <unset> [root@hdss7-21 ~]# while :;do curl -s 172.7.22.11;sleep 1;done 2020-01-26 12:31:09 2020-01-26 12:31:10 2020-01-26 12:31:11 2020-01-26 12:31:12 ```
上一篇:
1.2.1. 介绍
下一篇:
1.3. hostPath
该分类下的相关小册推荐:
Kubernets合辑15-持续部署
Kubernetes中文教程(二)
Kubernets合辑5-Pod控制器
Kubernets合辑2-部署Ingress
Kubernetes中文教程(五)
Kubernetes中文教程(一)
Kubernets合辑4-kubernetes入门
Kubernets合辑13-集群监控
Kubernets合辑11-持续集成
Kubernetes中文教程(三)
Kubernets合辑12-配置中心
Kubernetes中文教程(四)