pub struct KubeApplyLibpod<'a> {
    pub ca_cert_file: Option<&'a str>,
    pub kube_config: Option<&'a str>,
    pub namespace: Option<&'a str>,
    pub service: Option<bool>,
    pub file: Option<&'a str>,
}Available on crate feature 
v4 only.Fields§
§ca_cert_file: Option<&'a str>Path to the CA cert file for the Kubernetes cluster.
kube_config: Option<&'a str>Path to the kubeconfig file for the Kubernetes cluster.
namespace: Option<&'a str>The namespace to deploy the workload to on the Kubernetes cluster.
service: Option<bool>Create a service object for the container being deployed.
file: Option<&'a str>Path to the Kubernetes yaml file to deploy.
Trait Implementations§
Source§impl<'a> Debug for KubeApplyLibpod<'a>
 
impl<'a> Debug for KubeApplyLibpod<'a>
Source§impl<'a> Default for KubeApplyLibpod<'a>
 
impl<'a> Default for KubeApplyLibpod<'a>
Source§fn default() -> KubeApplyLibpod<'a>
 
fn default() -> KubeApplyLibpod<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for KubeApplyLibpod<'a>
impl<'a> RefUnwindSafe for KubeApplyLibpod<'a>
impl<'a> Send for KubeApplyLibpod<'a>
impl<'a> Sync for KubeApplyLibpod<'a>
impl<'a> Unpin for KubeApplyLibpod<'a>
impl<'a> UnwindSafe for KubeApplyLibpod<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more