Update generated

Signed-off-by: Patrik Cyvoct <patrik@ptrk.io>
This commit is contained in:
Patrik Cyvoct 2020-11-05 11:55:22 +01:00
parent 540901779c
commit 1fd08bc92e
No known key found for this signature in database
GPG Key ID: 4334D82B950FB63A
3 changed files with 8 additions and 4 deletions

View File

@ -7339,7 +7339,7 @@
"type": "string"
},
"ipMode": {
"description": "IPMode specifies the IP mode to use for this ingress Defaults to `VIP` if IP is set, null otherwise",
"description": "IPMode specifies how the load-balancer's IP behaves. Setting this to \"VIP\" indicates that the traffic passing through this load-balancer is delivered with the destination IP and port set to the load-balancer's IP and port. Setting this to \"Proxy\" indicates that the load-balancer acts like a proxy, delivering traffic with the destination IP and port set to the node's IP and nodePort or to the pod's IP and targetPort. This field can only be set when the ip field is also set, and defaults to \"VIP\" if not specified.",
"type": "string"
}
},

View File

@ -2037,8 +2037,12 @@ message LoadBalancerIngress {
// +optional
optional string hostname = 2;
// IPMode specifies the IP mode to use for this ingress
// Defaults to `VIP` if IP is set, null otherwise
// IPMode specifies how the load-balancer's IP behaves.
// Setting this to "VIP" indicates that the traffic passing through
// this load-balancer is delivered with the destination IP and port set to the load-balancer's IP and port.
// Setting this to "Proxy" indicates that the load-balancer acts like a proxy,
// delivering traffic with the destination IP and port set to the node's IP and nodePort or to the pod's IP and targetPort.
// This field can only be set when the ip field is also set, and defaults to "VIP" if not specified.
// +optional
optional string ipMode = 3;
}

View File

@ -953,7 +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",
"ipMode": "IPMode specifies how the load-balancer's IP behaves. Setting this to \"VIP\" indicates that the traffic passing through this load-balancer is delivered with the destination IP and port set to the load-balancer's IP and port. Setting this to \"Proxy\" indicates that the load-balancer acts like a proxy, delivering traffic with the destination IP and port set to the node's IP and nodePort or to the pod's IP and targetPort. This field can only be set when the ip field is also set, and defaults to \"VIP\" if not specified.",
}
func (LoadBalancerIngress) SwaggerDoc() map[string]string {