Struct fluvio_cluster::SysConfig[][src]

pub struct SysConfig {
    pub cloud: String,
    pub namespace: String,
    pub chart_location: ChartLocation,
    pub chart_version: String,
}

Configuration options for installing Fluvio system charts

Fields

cloud: String

The type of cloud infrastructure the cluster will be running on

Example

builder.cloud("minikube");
namespace: String

The namespace in which to install the system chart

Example

builder.namespace("fluvio");
chart_location: ChartLocation

The location at which to find the system chart to install

chart_version: String

The version of the system chart to install (REQUIRED).

Example

builder.chart_version("0.6.1");

Implementations

impl SysConfig[src]

pub fn builder<S: Into<String>>(chart_version: S) -> SysConfigBuilder[src]

Creates a default SysConfigBuilder.

The required argument chart_version must be provdied when constructing the builder.

Example

use fluvio_cluster::SysConfig;
let builder = SysConfig::builder("0.7.0-alpha.1");

Trait Implementations

impl Clone for SysConfig[src]

impl Debug for SysConfig[src]

Auto Trait Implementations

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> Erased for T

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

impl<T> Instrument 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]