You can change the timezone of pods by using volumes and volumeMounts to specify the timezone, like :
volumeMounts:
- name: tz-config
mountPath: /etc/localtime
volumes:
- name: tz-config
hostPath:
path: /usr/share/zoneinfo/America/Chicago
Or you can use the "TZ" environment variable in the container section inside the pod spec, to configure the desired time zone:
spec:
containers:
- name:
foo-bar
image: foobar:latest
imagePullPolicy: Always
env:
- name: TZ
value: America/Chicago
This changes the timezone displayed by the pod, which you can confirm using "kubectl exec POD date".
The Default Dashboards Timezone is utc. Attaching the list of timezones for reference.