775 lines
21 KiB
Go
775 lines
21 KiB
Go
|
//go:build !ignore_autogenerated
|
||
|
|
||
|
/*
|
||
|
Copyright 2025.
|
||
|
|
||
|
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 controller-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 *AbortInjection) DeepCopyInto(out *AbortInjection) {
|
||
|
*out = *in
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AbortInjection.
|
||
|
func (in *AbortInjection) DeepCopy() *AbortInjection {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(AbortInjection)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *Application) DeepCopyInto(out *Application) {
|
||
|
*out = *in
|
||
|
out.TypeMeta = in.TypeMeta
|
||
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
||
|
in.Spec.DeepCopyInto(&out.Spec)
|
||
|
in.Status.DeepCopyInto(&out.Status)
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Application.
|
||
|
func (in *Application) DeepCopy() *Application {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(Application)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
||
|
func (in *Application) 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 *ApplicationList) DeepCopyInto(out *ApplicationList) {
|
||
|
*out = *in
|
||
|
out.TypeMeta = in.TypeMeta
|
||
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
||
|
if in.Items != nil {
|
||
|
in, out := &in.Items, &out.Items
|
||
|
*out = make([]Application, len(*in))
|
||
|
for i := range *in {
|
||
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationList.
|
||
|
func (in *ApplicationList) DeepCopy() *ApplicationList {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(ApplicationList)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
||
|
func (in *ApplicationList) 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 *ApplicationSpec) DeepCopyInto(out *ApplicationSpec) {
|
||
|
*out = *in
|
||
|
in.Template.DeepCopyInto(&out.Template)
|
||
|
if in.Replicas != nil {
|
||
|
in, out := &in.Replicas, &out.Replicas
|
||
|
*out = new(int32)
|
||
|
**out = **in
|
||
|
}
|
||
|
if in.Environment != nil {
|
||
|
in, out := &in.Environment, &out.Environment
|
||
|
*out = make(map[string]string, len(*in))
|
||
|
for key, val := range *in {
|
||
|
(*out)[key] = val
|
||
|
}
|
||
|
}
|
||
|
out.Resources = in.Resources
|
||
|
if in.Service != nil {
|
||
|
in, out := &in.Service, &out.Service
|
||
|
*out = new(ServiceConfig)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
if in.NetworkPolicy != nil {
|
||
|
in, out := &in.NetworkPolicy, &out.NetworkPolicy
|
||
|
*out = new(NetworkPolicy)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
if in.TrafficPolicy != nil {
|
||
|
in, out := &in.TrafficPolicy, &out.TrafficPolicy
|
||
|
*out = new(TrafficPolicy)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationSpec.
|
||
|
func (in *ApplicationSpec) DeepCopy() *ApplicationSpec {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(ApplicationSpec)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *ApplicationStatus) DeepCopyInto(out *ApplicationStatus) {
|
||
|
*out = *in
|
||
|
in.LastUpdated.DeepCopyInto(&out.LastUpdated)
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationStatus.
|
||
|
func (in *ApplicationStatus) DeepCopy() *ApplicationStatus {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(ApplicationStatus)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *ApplicationTemplate) DeepCopyInto(out *ApplicationTemplate) {
|
||
|
*out = *in
|
||
|
if in.Ports != nil {
|
||
|
in, out := &in.Ports, &out.Ports
|
||
|
*out = make([]Port, len(*in))
|
||
|
copy(*out, *in)
|
||
|
}
|
||
|
if in.HealthCheck != nil {
|
||
|
in, out := &in.HealthCheck, &out.HealthCheck
|
||
|
*out = new(HealthCheck)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
if in.Command != nil {
|
||
|
in, out := &in.Command, &out.Command
|
||
|
*out = make([]string, len(*in))
|
||
|
copy(*out, *in)
|
||
|
}
|
||
|
if in.Args != nil {
|
||
|
in, out := &in.Args, &out.Args
|
||
|
*out = make([]string, len(*in))
|
||
|
copy(*out, *in)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationTemplate.
|
||
|
func (in *ApplicationTemplate) DeepCopy() *ApplicationTemplate {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(ApplicationTemplate)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *CanaryTraffic) DeepCopyInto(out *CanaryTraffic) {
|
||
|
*out = *in
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CanaryTraffic.
|
||
|
func (in *CanaryTraffic) DeepCopy() *CanaryTraffic {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(CanaryTraffic)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *CircuitBreaker) DeepCopyInto(out *CircuitBreaker) {
|
||
|
*out = *in
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CircuitBreaker.
|
||
|
func (in *CircuitBreaker) DeepCopy() *CircuitBreaker {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(CircuitBreaker)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *ConsistentHashLB) DeepCopyInto(out *ConsistentHashLB) {
|
||
|
*out = *in
|
||
|
if in.HttpCookie != nil {
|
||
|
in, out := &in.HttpCookie, &out.HttpCookie
|
||
|
*out = new(HTTPCookie)
|
||
|
**out = **in
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsistentHashLB.
|
||
|
func (in *ConsistentHashLB) DeepCopy() *ConsistentHashLB {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(ConsistentHashLB)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *DelayInjection) DeepCopyInto(out *DelayInjection) {
|
||
|
*out = *in
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DelayInjection.
|
||
|
func (in *DelayInjection) DeepCopy() *DelayInjection {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(DelayInjection)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *FaultInjection) DeepCopyInto(out *FaultInjection) {
|
||
|
*out = *in
|
||
|
if in.Delay != nil {
|
||
|
in, out := &in.Delay, &out.Delay
|
||
|
*out = new(DelayInjection)
|
||
|
**out = **in
|
||
|
}
|
||
|
if in.Abort != nil {
|
||
|
in, out := &in.Abort, &out.Abort
|
||
|
*out = new(AbortInjection)
|
||
|
**out = **in
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FaultInjection.
|
||
|
func (in *FaultInjection) DeepCopy() *FaultInjection {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(FaultInjection)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *GatewayConfig) DeepCopyInto(out *GatewayConfig) {
|
||
|
*out = *in
|
||
|
if in.Ports != nil {
|
||
|
in, out := &in.Ports, &out.Ports
|
||
|
*out = make([]GatewayPort, len(*in))
|
||
|
copy(*out, *in)
|
||
|
}
|
||
|
if in.Hosts != nil {
|
||
|
in, out := &in.Hosts, &out.Hosts
|
||
|
*out = make([]string, len(*in))
|
||
|
copy(*out, *in)
|
||
|
}
|
||
|
if in.TLS != nil {
|
||
|
in, out := &in.TLS, &out.TLS
|
||
|
*out = make([]GatewayTLS, len(*in))
|
||
|
for i := range *in {
|
||
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
||
|
}
|
||
|
}
|
||
|
if in.Annotations != nil {
|
||
|
in, out := &in.Annotations, &out.Annotations
|
||
|
*out = make(map[string]string, len(*in))
|
||
|
for key, val := range *in {
|
||
|
(*out)[key] = val
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GatewayConfig.
|
||
|
func (in *GatewayConfig) DeepCopy() *GatewayConfig {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(GatewayConfig)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *GatewayPort) DeepCopyInto(out *GatewayPort) {
|
||
|
*out = *in
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GatewayPort.
|
||
|
func (in *GatewayPort) DeepCopy() *GatewayPort {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(GatewayPort)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *GatewayTLS) DeepCopyInto(out *GatewayTLS) {
|
||
|
*out = *in
|
||
|
if in.Hosts != nil {
|
||
|
in, out := &in.Hosts, &out.Hosts
|
||
|
*out = make([]string, len(*in))
|
||
|
copy(*out, *in)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GatewayTLS.
|
||
|
func (in *GatewayTLS) DeepCopy() *GatewayTLS {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(GatewayTLS)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *HTTPCookie) DeepCopyInto(out *HTTPCookie) {
|
||
|
*out = *in
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPCookie.
|
||
|
func (in *HTTPCookie) DeepCopy() *HTTPCookie {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(HTTPCookie)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *HTTPGetAction) DeepCopyInto(out *HTTPGetAction) {
|
||
|
*out = *in
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPGetAction.
|
||
|
func (in *HTTPGetAction) DeepCopy() *HTTPGetAction {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(HTTPGetAction)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *HTTPMatchRequest) DeepCopyInto(out *HTTPMatchRequest) {
|
||
|
*out = *in
|
||
|
if in.URI != nil {
|
||
|
in, out := &in.URI, &out.URI
|
||
|
*out = new(StringMatch)
|
||
|
**out = **in
|
||
|
}
|
||
|
if in.Method != nil {
|
||
|
in, out := &in.Method, &out.Method
|
||
|
*out = new(StringMatch)
|
||
|
**out = **in
|
||
|
}
|
||
|
if in.Headers != nil {
|
||
|
in, out := &in.Headers, &out.Headers
|
||
|
*out = make(map[string]StringMatch, len(*in))
|
||
|
for key, val := range *in {
|
||
|
(*out)[key] = val
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPMatchRequest.
|
||
|
func (in *HTTPMatchRequest) DeepCopy() *HTTPMatchRequest {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(HTTPMatchRequest)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *HealthCheck) DeepCopyInto(out *HealthCheck) {
|
||
|
*out = *in
|
||
|
if in.HTTPGet != nil {
|
||
|
in, out := &in.HTTPGet, &out.HTTPGet
|
||
|
*out = new(HTTPGetAction)
|
||
|
**out = **in
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HealthCheck.
|
||
|
func (in *HealthCheck) DeepCopy() *HealthCheck {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(HealthCheck)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *LoadBalancerSettings) DeepCopyInto(out *LoadBalancerSettings) {
|
||
|
*out = *in
|
||
|
if in.ConsistentHash != nil {
|
||
|
in, out := &in.ConsistentHash, &out.ConsistentHash
|
||
|
*out = new(ConsistentHashLB)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoadBalancerSettings.
|
||
|
func (in *LoadBalancerSettings) DeepCopy() *LoadBalancerSettings {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(LoadBalancerSettings)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *MeshConfig) DeepCopyInto(out *MeshConfig) {
|
||
|
*out = *in
|
||
|
if in.Sidecar != nil {
|
||
|
in, out := &in.Sidecar, &out.Sidecar
|
||
|
*out = new(SidecarConfig)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
if in.Routes != nil {
|
||
|
in, out := &in.Routes, &out.Routes
|
||
|
*out = make([]RouteConfig, len(*in))
|
||
|
for i := range *in {
|
||
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
||
|
}
|
||
|
}
|
||
|
if in.CircuitBreaker != nil {
|
||
|
in, out := &in.CircuitBreaker, &out.CircuitBreaker
|
||
|
*out = new(CircuitBreaker)
|
||
|
**out = **in
|
||
|
}
|
||
|
if in.Retry != nil {
|
||
|
in, out := &in.Retry, &out.Retry
|
||
|
*out = new(RetryPolicy)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
if in.FaultInjection != nil {
|
||
|
in, out := &in.FaultInjection, &out.FaultInjection
|
||
|
*out = new(FaultInjection)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
if in.LoadBalancer != nil {
|
||
|
in, out := &in.LoadBalancer, &out.LoadBalancer
|
||
|
*out = new(LoadBalancerSettings)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MeshConfig.
|
||
|
func (in *MeshConfig) DeepCopy() *MeshConfig {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(MeshConfig)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *MirrorConfig) DeepCopyInto(out *MirrorConfig) {
|
||
|
*out = *in
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MirrorConfig.
|
||
|
func (in *MirrorConfig) DeepCopy() *MirrorConfig {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(MirrorConfig)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *NetworkPolicy) DeepCopyInto(out *NetworkPolicy) {
|
||
|
*out = *in
|
||
|
if in.Gateway != nil {
|
||
|
in, out := &in.Gateway, &out.Gateway
|
||
|
*out = new(GatewayConfig)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
if in.Mesh != nil {
|
||
|
in, out := &in.Mesh, &out.Mesh
|
||
|
*out = new(MeshConfig)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkPolicy.
|
||
|
func (in *NetworkPolicy) DeepCopy() *NetworkPolicy {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(NetworkPolicy)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *Port) DeepCopyInto(out *Port) {
|
||
|
*out = *in
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Port.
|
||
|
func (in *Port) DeepCopy() *Port {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(Port)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *ResourceRequirements) DeepCopyInto(out *ResourceRequirements) {
|
||
|
*out = *in
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceRequirements.
|
||
|
func (in *ResourceRequirements) DeepCopy() *ResourceRequirements {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(ResourceRequirements)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *RetryPolicy) DeepCopyInto(out *RetryPolicy) {
|
||
|
*out = *in
|
||
|
if in.RetryOn != nil {
|
||
|
in, out := &in.RetryOn, &out.RetryOn
|
||
|
*out = make([]string, len(*in))
|
||
|
copy(*out, *in)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RetryPolicy.
|
||
|
func (in *RetryPolicy) DeepCopy() *RetryPolicy {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(RetryPolicy)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *RouteConfig) DeepCopyInto(out *RouteConfig) {
|
||
|
*out = *in
|
||
|
if in.Match != nil {
|
||
|
in, out := &in.Match, &out.Match
|
||
|
*out = new(HTTPMatchRequest)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
out.Destination = in.Destination
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouteConfig.
|
||
|
func (in *RouteConfig) DeepCopy() *RouteConfig {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(RouteConfig)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *RouteDestination) DeepCopyInto(out *RouteDestination) {
|
||
|
*out = *in
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouteDestination.
|
||
|
func (in *RouteDestination) DeepCopy() *RouteDestination {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(RouteDestination)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *ServiceConfig) DeepCopyInto(out *ServiceConfig) {
|
||
|
*out = *in
|
||
|
if in.Ports != nil {
|
||
|
in, out := &in.Ports, &out.Ports
|
||
|
*out = make([]ServicePort, len(*in))
|
||
|
copy(*out, *in)
|
||
|
}
|
||
|
if in.NodePorts != nil {
|
||
|
in, out := &in.NodePorts, &out.NodePorts
|
||
|
*out = make(map[string]int32, len(*in))
|
||
|
for key, val := range *in {
|
||
|
(*out)[key] = val
|
||
|
}
|
||
|
}
|
||
|
if in.LoadBalancerSourceRanges != nil {
|
||
|
in, out := &in.LoadBalancerSourceRanges, &out.LoadBalancerSourceRanges
|
||
|
*out = make([]string, len(*in))
|
||
|
copy(*out, *in)
|
||
|
}
|
||
|
if in.Annotations != nil {
|
||
|
in, out := &in.Annotations, &out.Annotations
|
||
|
*out = make(map[string]string, len(*in))
|
||
|
for key, val := range *in {
|
||
|
(*out)[key] = val
|
||
|
}
|
||
|
}
|
||
|
if in.Labels != nil {
|
||
|
in, out := &in.Labels, &out.Labels
|
||
|
*out = make(map[string]string, len(*in))
|
||
|
for key, val := range *in {
|
||
|
(*out)[key] = val
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceConfig.
|
||
|
func (in *ServiceConfig) DeepCopy() *ServiceConfig {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(ServiceConfig)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *ServicePort) DeepCopyInto(out *ServicePort) {
|
||
|
*out = *in
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServicePort.
|
||
|
func (in *ServicePort) DeepCopy() *ServicePort {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(ServicePort)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *SidecarConfig) DeepCopyInto(out *SidecarConfig) {
|
||
|
*out = *in
|
||
|
if in.Resources != nil {
|
||
|
in, out := &in.Resources, &out.Resources
|
||
|
*out = new(ResourceRequirements)
|
||
|
**out = **in
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SidecarConfig.
|
||
|
func (in *SidecarConfig) DeepCopy() *SidecarConfig {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(SidecarConfig)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *StringMatch) DeepCopyInto(out *StringMatch) {
|
||
|
*out = *in
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StringMatch.
|
||
|
func (in *StringMatch) DeepCopy() *StringMatch {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(StringMatch)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||
|
func (in *TrafficPolicy) DeepCopyInto(out *TrafficPolicy) {
|
||
|
*out = *in
|
||
|
if in.Canary != nil {
|
||
|
in, out := &in.Canary, &out.Canary
|
||
|
*out = new(CanaryTraffic)
|
||
|
**out = **in
|
||
|
}
|
||
|
if in.Retry != nil {
|
||
|
in, out := &in.Retry, &out.Retry
|
||
|
*out = new(RetryPolicy)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
if in.CircuitBreaker != nil {
|
||
|
in, out := &in.CircuitBreaker, &out.CircuitBreaker
|
||
|
*out = new(CircuitBreaker)
|
||
|
**out = **in
|
||
|
}
|
||
|
if in.Mirror != nil {
|
||
|
in, out := &in.Mirror, &out.Mirror
|
||
|
*out = new(MirrorConfig)
|
||
|
**out = **in
|
||
|
}
|
||
|
if in.LoadBalancer != nil {
|
||
|
in, out := &in.LoadBalancer, &out.LoadBalancer
|
||
|
*out = new(LoadBalancerSettings)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
if in.FaultInjection != nil {
|
||
|
in, out := &in.FaultInjection, &out.FaultInjection
|
||
|
*out = new(FaultInjection)
|
||
|
(*in).DeepCopyInto(*out)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TrafficPolicy.
|
||
|
func (in *TrafficPolicy) DeepCopy() *TrafficPolicy {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(TrafficPolicy)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|