diff --git a/operator/v1/types_ingress.go b/operator/v1/types_ingress.go index 9223d55939e..52dd66a9816 100644 --- a/operator/v1/types_ingress.go +++ b/operator/v1/types_ingress.go @@ -249,19 +249,16 @@ type EndpointPublishingStrategy struct { // loadBalancer holds parameters for the load balancer. Present only if // type is LoadBalancerService. // +optional - // +nullable LoadBalancer *LoadBalancerStrategy `json:"loadBalancer,omitempty"` // hostNetwork holds parameters for the HostNetwork endpoint publishing // strategy. Present only if type is HostNetwork. // +optional - // +nullable HostNetwork *HostNetworkStrategy `json:"hostNetwork,omitempty"` // private holds parameters for the Private endpoint publishing // strategy. Present only if type is Private. // +optional - // +nullable Private *PrivateStrategy `json:"private,omitempty"` }