k8s集群中pod的时间与宿主机不一致
1.在pod中添加如下信息。volumeMounts:- mountPath: /etc/localtimename: date-configvolumes:- name: date-confighostPath:path: /usr/share/zoneinfo/Asia/Shanghai2.重新apply一下pod。kubectl apply -f xxx.yam
·
1.在pod中添加如下信息。
volumeMounts:
- mountPath: /etc/localtime
name: date-config
volumes:
- name: date-config
hostPath:
path: /usr/share/zoneinfo/Asia/Shanghai
2.重新apply一下pod。
kubectl apply -f xxx.yaml
3.进入pod查看时间。
kubectl exec -it xxxxx -- /bin/sh
进入之后输入date 查看时间
更多推荐
已为社区贡献3条内容
所有评论(0)