podman-rest-client 0.13.0

Interface for querying the podman REST API. Supports connections over SSH.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Default, Debug)]
pub struct KubeApplyLibpod<'a> {
    /// Path to the CA cert file for the Kubernetes cluster.
    pub ca_cert_file: Option<&'a str>,
    /// Path to the kubeconfig file for the Kubernetes cluster.
    pub kube_config: Option<&'a str>,
    /// The namespace to deploy the workload to on the Kubernetes cluster.
    pub namespace: Option<&'a str>,
    /// Create a service object for the container being deployed.
    pub service: Option<bool>,
    /// Path to the Kubernetes yaml file to deploy.
    pub file: Option<&'a str>,
}