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