diff --git a/pkg/pkg/pkg.go b/pkg/pkg/pkg.go index 570f42f5b..7c2e734ef 100644 --- a/pkg/pkg/pkg.go +++ b/pkg/pkg/pkg.go @@ -39,6 +39,9 @@ func (t *Time) UnmarshalYAML(unmarshal func(interface{}) error) error { // if we can't parse using the legacy format, return the original error return err } + + // convert timezoned time to UTC + parsed = parsed.UTC() } t.Time = parsed return nil