diff --git a/pkg/api/admin/openshiftcluster.go b/pkg/api/admin/openshiftcluster.go index 187fc98c596..12f2466c1fd 100644 --- a/pkg/api/admin/openshiftcluster.go +++ b/pkg/api/admin/openshiftcluster.go @@ -148,15 +148,15 @@ type ResourceReference struct { // LoadbalancerProfile represents the profile of the cluster public loadbalancer. type LoadbalancerProfile struct { // The desired managed outbound IPs for the cluster public load balancer. - ManagedOutboundIPs *ManagedOutboundIPs `json:"managedOutboundIps,omitempty" mutable:"true"` + ManagedOutboundIPs *ManagedOutboundIPs `json:"managedOutboundIps,omitempty"` // The list of effective outbound IP addresses of the public load balancer. EffectiveOutboundIPs []EffectiveOutboundIP `json:"effectiveOutboundIps,omitempty"` // The desired outbound IP resources for the cluster load balancer. - OutboundIPs []OutboundIP `json:"outboundIps,omitempty" mutable:"true"` + OutboundIPs []OutboundIP `json:"outboundIps,omitempty"` // The desired outbound IP Prefix resources for the cluster load balancer. - OutboundIPPrefixes []OutboundIPPrefix `json:"outboundIpPrefixes,omitempty" mutable:"true"` + OutboundIPPrefixes []OutboundIPPrefix `json:"outboundIpPrefixes,omitempty"` // The desired number of allocated SNAT ports per VM. Allowed values are in the range of 0 to 64000 (inclusive). The default value is 1024. - AllocatedOutboundPorts *int `json:"allocatedOutboundPorts,omitempty" mutable:"true"` + AllocatedOutboundPorts *int `json:"allocatedOutboundPorts,omitempty"` } // EffectiveOutboundIP represents an effective outbound IP resource of the cluster public load balancer. diff --git a/pkg/api/openshiftcluster.go b/pkg/api/openshiftcluster.go index a530ab546c7..12b257ee7ec 100644 --- a/pkg/api/openshiftcluster.go +++ b/pkg/api/openshiftcluster.go @@ -270,15 +270,15 @@ type ResourceReference struct { // LoadbalancerProfile represents the profile of the cluster public loadbalancer. type LoadbalancerProfile struct { // The desired managed outbound IPs for the cluster public load balancer. - ManagedOutboundIPs *ManagedOutboundIPs `json:"managedOutboundIps,omitempty" mutable:"true"` + ManagedOutboundIPs *ManagedOutboundIPs `json:"managedOutboundIps,omitempty"` // The list of effective outbound IP addresses of the public load balancer. EffectiveOutboundIPs []EffectiveOutboundIP `json:"effectiveOutboundIps,omitempty"` // The desired outbound IP resources for the cluster load balancer. - OutboundIPs []OutboundIP `json:"outboundIps,omitempty" mutable:"true"` + OutboundIPs []OutboundIP `json:"outboundIps,omitempty"` // The desired outbound IP Prefix resources for the cluster load balancer. - OutboundIPPrefixes []OutboundIPPrefix `json:"outboundIpPrefixes,omitempty" mutable:"true"` + OutboundIPPrefixes []OutboundIPPrefix `json:"outboundIpPrefixes,omitempty"` // The desired number of allocated SNAT ports per VM. Allowed values are in the range of 0 to 64000 (inclusive). The default value is 1024. - AllocatedOutboundPorts *int `json:"allocatedOutboundPorts,omitempty" mutable:"true"` + AllocatedOutboundPorts *int `json:"allocatedOutboundPorts,omitempty"` } // EffectiveOutboundIP represents an effective outbound IP resource of the cluster public load balancer.