52 lines
1.6 KiB
Go
52 lines
1.6 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 v1
|
|
|
|
import (
|
|
conversion "k8s.io/apimachinery/pkg/conversion"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
example "k8s.io/apiserver/pkg/apis/example"
|
|
)
|
|
|
|
func addConversionFuncs(scheme *runtime.Scheme) error {
|
|
// Add non-generated conversion functions to handle the *int32 -> int32
|
|
// conversion. A pointer is useful in the versioned type so we can default
|
|
// it, but a plain int32 is more convenient in the internal type. These
|
|
// functions are the same as the autogenerated ones in every other way.
|
|
err := scheme.AddConversionFuncs(
|
|
Convert_example_ReplicaSetSpec_To_v1_ReplicaSetSpec,
|
|
Convert_v1_ReplicaSetSpec_To_example_ReplicaSetSpec,
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func Convert_example_ReplicaSetSpec_To_v1_ReplicaSetSpec(in *example.ReplicaSetSpec, out *ReplicaSetSpec, s conversion.Scope) error {
|
|
out.Replicas = new(int32)
|
|
*out.Replicas = int32(in.Replicas)
|
|
return nil
|
|
}
|
|
|
|
func Convert_v1_ReplicaSetSpec_To_example_ReplicaSetSpec(in *ReplicaSetSpec, out *example.ReplicaSetSpec, s conversion.Scope) error {
|
|
if in.Replicas != nil {
|
|
out.Replicas = *in.Replicas
|
|
}
|
|
return nil
|
|
}
|