mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
Update generated
Signed-off-by: Patrik Cyvoct <patrik@ptrk.io>
This commit is contained in:
parent
7bdf2af648
commit
af7494e896
4
api/openapi-spec/swagger.json
generated
4
api/openapi-spec/swagger.json
generated
@ -7337,6 +7337,10 @@
|
||||
"ip": {
|
||||
"description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)",
|
||||
"type": "string"
|
||||
},
|
||||
"ipMode": {
|
||||
"description": "IPMode specifies the IP mode to use for this ingress Defaults to `VIP` if IP is set, null otherwise",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
|
2
pkg/apis/core/v1/zz_generated.conversion.go
generated
2
pkg/apis/core/v1/zz_generated.conversion.go
generated
@ -4291,6 +4291,7 @@ func Convert_core_List_To_v1_List(in *core.List, out *v1.List, s conversion.Scop
|
||||
func autoConvert_v1_LoadBalancerIngress_To_core_LoadBalancerIngress(in *v1.LoadBalancerIngress, out *core.LoadBalancerIngress, s conversion.Scope) error {
|
||||
out.IP = in.IP
|
||||
out.Hostname = in.Hostname
|
||||
out.IPMode = (*core.LoadBalancerIPMode)(unsafe.Pointer(in.IPMode))
|
||||
return nil
|
||||
}
|
||||
|
||||
@ -4302,6 +4303,7 @@ func Convert_v1_LoadBalancerIngress_To_core_LoadBalancerIngress(in *v1.LoadBalan
|
||||
func autoConvert_core_LoadBalancerIngress_To_v1_LoadBalancerIngress(in *core.LoadBalancerIngress, out *v1.LoadBalancerIngress, s conversion.Scope) error {
|
||||
out.IP = in.IP
|
||||
out.Hostname = in.Hostname
|
||||
out.IPMode = (*v1.LoadBalancerIPMode)(unsafe.Pointer(in.IPMode))
|
||||
return nil
|
||||
}
|
||||
|
||||
|
9
pkg/apis/core/zz_generated.deepcopy.go
generated
9
pkg/apis/core/zz_generated.deepcopy.go
generated
@ -2146,6 +2146,11 @@ func (in *List) DeepCopyObject() runtime.Object {
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *LoadBalancerIngress) DeepCopyInto(out *LoadBalancerIngress) {
|
||||
*out = *in
|
||||
if in.IPMode != nil {
|
||||
in, out := &in.IPMode, &out.IPMode
|
||||
*out = new(LoadBalancerIPMode)
|
||||
**out = **in
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
@ -2165,7 +2170,9 @@ func (in *LoadBalancerStatus) DeepCopyInto(out *LoadBalancerStatus) {
|
||||
if in.Ingress != nil {
|
||||
in, out := &in.Ingress, &out.Ingress
|
||||
*out = make([]LoadBalancerIngress, len(*in))
|
||||
copy(*out, *in)
|
||||
for i := range *in {
|
||||
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
|
@ -39,6 +39,7 @@ go_test(
|
||||
srcs = ["proxier_test.go"],
|
||||
embed = [":go_default_library"],
|
||||
deps = [
|
||||
"//pkg/features:go_default_library",
|
||||
"//pkg/proxy:go_default_library",
|
||||
"//pkg/proxy/healthcheck:go_default_library",
|
||||
"//pkg/proxy/util:go_default_library",
|
||||
@ -53,6 +54,8 @@ go_test(
|
||||
"//staging/src/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
|
||||
"//staging/src/k8s.io/apimachinery/pkg/types:go_default_library",
|
||||
"//staging/src/k8s.io/apimachinery/pkg/util/intstr:go_default_library",
|
||||
"//staging/src/k8s.io/apiserver/pkg/util/feature:go_default_library",
|
||||
"//staging/src/k8s.io/component-base/featuregate/testing:go_default_library",
|
||||
"//vendor/github.com/stretchr/testify/assert:go_default_library",
|
||||
"//vendor/k8s.io/klog/v2:go_default_library",
|
||||
"//vendor/k8s.io/utils/exec:go_default_library",
|
||||
|
@ -15,6 +15,7 @@ go_test(
|
||||
],
|
||||
embed = [":go_default_library"],
|
||||
deps = [
|
||||
"//pkg/features:go_default_library",
|
||||
"//pkg/proxy:go_default_library",
|
||||
"//pkg/proxy/healthcheck:go_default_library",
|
||||
"//pkg/proxy/ipvs/testing:go_default_library",
|
||||
@ -34,6 +35,8 @@ go_test(
|
||||
"//staging/src/k8s.io/apimachinery/pkg/types:go_default_library",
|
||||
"//staging/src/k8s.io/apimachinery/pkg/util/intstr:go_default_library",
|
||||
"//staging/src/k8s.io/apimachinery/pkg/util/sets:go_default_library",
|
||||
"//staging/src/k8s.io/apiserver/pkg/util/feature:go_default_library",
|
||||
"//staging/src/k8s.io/component-base/featuregate/testing:go_default_library",
|
||||
"//vendor/github.com/stretchr/testify/assert:go_default_library",
|
||||
"//vendor/k8s.io/utils/exec:go_default_library",
|
||||
"//vendor/k8s.io/utils/exec/testing:go_default_library",
|
||||
|
1764
staging/src/k8s.io/api/core/v1/generated.pb.go
generated
1764
staging/src/k8s.io/api/core/v1/generated.pb.go
generated
File diff suppressed because it is too large
Load Diff
@ -2036,6 +2036,11 @@ message LoadBalancerIngress {
|
||||
// (typically AWS load-balancers)
|
||||
// +optional
|
||||
optional string hostname = 2;
|
||||
|
||||
// IPMode specifies the IP mode to use for this ingress
|
||||
// Defaults to `VIP` if IP is set, null otherwise
|
||||
// +optional
|
||||
optional string ipMode = 3;
|
||||
}
|
||||
|
||||
// LoadBalancerStatus represents the status of a load-balancer.
|
||||
|
@ -953,6 +953,7 @@ var map_LoadBalancerIngress = map[string]string{
|
||||
"": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.",
|
||||
"ip": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)",
|
||||
"hostname": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)",
|
||||
"ipMode": "IPMode specifies the IP mode to use for this ingress Defaults to `VIP` if IP is set, null otherwise",
|
||||
}
|
||||
|
||||
func (LoadBalancerIngress) SwaggerDoc() map[string]string {
|
||||
|
@ -2144,6 +2144,11 @@ func (in *List) DeepCopyObject() runtime.Object {
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *LoadBalancerIngress) DeepCopyInto(out *LoadBalancerIngress) {
|
||||
*out = *in
|
||||
if in.IPMode != nil {
|
||||
in, out := &in.IPMode, &out.IPMode
|
||||
*out = new(LoadBalancerIPMode)
|
||||
**out = **in
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
@ -2163,7 +2168,9 @@ func (in *LoadBalancerStatus) DeepCopyInto(out *LoadBalancerStatus) {
|
||||
if in.Ingress != nil {
|
||||
in, out := &in.Ingress, &out.Ingress
|
||||
*out = make([]LoadBalancerIngress, len(*in))
|
||||
copy(*out, *in)
|
||||
for i := range *in {
|
||||
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
|
@ -89,7 +89,8 @@
|
||||
"ingress": [
|
||||
{
|
||||
"ip": "31",
|
||||
"hostname": "32"
|
||||
"hostname": "32",
|
||||
"ipMode": "ƕP喂ƈ"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Binary file not shown.
@ -66,3 +66,4 @@ status:
|
||||
ingress:
|
||||
- hostname: "32"
|
||||
ip: "31"
|
||||
ipMode: ƕP喂ƈ
|
||||
|
@ -87,7 +87,8 @@
|
||||
"ingress": [
|
||||
{
|
||||
"ip": "33",
|
||||
"hostname": "34"
|
||||
"hostname": "34",
|
||||
"ipMode": "ěĂ凗蓏Ŋ蛊ĉy緅縕"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Binary file not shown.
@ -60,3 +60,4 @@ status:
|
||||
ingress:
|
||||
- hostname: "34"
|
||||
ip: "33"
|
||||
ipMode: ěĂ凗蓏Ŋ蛊ĉy緅縕
|
||||
|
@ -97,7 +97,8 @@
|
||||
"ingress": [
|
||||
{
|
||||
"ip": "34",
|
||||
"hostname": "35"
|
||||
"hostname": "35",
|
||||
"ipMode": "ɑ"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Binary file not shown.
@ -66,3 +66,4 @@ status:
|
||||
ingress:
|
||||
- hostname: "35"
|
||||
ip: "34"
|
||||
ipMode: ɑ
|
||||
|
@ -87,7 +87,8 @@
|
||||
"ingress": [
|
||||
{
|
||||
"ip": "33",
|
||||
"hostname": "34"
|
||||
"hostname": "34",
|
||||
"ipMode": "ěĂ凗蓏Ŋ蛊ĉy緅縕"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Binary file not shown.
@ -60,3 +60,4 @@ status:
|
||||
ingress:
|
||||
- hostname: "34"
|
||||
ip: "33"
|
||||
ipMode: ěĂ凗蓏Ŋ蛊ĉy緅縕
|
||||
|
Loading…
Reference in New Issue
Block a user