mirror of
https://github.com/fluxcd/flagger.git
synced 2026-04-15 06:57:34 +00:00
- build Gloo UpstreamGroup clientset - drop solo-io, envoyproxy, hcl, consul, opencensus, apiextensions deps - use the native routers with supergloo
157 lines
4.4 KiB
Go
157 lines
4.4 KiB
Go
// +build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright The Flagger 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.
|
|
*/
|
|
|
|
// Code generated by deepcopy-gen. DO NOT EDIT.
|
|
|
|
package v1
|
|
|
|
import (
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Destination) DeepCopyInto(out *Destination) {
|
|
*out = *in
|
|
out.Upstream = in.Upstream
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Destination.
|
|
func (in *Destination) DeepCopy() *Destination {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Destination)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ResourceRef) DeepCopyInto(out *ResourceRef) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceRef.
|
|
func (in *ResourceRef) DeepCopy() *ResourceRef {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ResourceRef)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *UpstreamGroup) DeepCopyInto(out *UpstreamGroup) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpstreamGroup.
|
|
func (in *UpstreamGroup) DeepCopy() *UpstreamGroup {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(UpstreamGroup)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *UpstreamGroup) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *UpstreamGroupList) DeepCopyInto(out *UpstreamGroupList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]UpstreamGroup, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpstreamGroupList.
|
|
func (in *UpstreamGroupList) DeepCopy() *UpstreamGroupList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(UpstreamGroupList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *UpstreamGroupList) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *UpstreamGroupSpec) DeepCopyInto(out *UpstreamGroupSpec) {
|
|
*out = *in
|
|
if in.Destinations != nil {
|
|
in, out := &in.Destinations, &out.Destinations
|
|
*out = make([]WeightedDestination, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpstreamGroupSpec.
|
|
func (in *UpstreamGroupSpec) DeepCopy() *UpstreamGroupSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(UpstreamGroupSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *WeightedDestination) DeepCopyInto(out *WeightedDestination) {
|
|
*out = *in
|
|
out.Destination = in.Destination
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WeightedDestination.
|
|
func (in *WeightedDestination) DeepCopy() *WeightedDestination {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(WeightedDestination)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|