Struct kube_client::config::Cluster [−][src]
pub struct Cluster {
pub server: String,
pub insecure_skip_tls_verify: Option<bool>,
pub certificate_authority: Option<String>,
pub certificate_authority_data: Option<String>,
pub proxy_url: Option<String>,
pub extensions: Option<Vec<NamedExtension>>,
}This is supported on crate feature
config only.Expand description
Cluster stores information to connect Kubernetes cluster.
Fields
server: StringThe address of the kubernetes cluster (https://hostname:port).
insecure_skip_tls_verify: Option<bool>The path to a cert file for the certificate authority.
PEM-encoded certificate authority certificates. Overrides certificate_authority
proxy_url: Option<String>URL to the proxy to be used for all requests.
extensions: Option<Vec<NamedExtension>>Additional information for extenders so that reads and writes don’t clobber unknown fields
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for Cluster
impl UnwindSafe for Cluster
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more