pub struct IPAllocationPolicy {
Show 20 fields pub additional_pod_ranges_config: Option<AdditionalPodRangesConfig>, pub cluster_ipv4_cidr: Option<String>, pub cluster_ipv4_cidr_block: Option<String>, pub cluster_secondary_range_name: Option<String>, pub create_subnetwork: Option<bool>, pub default_pod_ipv4_range_utilization: Option<f64>, pub ipv6_access_type: Option<String>, pub node_ipv4_cidr: Option<String>, pub node_ipv4_cidr_block: Option<String>, pub pod_cidr_overprovision_config: Option<PodCIDROverprovisionConfig>, pub services_ipv4_cidr: Option<String>, pub services_ipv4_cidr_block: Option<String>, pub services_ipv6_cidr_block: Option<String>, pub services_secondary_range_name: Option<String>, pub stack_type: Option<String>, pub subnet_ipv6_cidr_block: Option<String>, pub subnetwork_name: Option<String>, pub tpu_ipv4_cidr_block: Option<String>, pub use_ip_aliases: Option<bool>, pub use_routes: Option<bool>,
}
Expand description

Configuration for controlling how IPs are allocated in the cluster.

This type is not used in any activity, and only used as part of another schema.

Fields§

§additional_pod_ranges_config: Option<AdditionalPodRangesConfig>

Output only. [Output only] The additional pod ranges that are added to the cluster. These pod ranges can be used by new node pools to allocate pod IPs automatically. Once the range is removed it will not show up in IPAllocationPolicy.

§cluster_ipv4_cidr: Option<String>

This field is deprecated, use cluster_ipv4_cidr_block.

§cluster_ipv4_cidr_block: Option<String>

The IP address range for the cluster pod IPs. If this field is set, then cluster.cluster_ipv4_cidr must be left blank. This field is only applicable when use_ip_aliases is true. Set to blank to have a range chosen with the default size. Set to /netmask (e.g. /14) to have a range chosen with a specific netmask. Set to a CIDR notation (e.g. 10.96.0.0/14) from the RFC-1918 private networks (e.g. 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) to pick a specific range to use.

§cluster_secondary_range_name: Option<String>

The name of the secondary range to be used for the cluster CIDR block. The secondary range will be used for pod IP addresses. This must be an existing secondary range associated with the cluster subnetwork. This field is only applicable with use_ip_aliases is true and create_subnetwork is false.

§create_subnetwork: Option<bool>

Whether a new subnetwork will be created automatically for the cluster. This field is only applicable when use_ip_aliases is true.

§default_pod_ipv4_range_utilization: Option<f64>

Output only. [Output only] The utilization of the cluster default IPv4 range for the pod. The ratio is Usage/[Total number of IPs in the secondary range], Usage=numNodesnumZonespodIPsPerNode.

§ipv6_access_type: Option<String>

The ipv6 access type (internal or external) when create_subnetwork is true

§node_ipv4_cidr: Option<String>

This field is deprecated, use node_ipv4_cidr_block.

§node_ipv4_cidr_block: Option<String>

The IP address range of the instance IPs in this cluster. This is applicable only if create_subnetwork is true. Set to blank to have a range chosen with the default size. Set to /netmask (e.g. /14) to have a range chosen with a specific netmask. Set to a CIDR notation (e.g. 10.96.0.0/14) from the RFC-1918 private networks (e.g. 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) to pick a specific range to use.

§pod_cidr_overprovision_config: Option<PodCIDROverprovisionConfig>

[PRIVATE FIELD] Pod CIDR size overprovisioning config for the cluster. Pod CIDR size per node depends on max_pods_per_node. By default, the value of max_pods_per_node is doubled and then rounded off to next power of 2 to get the size of pod CIDR block per node. Example: max_pods_per_node of 30 would result in 64 IPs (/26). This config can disable the doubling of IPs (we still round off to next power of 2) Example: max_pods_per_node of 30 will result in 32 IPs (/27) when overprovisioning is disabled.

§services_ipv4_cidr: Option<String>

This field is deprecated, use services_ipv4_cidr_block.

§services_ipv4_cidr_block: Option<String>

The IP address range of the services IPs in this cluster. If blank, a range will be automatically chosen with the default size. This field is only applicable when use_ip_aliases is true. Set to blank to have a range chosen with the default size. Set to /netmask (e.g. /14) to have a range chosen with a specific netmask. Set to a CIDR notation (e.g. 10.96.0.0/14) from the RFC-1918 private networks (e.g. 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) to pick a specific range to use.

§services_ipv6_cidr_block: Option<String>

Output only. [Output only] The services IPv6 CIDR block for the cluster.

§services_secondary_range_name: Option<String>

The name of the secondary range to be used as for the services CIDR block. The secondary range will be used for service ClusterIPs. This must be an existing secondary range associated with the cluster subnetwork. This field is only applicable with use_ip_aliases is true and create_subnetwork is false.

§stack_type: Option<String>

The IP stack type of the cluster

§subnet_ipv6_cidr_block: Option<String>

Output only. [Output only] The subnet’s IPv6 CIDR block used by nodes and pods.

§subnetwork_name: Option<String>

A custom subnetwork name to be used if create_subnetwork is true. If this field is empty, then an automatic name will be chosen for the new subnetwork.

§tpu_ipv4_cidr_block: Option<String>

The IP address range of the Cloud TPUs in this cluster. If unspecified, a range will be automatically chosen with the default size. This field is only applicable when use_ip_aliases is true. If unspecified, the range will use the default size. Set to /netmask (e.g. /14) to have a range chosen with a specific netmask. Set to a CIDR notation (e.g. 10.96.0.0/14) from the RFC-1918 private networks (e.g. 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) to pick a specific range to use.

§use_ip_aliases: Option<bool>

Whether alias IPs will be used for pod IPs in the cluster. This is used in conjunction with use_routes. It cannot be true if use_routes is true. If both use_ip_aliases and use_routes are false, then the server picks the default IP allocation mode

§use_routes: Option<bool>

Whether routes will be used for pod IPs in the cluster. This is used in conjunction with use_ip_aliases. It cannot be true if use_ip_aliases is true. If both use_ip_aliases and use_routes are false, then the server picks the default IP allocation mode

Trait Implementations§

source§

impl Clone for IPAllocationPolicy

source§

fn clone(&self) -> IPAllocationPolicy

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for IPAllocationPolicy

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for IPAllocationPolicy

source§

fn default() -> IPAllocationPolicy

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for IPAllocationPolicy

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for IPAllocationPolicy

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Part for IPAllocationPolicy

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,