diff --git a/client/management/v3/zz_generated_cluster.go b/client/management/v3/zz_generated_cluster.go index e656665f..4e424f8f 100644 --- a/client/management/v3/zz_generated_cluster.go +++ b/client/management/v3/zz_generated_cluster.go @@ -34,6 +34,7 @@ const ( ClusterFieldFailedSpec = "failedSpec" ClusterFieldImportedConfig = "importedConfig" ClusterFieldInternal = "internal" + ClusterFieldIstioEnabled = "istioEnabled" ClusterFieldLabels = "labels" ClusterFieldLimits = "limits" ClusterFieldLocalClusterAuthEndpoint = "localClusterAuthEndpoint" @@ -80,6 +81,7 @@ type Cluster struct { FailedSpec *ClusterSpec `json:"failedSpec,omitempty" yaml:"failedSpec,omitempty"` ImportedConfig *ImportedConfig `json:"importedConfig,omitempty" yaml:"importedConfig,omitempty"` Internal bool `json:"internal,omitempty" yaml:"internal,omitempty"` + IstioEnabled bool `json:"istioEnabled,omitempty" yaml:"istioEnabled,omitempty"` Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"` Limits map[string]string `json:"limits,omitempty" yaml:"limits,omitempty"` LocalClusterAuthEndpoint *LocalClusterAuthEndpoint `json:"localClusterAuthEndpoint,omitempty" yaml:"localClusterAuthEndpoint,omitempty"` diff --git a/client/management/v3/zz_generated_cluster_status.go b/client/management/v3/zz_generated_cluster_status.go index c52f5e10..455945f1 100644 --- a/client/management/v3/zz_generated_cluster_status.go +++ b/client/management/v3/zz_generated_cluster_status.go @@ -16,6 +16,7 @@ const ( ClusterStatusFieldConditions = "conditions" ClusterStatusFieldDriver = "driver" ClusterStatusFieldFailedSpec = "failedSpec" + ClusterStatusFieldIstioEnabled = "istioEnabled" ClusterStatusFieldLimits = "limits" ClusterStatusFieldMonitoringStatus = "monitoringStatus" ClusterStatusFieldRequested = "requested" @@ -37,6 +38,7 @@ type ClusterStatus struct { Conditions []ClusterCondition `json:"conditions,omitempty" yaml:"conditions,omitempty"` Driver string `json:"driver,omitempty" yaml:"driver,omitempty"` FailedSpec *ClusterSpec `json:"failedSpec,omitempty" yaml:"failedSpec,omitempty"` + IstioEnabled bool `json:"istioEnabled,omitempty" yaml:"istioEnabled,omitempty"` Limits map[string]string `json:"limits,omitempty" yaml:"limits,omitempty"` MonitoringStatus *MonitoringStatus `json:"monitoringStatus,omitempty" yaml:"monitoringStatus,omitempty"` Requested map[string]string `json:"requested,omitempty" yaml:"requested,omitempty"`