Add support for TCP (in kubernetes CRD)
Co-authored-by: Jean-Baptiste Doumenjou <jb.doumenjou@gmail.com>
This commit is contained in:
parent
c1dc783512
commit
c4df78b4b9
44 changed files with 2070 additions and 93 deletions
|
@ -266,6 +266,21 @@ func (in *Headers) DeepCopyInto(out *Headers) {
|
|||
(*out)[key] = val
|
||||
}
|
||||
}
|
||||
if in.AccessControlAllowHeaders != nil {
|
||||
in, out := &in.AccessControlAllowHeaders, &out.AccessControlAllowHeaders
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
if in.AccessControlAllowMethods != nil {
|
||||
in, out := &in.AccessControlAllowMethods, &out.AccessControlAllowMethods
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
if in.AccessControlExposeHeaders != nil {
|
||||
in, out := &in.AccessControlExposeHeaders, &out.AccessControlExposeHeaders
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
if in.AllowedHosts != nil {
|
||||
in, out := &in.AllowedHosts, &out.AllowedHosts
|
||||
*out = make([]string, len(*in))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue