#[non_exhaustive]pub struct AddonsConfig {Show 16 fields
pub http_load_balancing: Option<HttpLoadBalancing>,
pub horizontal_pod_autoscaling: Option<HorizontalPodAutoscaling>,
pub kubernetes_dashboard: Option<KubernetesDashboard>,
pub network_policy_config: Option<NetworkPolicyConfig>,
pub cloud_run_config: Option<CloudRunConfig>,
pub dns_cache_config: Option<DnsCacheConfig>,
pub config_connector_config: Option<ConfigConnectorConfig>,
pub gce_persistent_disk_csi_driver_config: Option<GcePersistentDiskCsiDriverConfig>,
pub gcp_filestore_csi_driver_config: Option<GcpFilestoreCsiDriverConfig>,
pub gke_backup_agent_config: Option<GkeBackupAgentConfig>,
pub gcs_fuse_csi_driver_config: Option<GcsFuseCsiDriverConfig>,
pub stateful_ha_config: Option<StatefulHAConfig>,
pub parallelstore_csi_driver_config: Option<ParallelstoreCsiDriverConfig>,
pub ray_operator_config: Option<RayOperatorConfig>,
pub high_scale_checkpointing_config: Option<HighScaleCheckpointingConfig>,
pub lustre_csi_driver_config: Option<LustreCsiDriverConfig>,
/* private fields */
}Expand description
Configuration for the addons that can be automatically spun up in the cluster, enabling additional functionality.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.http_load_balancing: Option<HttpLoadBalancing>Configuration for the HTTP (L7) load balancing controller addon, which makes it easy to set up HTTP load balancers for services in a cluster.
horizontal_pod_autoscaling: Option<HorizontalPodAutoscaling>Configuration for the horizontal pod autoscaling feature, which increases or decreases the number of replica pods a replication controller has based on the resource usage of the existing pods.
kubernetes_dashboard: Option<KubernetesDashboard>Configuration for the Kubernetes Dashboard. This addon is deprecated, and will be disabled in 1.15. It is recommended to use the Cloud Console to manage and monitor your Kubernetes clusters, workloads and applications. For more information, see: https://cloud.google.com/kubernetes-engine/docs/concepts/dashboards
network_policy_config: Option<NetworkPolicyConfig>Configuration for NetworkPolicy. This only tracks whether the addon is enabled or not on the Master, it does not track whether network policy is enabled for the nodes.
cloud_run_config: Option<CloudRunConfig>Configuration for the Cloud Run addon, which allows the user to use a managed Knative service.
dns_cache_config: Option<DnsCacheConfig>Configuration for NodeLocalDNS, a dns cache running on cluster nodes
config_connector_config: Option<ConfigConnectorConfig>Configuration for the ConfigConnector add-on, a Kubernetes extension to manage hosted Google Cloud services through the Kubernetes API.
gce_persistent_disk_csi_driver_config: Option<GcePersistentDiskCsiDriverConfig>Configuration for the Compute Engine Persistent Disk CSI driver.
gcp_filestore_csi_driver_config: Option<GcpFilestoreCsiDriverConfig>Configuration for the Filestore CSI driver.
gke_backup_agent_config: Option<GkeBackupAgentConfig>Configuration for the Backup for GKE agent addon.
gcs_fuse_csi_driver_config: Option<GcsFuseCsiDriverConfig>Configuration for the Cloud Storage Fuse CSI driver.
stateful_ha_config: Option<StatefulHAConfig>Optional. Configuration for the StatefulHA add-on.
parallelstore_csi_driver_config: Option<ParallelstoreCsiDriverConfig>Configuration for the Cloud Storage Parallelstore CSI driver.
ray_operator_config: Option<RayOperatorConfig>Optional. Configuration for Ray Operator addon.
high_scale_checkpointing_config: Option<HighScaleCheckpointingConfig>Configuration for the High Scale Checkpointing add-on.
lustre_csi_driver_config: Option<LustreCsiDriverConfig>Configuration for the Lustre CSI driver.
Implementations§
Source§impl AddonsConfig
impl AddonsConfig
pub fn new() -> Self
Sourcepub fn set_http_load_balancing<T>(self, v: T) -> Selfwhere
T: Into<HttpLoadBalancing>,
pub fn set_http_load_balancing<T>(self, v: T) -> Selfwhere
T: Into<HttpLoadBalancing>,
Sets the value of http_load_balancing.
Sourcepub fn set_or_clear_http_load_balancing<T>(self, v: Option<T>) -> Selfwhere
T: Into<HttpLoadBalancing>,
pub fn set_or_clear_http_load_balancing<T>(self, v: Option<T>) -> Selfwhere
T: Into<HttpLoadBalancing>,
Sets or clears the value of http_load_balancing.
Sourcepub fn set_horizontal_pod_autoscaling<T>(self, v: T) -> Selfwhere
T: Into<HorizontalPodAutoscaling>,
pub fn set_horizontal_pod_autoscaling<T>(self, v: T) -> Selfwhere
T: Into<HorizontalPodAutoscaling>,
Sets the value of horizontal_pod_autoscaling.
Sourcepub fn set_or_clear_horizontal_pod_autoscaling<T>(self, v: Option<T>) -> Selfwhere
T: Into<HorizontalPodAutoscaling>,
pub fn set_or_clear_horizontal_pod_autoscaling<T>(self, v: Option<T>) -> Selfwhere
T: Into<HorizontalPodAutoscaling>,
Sets or clears the value of horizontal_pod_autoscaling.
Sourcepub fn set_kubernetes_dashboard<T>(self, v: T) -> Selfwhere
T: Into<KubernetesDashboard>,
👎Deprecated
pub fn set_kubernetes_dashboard<T>(self, v: T) -> Selfwhere
T: Into<KubernetesDashboard>,
Sets the value of kubernetes_dashboard.
Sourcepub fn set_or_clear_kubernetes_dashboard<T>(self, v: Option<T>) -> Selfwhere
T: Into<KubernetesDashboard>,
👎Deprecated
pub fn set_or_clear_kubernetes_dashboard<T>(self, v: Option<T>) -> Selfwhere
T: Into<KubernetesDashboard>,
Sets or clears the value of kubernetes_dashboard.
Sourcepub fn set_network_policy_config<T>(self, v: T) -> Selfwhere
T: Into<NetworkPolicyConfig>,
pub fn set_network_policy_config<T>(self, v: T) -> Selfwhere
T: Into<NetworkPolicyConfig>,
Sets the value of network_policy_config.
Sourcepub fn set_or_clear_network_policy_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<NetworkPolicyConfig>,
pub fn set_or_clear_network_policy_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<NetworkPolicyConfig>,
Sets or clears the value of network_policy_config.
Sourcepub fn set_cloud_run_config<T>(self, v: T) -> Selfwhere
T: Into<CloudRunConfig>,
pub fn set_cloud_run_config<T>(self, v: T) -> Selfwhere
T: Into<CloudRunConfig>,
Sets the value of cloud_run_config.
Sourcepub fn set_or_clear_cloud_run_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<CloudRunConfig>,
pub fn set_or_clear_cloud_run_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<CloudRunConfig>,
Sets or clears the value of cloud_run_config.
Sourcepub fn set_dns_cache_config<T>(self, v: T) -> Selfwhere
T: Into<DnsCacheConfig>,
pub fn set_dns_cache_config<T>(self, v: T) -> Selfwhere
T: Into<DnsCacheConfig>,
Sets the value of dns_cache_config.
Sourcepub fn set_or_clear_dns_cache_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<DnsCacheConfig>,
pub fn set_or_clear_dns_cache_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<DnsCacheConfig>,
Sets or clears the value of dns_cache_config.
Sourcepub fn set_config_connector_config<T>(self, v: T) -> Selfwhere
T: Into<ConfigConnectorConfig>,
pub fn set_config_connector_config<T>(self, v: T) -> Selfwhere
T: Into<ConfigConnectorConfig>,
Sets the value of config_connector_config.
Sourcepub fn set_or_clear_config_connector_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<ConfigConnectorConfig>,
pub fn set_or_clear_config_connector_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<ConfigConnectorConfig>,
Sets or clears the value of config_connector_config.
Sourcepub fn set_gce_persistent_disk_csi_driver_config<T>(self, v: T) -> Selfwhere
T: Into<GcePersistentDiskCsiDriverConfig>,
pub fn set_gce_persistent_disk_csi_driver_config<T>(self, v: T) -> Selfwhere
T: Into<GcePersistentDiskCsiDriverConfig>,
Sets the value of gce_persistent_disk_csi_driver_config.
Sourcepub fn set_or_clear_gce_persistent_disk_csi_driver_config<T>(
self,
v: Option<T>,
) -> Selfwhere
T: Into<GcePersistentDiskCsiDriverConfig>,
pub fn set_or_clear_gce_persistent_disk_csi_driver_config<T>(
self,
v: Option<T>,
) -> Selfwhere
T: Into<GcePersistentDiskCsiDriverConfig>,
Sets or clears the value of gce_persistent_disk_csi_driver_config.
Sourcepub fn set_gcp_filestore_csi_driver_config<T>(self, v: T) -> Selfwhere
T: Into<GcpFilestoreCsiDriverConfig>,
pub fn set_gcp_filestore_csi_driver_config<T>(self, v: T) -> Selfwhere
T: Into<GcpFilestoreCsiDriverConfig>,
Sets the value of gcp_filestore_csi_driver_config.
Sourcepub fn set_or_clear_gcp_filestore_csi_driver_config<T>(
self,
v: Option<T>,
) -> Selfwhere
T: Into<GcpFilestoreCsiDriverConfig>,
pub fn set_or_clear_gcp_filestore_csi_driver_config<T>(
self,
v: Option<T>,
) -> Selfwhere
T: Into<GcpFilestoreCsiDriverConfig>,
Sets or clears the value of gcp_filestore_csi_driver_config.
Sourcepub fn set_gke_backup_agent_config<T>(self, v: T) -> Selfwhere
T: Into<GkeBackupAgentConfig>,
pub fn set_gke_backup_agent_config<T>(self, v: T) -> Selfwhere
T: Into<GkeBackupAgentConfig>,
Sets the value of gke_backup_agent_config.
Sourcepub fn set_or_clear_gke_backup_agent_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<GkeBackupAgentConfig>,
pub fn set_or_clear_gke_backup_agent_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<GkeBackupAgentConfig>,
Sets or clears the value of gke_backup_agent_config.
Sourcepub fn set_gcs_fuse_csi_driver_config<T>(self, v: T) -> Selfwhere
T: Into<GcsFuseCsiDriverConfig>,
pub fn set_gcs_fuse_csi_driver_config<T>(self, v: T) -> Selfwhere
T: Into<GcsFuseCsiDriverConfig>,
Sets the value of gcs_fuse_csi_driver_config.
Sourcepub fn set_or_clear_gcs_fuse_csi_driver_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<GcsFuseCsiDriverConfig>,
pub fn set_or_clear_gcs_fuse_csi_driver_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<GcsFuseCsiDriverConfig>,
Sets or clears the value of gcs_fuse_csi_driver_config.
Sourcepub fn set_stateful_ha_config<T>(self, v: T) -> Selfwhere
T: Into<StatefulHAConfig>,
pub fn set_stateful_ha_config<T>(self, v: T) -> Selfwhere
T: Into<StatefulHAConfig>,
Sets the value of stateful_ha_config.
Sourcepub fn set_or_clear_stateful_ha_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<StatefulHAConfig>,
pub fn set_or_clear_stateful_ha_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<StatefulHAConfig>,
Sets or clears the value of stateful_ha_config.
Sourcepub fn set_parallelstore_csi_driver_config<T>(self, v: T) -> Selfwhere
T: Into<ParallelstoreCsiDriverConfig>,
pub fn set_parallelstore_csi_driver_config<T>(self, v: T) -> Selfwhere
T: Into<ParallelstoreCsiDriverConfig>,
Sets the value of parallelstore_csi_driver_config.
Sourcepub fn set_or_clear_parallelstore_csi_driver_config<T>(
self,
v: Option<T>,
) -> Selfwhere
T: Into<ParallelstoreCsiDriverConfig>,
pub fn set_or_clear_parallelstore_csi_driver_config<T>(
self,
v: Option<T>,
) -> Selfwhere
T: Into<ParallelstoreCsiDriverConfig>,
Sets or clears the value of parallelstore_csi_driver_config.
Sourcepub fn set_ray_operator_config<T>(self, v: T) -> Selfwhere
T: Into<RayOperatorConfig>,
pub fn set_ray_operator_config<T>(self, v: T) -> Selfwhere
T: Into<RayOperatorConfig>,
Sets the value of ray_operator_config.
Sourcepub fn set_or_clear_ray_operator_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<RayOperatorConfig>,
pub fn set_or_clear_ray_operator_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<RayOperatorConfig>,
Sets or clears the value of ray_operator_config.
Sourcepub fn set_high_scale_checkpointing_config<T>(self, v: T) -> Selfwhere
T: Into<HighScaleCheckpointingConfig>,
pub fn set_high_scale_checkpointing_config<T>(self, v: T) -> Selfwhere
T: Into<HighScaleCheckpointingConfig>,
Sets the value of high_scale_checkpointing_config.
Sourcepub fn set_or_clear_high_scale_checkpointing_config<T>(
self,
v: Option<T>,
) -> Selfwhere
T: Into<HighScaleCheckpointingConfig>,
pub fn set_or_clear_high_scale_checkpointing_config<T>(
self,
v: Option<T>,
) -> Selfwhere
T: Into<HighScaleCheckpointingConfig>,
Sets or clears the value of high_scale_checkpointing_config.
Sourcepub fn set_lustre_csi_driver_config<T>(self, v: T) -> Selfwhere
T: Into<LustreCsiDriverConfig>,
pub fn set_lustre_csi_driver_config<T>(self, v: T) -> Selfwhere
T: Into<LustreCsiDriverConfig>,
Sets the value of lustre_csi_driver_config.
Sourcepub fn set_or_clear_lustre_csi_driver_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<LustreCsiDriverConfig>,
pub fn set_or_clear_lustre_csi_driver_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<LustreCsiDriverConfig>,
Sets or clears the value of lustre_csi_driver_config.
Trait Implementations§
Source§impl Clone for AddonsConfig
impl Clone for AddonsConfig
Source§fn clone(&self) -> AddonsConfig
fn clone(&self) -> AddonsConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more