mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-06 17:57:51 +00:00
Travis seems to be having issues pulling deps, so we'll have to check in the vendor directory and prevent the makefile from trying to regenerate it normally.
45 lines
1.5 KiB
Go
45 lines
1.5 KiB
Go
/*
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package v1beta1
|
|
|
|
import (
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/conversion"
|
|
"k8s.io/apiserver/pkg/apis/audit"
|
|
)
|
|
|
|
func Convert_v1beta1_Event_To_audit_Event(in *Event, out *audit.Event, s conversion.Scope) error {
|
|
if err := autoConvert_v1beta1_Event_To_audit_Event(in, out, s); err != nil {
|
|
return err
|
|
}
|
|
if out.StageTimestamp.IsZero() {
|
|
out.StageTimestamp = metav1.NewMicroTime(in.CreationTimestamp.Time)
|
|
}
|
|
if out.RequestReceivedTimestamp.IsZero() {
|
|
out.RequestReceivedTimestamp = metav1.NewMicroTime(in.Timestamp.Time)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func Convert_audit_Event_To_v1beta1_Event(in *audit.Event, out *Event, s conversion.Scope) error {
|
|
if err := autoConvert_audit_Event_To_v1beta1_Event(in, out, s); err != nil {
|
|
return err
|
|
}
|
|
out.CreationTimestamp = metav1.NewTime(in.StageTimestamp.Time)
|
|
out.Timestamp = metav1.NewTime(in.RequestReceivedTimestamp.Time)
|
|
return nil
|
|
}
|