k8s 挂载本地目录

发布时间 2023-08-30 12:21:37作者: CF211


kind: StatefulSet
metadata:
namespace: oasis
name: redis-cluster-node-ns
spec:
serviceName: "redis-cluster-svc"
template:
spec:
containers:
volumeMounts:
- name: sys-time
mountPath: /etc/localtime
- name: redisdata
mountPath: /home/redis # pod中docker容器目录,即要被挂载的目录
volumes:
- name: sys-time
hostPath:
path: /etc/localtime
- name: redisdata # 对应前面的volumeMounts name
hostPath: