Struct k8s_cluster_api::v1beta1::bootstrap::kubeadm::BootstrapTokenDiscovery
source · [−]pub struct BootstrapTokenDiscovery {
pub token: String,
pub api_server_endpoint: Option<String>,
pub ca_cert_hashes: Vec<String>,
pub unsafe_skip_ca_verification: Option<bool>,
}
Expand description
BootstrapTokenDiscovery is used to set the options for bootstrap token based discovery.
Fields
token: String
Token is a token used to validate cluster information fetched from the control-plane.
api_server_endpoint: Option<String>
APIServerEndpoint is an IP or domain name to the API server from which info will be fetched.
ca_cert_hashes: Vec<String>
CACertHashes specifies a set of public key pins to verify
when token-based discovery is used. The root CA found during discovery
must match one of these values. Specifying an empty set disables root CA
pinning, which can be unsafe. Each hash is specified as “
unsafe_skip_ca_verification: Option<bool>
Trait Implementations
sourceimpl Clone for BootstrapTokenDiscovery
impl Clone for BootstrapTokenDiscovery
sourcefn clone(&self) -> BootstrapTokenDiscovery
fn clone(&self) -> BootstrapTokenDiscovery
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for BootstrapTokenDiscovery
impl Debug for BootstrapTokenDiscovery
sourceimpl<'de> Deserialize<'de> for BootstrapTokenDiscovery
impl<'de> Deserialize<'de> for BootstrapTokenDiscovery
sourcefn 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
sourceimpl Serialize for BootstrapTokenDiscovery
impl Serialize for BootstrapTokenDiscovery
Auto Trait Implementations
impl RefUnwindSafe for BootstrapTokenDiscovery
impl Send for BootstrapTokenDiscovery
impl Sync for BootstrapTokenDiscovery
impl Unpin for BootstrapTokenDiscovery
impl UnwindSafe for BootstrapTokenDiscovery
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
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
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more