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.
78 lines
2.4 KiB
Go
78 lines
2.4 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 v1alpha1
|
|
|
|
import (
|
|
"strings"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/conversion"
|
|
"k8s.io/apiserver/pkg/apis/audit"
|
|
)
|
|
|
|
func Convert_audit_ObjectReference_To_v1alpha1_ObjectReference(in *audit.ObjectReference, out *ObjectReference, s conversion.Scope) error {
|
|
// Begin by copying all fields
|
|
if err := autoConvert_audit_ObjectReference_To_v1alpha1_ObjectReference(in, out, s); err != nil {
|
|
return err
|
|
}
|
|
// empty string means the core api group
|
|
if in.APIGroup == "" {
|
|
out.APIVersion = in.APIVersion
|
|
} else {
|
|
out.APIVersion = in.APIGroup + "/" + in.APIVersion
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func Convert_v1alpha1_ObjectReference_To_audit_ObjectReference(in *ObjectReference, out *audit.ObjectReference, s conversion.Scope) error {
|
|
// Begin by copying all fields
|
|
if err := autoConvert_v1alpha1_ObjectReference_To_audit_ObjectReference(in, out, s); err != nil {
|
|
return err
|
|
}
|
|
i := strings.LastIndex(in.APIVersion, "/")
|
|
if i == -1 {
|
|
// In fact it should always contain a "/"
|
|
out.APIVersion = in.APIVersion
|
|
} else {
|
|
out.APIGroup = in.APIVersion[:i]
|
|
out.APIVersion = in.APIVersion[i+1:]
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func Convert_v1alpha1_Event_To_audit_Event(in *Event, out *audit.Event, s conversion.Scope) error {
|
|
if err := autoConvert_v1alpha1_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_v1alpha1_Event(in *audit.Event, out *Event, s conversion.Scope) error {
|
|
if err := autoConvert_audit_Event_To_v1alpha1_Event(in, out, s); err != nil {
|
|
return err
|
|
}
|
|
out.CreationTimestamp = metav1.NewTime(in.StageTimestamp.Time)
|
|
out.Timestamp = metav1.NewTime(in.RequestReceivedTimestamp.Time)
|
|
return nil
|
|
|
|
}
|