You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you enable the `CronJobTimeZone` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/),
161
+
you can specify a time zone for a CronJob (if you don't enable that feature gate, or if you are using a version of
162
+
Kubernetes that does not have experimental time zone support, all CronJobs in your cluster have an unspecified
163
+
timezone).
164
+
165
+
When you have the feature enabled, you can set `spec.timeZone` to the name of a valid [time zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) name. For example, setting
166
+
`spec.timeZone: "Etc/UTC"` instructs Kubernetes to interpret the schedule relative to Coordinated Universal Time.
167
+
168
+
A time zone database from the Go standard library is included in the binaries and used as a fallback in case an external database is not available on the system.
0 commit comments