Struct google_container1::api::LinuxNodeConfig[][src]

pub struct LinuxNodeConfig {
    pub sysctls: Option<HashMap<String, String>>,
}

Parameters that can be configured on Linux nodes.

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

Fields

sysctls: Option<HashMap<String, String>>

The Linux kernel parameters to be applied to the nodes and all pods running on the nodes. The following parameters are supported. net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse

Trait Implementations

impl Clone for LinuxNodeConfig[src]

impl Debug for LinuxNodeConfig[src]

impl Default for LinuxNodeConfig[src]

impl<'de> Deserialize<'de> for LinuxNodeConfig[src]

impl Part for LinuxNodeConfig[src]

impl Serialize for LinuxNodeConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for LinuxNodeConfig[src]

impl Send for LinuxNodeConfig[src]

impl Sync for LinuxNodeConfig[src]

impl Unpin for LinuxNodeConfig[src]

impl UnwindSafe for LinuxNodeConfig[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.