forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
1,142 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// +build !ignore_autogenerated | ||
|
||
/* | ||
Copyright 2016 The Kubernetes Authors All rights reserved. | ||
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. | ||
*/ | ||
|
||
// This file was autogenerated by deepcopy-gen. Do not edit it manually! | ||
|
||
package policy | ||
|
||
import ( | ||
api "k8s.io/kubernetes/pkg/api" | ||
unversioned "k8s.io/kubernetes/pkg/api/unversioned" | ||
conversion "k8s.io/kubernetes/pkg/conversion" | ||
intstr "k8s.io/kubernetes/pkg/util/intstr" | ||
) | ||
|
||
func init() { | ||
if err := api.Scheme.AddGeneratedDeepCopyFuncs( | ||
DeepCopy_policy_PodDisruptionBudget, | ||
DeepCopy_policy_PodDisruptionBudgetSpec, | ||
DeepCopy_policy_PodDisruptionBudgetStatus, | ||
); err != nil { | ||
// if one of the deep copy functions is malformed, detect it immediately. | ||
panic(err) | ||
} | ||
} | ||
|
||
func DeepCopy_policy_PodDisruptionBudget(in PodDisruptionBudget, out *PodDisruptionBudget, c *conversion.Cloner) error { | ||
if err := unversioned.DeepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { | ||
return err | ||
} | ||
if err := api.DeepCopy_api_ObjectMeta(in.ObjectMeta, &out.ObjectMeta, c); err != nil { | ||
return err | ||
} | ||
if err := DeepCopy_policy_PodDisruptionBudgetSpec(in.Spec, &out.Spec, c); err != nil { | ||
return err | ||
} | ||
if err := DeepCopy_policy_PodDisruptionBudgetStatus(in.Status, &out.Status, c); err != nil { | ||
return err | ||
} | ||
return nil | ||
} | ||
|
||
func DeepCopy_policy_PodDisruptionBudgetSpec(in PodDisruptionBudgetSpec, out *PodDisruptionBudgetSpec, c *conversion.Cloner) error { | ||
if err := intstr.DeepCopy_intstr_IntOrString(in.MinAvailable, &out.MinAvailable, c); err != nil { | ||
return err | ||
} | ||
if in.Selector != nil { | ||
in, out := in.Selector, &out.Selector | ||
*out = new(unversioned.LabelSelector) | ||
if err := unversioned.DeepCopy_unversioned_LabelSelector(*in, *out, c); err != nil { | ||
return err | ||
} | ||
} else { | ||
out.Selector = nil | ||
} | ||
return nil | ||
} | ||
|
||
func DeepCopy_policy_PodDisruptionBudgetStatus(in PodDisruptionBudgetStatus, out *PodDisruptionBudgetStatus, c *conversion.Cloner) error { | ||
out.PodDisruptionAllowed = in.PodDisruptionAllowed | ||
out.CurrentHealthy = in.CurrentHealthy | ||
out.DesiredHealthy = in.DesiredHealthy | ||
out.ExpectedPods = in.ExpectedPods | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,169 @@ | ||
// +build !ignore_autogenerated | ||
|
||
/* | ||
Copyright 2016 The Kubernetes Authors All rights reserved. | ||
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. | ||
*/ | ||
|
||
// This file was autogenerated by conversion-gen. Do not edit it manually! | ||
|
||
package v1alpha1 | ||
|
||
import ( | ||
api "k8s.io/kubernetes/pkg/api" | ||
unversioned "k8s.io/kubernetes/pkg/api/unversioned" | ||
policy "k8s.io/kubernetes/pkg/apis/policy" | ||
conversion "k8s.io/kubernetes/pkg/conversion" | ||
reflect "reflect" | ||
) | ||
|
||
func init() { | ||
if err := api.Scheme.AddGeneratedConversionFuncs( | ||
Convert_v1alpha1_PodDisruptionBudget_To_policy_PodDisruptionBudget, | ||
Convert_policy_PodDisruptionBudget_To_v1alpha1_PodDisruptionBudget, | ||
Convert_v1alpha1_PodDisruptionBudgetSpec_To_policy_PodDisruptionBudgetSpec, | ||
Convert_policy_PodDisruptionBudgetSpec_To_v1alpha1_PodDisruptionBudgetSpec, | ||
Convert_v1alpha1_PodDisruptionBudgetStatus_To_policy_PodDisruptionBudgetStatus, | ||
Convert_policy_PodDisruptionBudgetStatus_To_v1alpha1_PodDisruptionBudgetStatus, | ||
); err != nil { | ||
// if one of the conversion functions is malformed, detect it immediately. | ||
panic(err) | ||
} | ||
} | ||
|
||
func autoConvert_v1alpha1_PodDisruptionBudget_To_policy_PodDisruptionBudget(in *PodDisruptionBudget, out *policy.PodDisruptionBudget, s conversion.Scope) error { | ||
if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { | ||
defaulting.(func(*PodDisruptionBudget))(in) | ||
} | ||
if err := api.Convert_unversioned_TypeMeta_To_unversioned_TypeMeta(&in.TypeMeta, &out.TypeMeta, s); err != nil { | ||
return err | ||
} | ||
// TODO: Inefficient conversion - can we improve it? | ||
if err := s.Convert(&in.ObjectMeta, &out.ObjectMeta, 0); err != nil { | ||
return err | ||
} | ||
if err := Convert_v1alpha1_PodDisruptionBudgetSpec_To_policy_PodDisruptionBudgetSpec(&in.Spec, &out.Spec, s); err != nil { | ||
return err | ||
} | ||
if err := Convert_v1alpha1_PodDisruptionBudgetStatus_To_policy_PodDisruptionBudgetStatus(&in.Status, &out.Status, s); err != nil { | ||
return err | ||
} | ||
return nil | ||
} | ||
|
||
func Convert_v1alpha1_PodDisruptionBudget_To_policy_PodDisruptionBudget(in *PodDisruptionBudget, out *policy.PodDisruptionBudget, s conversion.Scope) error { | ||
return autoConvert_v1alpha1_PodDisruptionBudget_To_policy_PodDisruptionBudget(in, out, s) | ||
} | ||
|
||
func autoConvert_policy_PodDisruptionBudget_To_v1alpha1_PodDisruptionBudget(in *policy.PodDisruptionBudget, out *PodDisruptionBudget, s conversion.Scope) error { | ||
if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { | ||
defaulting.(func(*policy.PodDisruptionBudget))(in) | ||
} | ||
if err := api.Convert_unversioned_TypeMeta_To_unversioned_TypeMeta(&in.TypeMeta, &out.TypeMeta, s); err != nil { | ||
return err | ||
} | ||
// TODO: Inefficient conversion - can we improve it? | ||
if err := s.Convert(&in.ObjectMeta, &out.ObjectMeta, 0); err != nil { | ||
return err | ||
} | ||
if err := Convert_policy_PodDisruptionBudgetSpec_To_v1alpha1_PodDisruptionBudgetSpec(&in.Spec, &out.Spec, s); err != nil { | ||
return err | ||
} | ||
if err := Convert_policy_PodDisruptionBudgetStatus_To_v1alpha1_PodDisruptionBudgetStatus(&in.Status, &out.Status, s); err != nil { | ||
return err | ||
} | ||
return nil | ||
} | ||
|
||
func Convert_policy_PodDisruptionBudget_To_v1alpha1_PodDisruptionBudget(in *policy.PodDisruptionBudget, out *PodDisruptionBudget, s conversion.Scope) error { | ||
return autoConvert_policy_PodDisruptionBudget_To_v1alpha1_PodDisruptionBudget(in, out, s) | ||
} | ||
|
||
func autoConvert_v1alpha1_PodDisruptionBudgetSpec_To_policy_PodDisruptionBudgetSpec(in *PodDisruptionBudgetSpec, out *policy.PodDisruptionBudgetSpec, s conversion.Scope) error { | ||
if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { | ||
defaulting.(func(*PodDisruptionBudgetSpec))(in) | ||
} | ||
if err := api.Convert_intstr_IntOrString_To_intstr_IntOrString(&in.MinAvailable, &out.MinAvailable, s); err != nil { | ||
return err | ||
} | ||
if in.Selector != nil { | ||
in, out := &in.Selector, &out.Selector | ||
*out = new(unversioned.LabelSelector) | ||
// TODO: Inefficient conversion - can we improve it? | ||
if err := s.Convert(*in, *out, 0); err != nil { | ||
return err | ||
} | ||
} else { | ||
out.Selector = nil | ||
} | ||
return nil | ||
} | ||
|
||
func Convert_v1alpha1_PodDisruptionBudgetSpec_To_policy_PodDisruptionBudgetSpec(in *PodDisruptionBudgetSpec, out *policy.PodDisruptionBudgetSpec, s conversion.Scope) error { | ||
return autoConvert_v1alpha1_PodDisruptionBudgetSpec_To_policy_PodDisruptionBudgetSpec(in, out, s) | ||
} | ||
|
||
func autoConvert_policy_PodDisruptionBudgetSpec_To_v1alpha1_PodDisruptionBudgetSpec(in *policy.PodDisruptionBudgetSpec, out *PodDisruptionBudgetSpec, s conversion.Scope) error { | ||
if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { | ||
defaulting.(func(*policy.PodDisruptionBudgetSpec))(in) | ||
} | ||
if err := api.Convert_intstr_IntOrString_To_intstr_IntOrString(&in.MinAvailable, &out.MinAvailable, s); err != nil { | ||
return err | ||
} | ||
if in.Selector != nil { | ||
in, out := &in.Selector, &out.Selector | ||
*out = new(unversioned.LabelSelector) | ||
// TODO: Inefficient conversion - can we improve it? | ||
if err := s.Convert(*in, *out, 0); err != nil { | ||
return err | ||
} | ||
} else { | ||
out.Selector = nil | ||
} | ||
return nil | ||
} | ||
|
||
func Convert_policy_PodDisruptionBudgetSpec_To_v1alpha1_PodDisruptionBudgetSpec(in *policy.PodDisruptionBudgetSpec, out *PodDisruptionBudgetSpec, s conversion.Scope) error { | ||
return autoConvert_policy_PodDisruptionBudgetSpec_To_v1alpha1_PodDisruptionBudgetSpec(in, out, s) | ||
} | ||
|
||
func autoConvert_v1alpha1_PodDisruptionBudgetStatus_To_policy_PodDisruptionBudgetStatus(in *PodDisruptionBudgetStatus, out *policy.PodDisruptionBudgetStatus, s conversion.Scope) error { | ||
if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { | ||
defaulting.(func(*PodDisruptionBudgetStatus))(in) | ||
} | ||
out.PodDisruptionAllowed = in.PodDisruptionAllowed | ||
out.CurrentHealthy = in.CurrentHealthy | ||
out.DesiredHealthy = in.DesiredHealthy | ||
out.ExpectedPods = in.ExpectedPods | ||
return nil | ||
} | ||
|
||
func Convert_v1alpha1_PodDisruptionBudgetStatus_To_policy_PodDisruptionBudgetStatus(in *PodDisruptionBudgetStatus, out *policy.PodDisruptionBudgetStatus, s conversion.Scope) error { | ||
return autoConvert_v1alpha1_PodDisruptionBudgetStatus_To_policy_PodDisruptionBudgetStatus(in, out, s) | ||
} | ||
|
||
func autoConvert_policy_PodDisruptionBudgetStatus_To_v1alpha1_PodDisruptionBudgetStatus(in *policy.PodDisruptionBudgetStatus, out *PodDisruptionBudgetStatus, s conversion.Scope) error { | ||
if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { | ||
defaulting.(func(*policy.PodDisruptionBudgetStatus))(in) | ||
} | ||
out.PodDisruptionAllowed = in.PodDisruptionAllowed | ||
out.CurrentHealthy = in.CurrentHealthy | ||
out.DesiredHealthy = in.DesiredHealthy | ||
out.ExpectedPods = in.ExpectedPods | ||
return nil | ||
} | ||
|
||
func Convert_policy_PodDisruptionBudgetStatus_To_v1alpha1_PodDisruptionBudgetStatus(in *policy.PodDisruptionBudgetStatus, out *PodDisruptionBudgetStatus, s conversion.Scope) error { | ||
return autoConvert_policy_PodDisruptionBudgetStatus_To_v1alpha1_PodDisruptionBudgetStatus(in, out, s) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
// +build !ignore_autogenerated | ||
|
||
/* | ||
Copyright 2016 The Kubernetes Authors All rights reserved. | ||
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. | ||
*/ | ||
|
||
// This file was autogenerated by deepcopy-gen. Do not edit it manually! | ||
|
||
package v1alpha1 | ||
|
||
import ( | ||
api "k8s.io/kubernetes/pkg/api" | ||
unversioned "k8s.io/kubernetes/pkg/api/unversioned" | ||
v1 "k8s.io/kubernetes/pkg/api/v1" | ||
conversion "k8s.io/kubernetes/pkg/conversion" | ||
intstr "k8s.io/kubernetes/pkg/util/intstr" | ||
) | ||
|
||
func init() { | ||
if err := api.Scheme.AddGeneratedDeepCopyFuncs( | ||
DeepCopy_v1alpha1_PodDisruptionBudget, | ||
DeepCopy_v1alpha1_PodDisruptionBudgetSpec, | ||
DeepCopy_v1alpha1_PodDisruptionBudgetStatus, | ||
); err != nil { | ||
// if one of the deep copy functions is malformed, detect it immediately. | ||
panic(err) | ||
} | ||
} | ||
|
||
func DeepCopy_v1alpha1_PodDisruptionBudget(in PodDisruptionBudget, out *PodDisruptionBudget, c *conversion.Cloner) error { | ||
if err := unversioned.DeepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil { | ||
return err | ||
} | ||
if err := v1.DeepCopy_v1_ObjectMeta(in.ObjectMeta, &out.ObjectMeta, c); err != nil { | ||
return err | ||
} | ||
if err := DeepCopy_v1alpha1_PodDisruptionBudgetSpec(in.Spec, &out.Spec, c); err != nil { | ||
return err | ||
} | ||
if err := DeepCopy_v1alpha1_PodDisruptionBudgetStatus(in.Status, &out.Status, c); err != nil { | ||
return err | ||
} | ||
return nil | ||
} | ||
|
||
func DeepCopy_v1alpha1_PodDisruptionBudgetSpec(in PodDisruptionBudgetSpec, out *PodDisruptionBudgetSpec, c *conversion.Cloner) error { | ||
if err := intstr.DeepCopy_intstr_IntOrString(in.MinAvailable, &out.MinAvailable, c); err != nil { | ||
return err | ||
} | ||
if in.Selector != nil { | ||
in, out := in.Selector, &out.Selector | ||
*out = new(unversioned.LabelSelector) | ||
if err := unversioned.DeepCopy_unversioned_LabelSelector(*in, *out, c); err != nil { | ||
return err | ||
} | ||
} else { | ||
out.Selector = nil | ||
} | ||
return nil | ||
} | ||
|
||
func DeepCopy_v1alpha1_PodDisruptionBudgetStatus(in PodDisruptionBudgetStatus, out *PodDisruptionBudgetStatus, c *conversion.Cloner) error { | ||
out.PodDisruptionAllowed = in.PodDisruptionAllowed | ||
out.CurrentHealthy = in.CurrentHealthy | ||
out.DesiredHealthy = in.DesiredHealthy | ||
out.ExpectedPods = in.ExpectedPods | ||
return nil | ||
} |
Oops, something went wrong.