在配置的yaml文件中加上如下配置
在这里插入图片描述

    spec:
      containers:
      - name: jaireport
        image: ip/library/ja_ireport:v1.0
        ports:
        - containerPort: 8080
        env:
        - name: TZ
          value: Asia/Shanghai
    

volumeMounts:
    - name: config
      mountPath: /etc/localtime
      readOnly: true
  volumes:
  - name: config
    hostPath:
      path: /etc/localtime

我自己解决:
1、首先我在yaml文件中使用共享环境时间

volumeMounts:
    - name: config
      mountPath: /etc/localtime
      readOnly: true
  volumes:
  - name: config
    hostPath:
      path: /etc/localtime

结果发现还是不行
2、然后,再加上时区就可以了

env:
        - name: TZ
          value: Asia/Shanghai

yaml文件拷贝的时候需要注意下格式问题

Logo

K8S/Kubernetes社区为您提供最前沿的新闻资讯和知识内容

更多推荐