b9bf13f065
- Adds stackube proxy which listens on endpoints, services and namespaces, creates load balancer rules for clusterIP service - Switch to govendor for managing vendors - Add hack scripts for verifying govet and gofmt Change-Id: I8594c16d294f46ae0d3dec6dae6fa491e7891b8b Implements: blueprint stackube-proxy
288 lines
9.3 KiB
Go
288 lines
9.3 KiB
Go
// +build !ignore_autogenerated
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
|
|
// This file was autogenerated by deepcopy-gen. Do not edit it manually!
|
|
|
|
package v1
|
|
|
|
import (
|
|
conversion "k8s.io/apimachinery/pkg/conversion"
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
reflect "reflect"
|
|
)
|
|
|
|
// Deprecated: register deep-copy functions.
|
|
func init() {
|
|
SchemeBuilder.Register(RegisterDeepCopies)
|
|
}
|
|
|
|
// Deprecated: RegisterDeepCopies adds deep-copy functions to the given scheme. Public
|
|
// to allow building arbitrary schemes.
|
|
func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
|
return scheme.AddGeneratedDeepCopyFuncs(
|
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
in.(*LocalSubjectAccessReview).DeepCopyInto(out.(*LocalSubjectAccessReview))
|
|
return nil
|
|
}, InType: reflect.TypeOf(&LocalSubjectAccessReview{})},
|
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
in.(*NonResourceAttributes).DeepCopyInto(out.(*NonResourceAttributes))
|
|
return nil
|
|
}, InType: reflect.TypeOf(&NonResourceAttributes{})},
|
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
in.(*ResourceAttributes).DeepCopyInto(out.(*ResourceAttributes))
|
|
return nil
|
|
}, InType: reflect.TypeOf(&ResourceAttributes{})},
|
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
in.(*SelfSubjectAccessReview).DeepCopyInto(out.(*SelfSubjectAccessReview))
|
|
return nil
|
|
}, InType: reflect.TypeOf(&SelfSubjectAccessReview{})},
|
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
in.(*SelfSubjectAccessReviewSpec).DeepCopyInto(out.(*SelfSubjectAccessReviewSpec))
|
|
return nil
|
|
}, InType: reflect.TypeOf(&SelfSubjectAccessReviewSpec{})},
|
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
in.(*SubjectAccessReview).DeepCopyInto(out.(*SubjectAccessReview))
|
|
return nil
|
|
}, InType: reflect.TypeOf(&SubjectAccessReview{})},
|
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
in.(*SubjectAccessReviewSpec).DeepCopyInto(out.(*SubjectAccessReviewSpec))
|
|
return nil
|
|
}, InType: reflect.TypeOf(&SubjectAccessReviewSpec{})},
|
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
in.(*SubjectAccessReviewStatus).DeepCopyInto(out.(*SubjectAccessReviewStatus))
|
|
return nil
|
|
}, InType: reflect.TypeOf(&SubjectAccessReviewStatus{})},
|
|
)
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *LocalSubjectAccessReview) DeepCopyInto(out *LocalSubjectAccessReview) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
out.Status = in.Status
|
|
return
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new LocalSubjectAccessReview.
|
|
func (x *LocalSubjectAccessReview) DeepCopy() *LocalSubjectAccessReview {
|
|
if x == nil {
|
|
return nil
|
|
}
|
|
out := new(LocalSubjectAccessReview)
|
|
x.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (x *LocalSubjectAccessReview) DeepCopyObject() runtime.Object {
|
|
if c := x.DeepCopy(); c != nil {
|
|
return c
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *NonResourceAttributes) DeepCopyInto(out *NonResourceAttributes) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new NonResourceAttributes.
|
|
func (x *NonResourceAttributes) DeepCopy() *NonResourceAttributes {
|
|
if x == nil {
|
|
return nil
|
|
}
|
|
out := new(NonResourceAttributes)
|
|
x.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ResourceAttributes) DeepCopyInto(out *ResourceAttributes) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new ResourceAttributes.
|
|
func (x *ResourceAttributes) DeepCopy() *ResourceAttributes {
|
|
if x == nil {
|
|
return nil
|
|
}
|
|
out := new(ResourceAttributes)
|
|
x.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SelfSubjectAccessReview) DeepCopyInto(out *SelfSubjectAccessReview) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
out.Status = in.Status
|
|
return
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new SelfSubjectAccessReview.
|
|
func (x *SelfSubjectAccessReview) DeepCopy() *SelfSubjectAccessReview {
|
|
if x == nil {
|
|
return nil
|
|
}
|
|
out := new(SelfSubjectAccessReview)
|
|
x.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (x *SelfSubjectAccessReview) DeepCopyObject() runtime.Object {
|
|
if c := x.DeepCopy(); c != nil {
|
|
return c
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SelfSubjectAccessReviewSpec) DeepCopyInto(out *SelfSubjectAccessReviewSpec) {
|
|
*out = *in
|
|
if in.ResourceAttributes != nil {
|
|
in, out := &in.ResourceAttributes, &out.ResourceAttributes
|
|
if *in == nil {
|
|
*out = nil
|
|
} else {
|
|
*out = new(ResourceAttributes)
|
|
**out = **in
|
|
}
|
|
}
|
|
if in.NonResourceAttributes != nil {
|
|
in, out := &in.NonResourceAttributes, &out.NonResourceAttributes
|
|
if *in == nil {
|
|
*out = nil
|
|
} else {
|
|
*out = new(NonResourceAttributes)
|
|
**out = **in
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new SelfSubjectAccessReviewSpec.
|
|
func (x *SelfSubjectAccessReviewSpec) DeepCopy() *SelfSubjectAccessReviewSpec {
|
|
if x == nil {
|
|
return nil
|
|
}
|
|
out := new(SelfSubjectAccessReviewSpec)
|
|
x.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SubjectAccessReview) DeepCopyInto(out *SubjectAccessReview) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
out.Status = in.Status
|
|
return
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new SubjectAccessReview.
|
|
func (x *SubjectAccessReview) DeepCopy() *SubjectAccessReview {
|
|
if x == nil {
|
|
return nil
|
|
}
|
|
out := new(SubjectAccessReview)
|
|
x.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (x *SubjectAccessReview) DeepCopyObject() runtime.Object {
|
|
if c := x.DeepCopy(); c != nil {
|
|
return c
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SubjectAccessReviewSpec) DeepCopyInto(out *SubjectAccessReviewSpec) {
|
|
*out = *in
|
|
if in.ResourceAttributes != nil {
|
|
in, out := &in.ResourceAttributes, &out.ResourceAttributes
|
|
if *in == nil {
|
|
*out = nil
|
|
} else {
|
|
*out = new(ResourceAttributes)
|
|
**out = **in
|
|
}
|
|
}
|
|
if in.NonResourceAttributes != nil {
|
|
in, out := &in.NonResourceAttributes, &out.NonResourceAttributes
|
|
if *in == nil {
|
|
*out = nil
|
|
} else {
|
|
*out = new(NonResourceAttributes)
|
|
**out = **in
|
|
}
|
|
}
|
|
if in.Groups != nil {
|
|
in, out := &in.Groups, &out.Groups
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Extra != nil {
|
|
in, out := &in.Extra, &out.Extra
|
|
*out = make(map[string]ExtraValue, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = make(ExtraValue, len(val))
|
|
copy((*out)[key], val)
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new SubjectAccessReviewSpec.
|
|
func (x *SubjectAccessReviewSpec) DeepCopy() *SubjectAccessReviewSpec {
|
|
if x == nil {
|
|
return nil
|
|
}
|
|
out := new(SubjectAccessReviewSpec)
|
|
x.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SubjectAccessReviewStatus) DeepCopyInto(out *SubjectAccessReviewStatus) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, creating a new SubjectAccessReviewStatus.
|
|
func (x *SubjectAccessReviewStatus) DeepCopy() *SubjectAccessReviewStatus {
|
|
if x == nil {
|
|
return nil
|
|
}
|
|
out := new(SubjectAccessReviewStatus)
|
|
x.DeepCopyInto(out)
|
|
return out
|
|
}
|