The helm chart we are using for a particular microservice has the following dependency:
dependencies:
- name: mariadb
version: 7.x.x.
repository: "abc"
condition: mariadb.enabled
tags:
- database
When we login to the microservice pod, the timezone shown is local as configured in the deployment. However, when we log into the mariadb pod, the timezone is in UTC.
Could someone help me understand how to set local timezone instead of UTC in mariadb?