Trait conductor::cmd::CommandUp [] [src]

pub trait CommandUp {
    fn up_all<CR>(&self, runner: &CR, ovr: &Override) -> Result<()Error> where CR: CommandRunner;
    fn up<CR>(&self, runner: &CR, ovr: &Override, pod_names: &[&str]) -> Result<()Error> where CR: CommandRunner;
}

We implement conductor up with a trait so we put it in its own module.

Required Methods

Up all the images associated with a project.

Up all the images in the specified pods.

Implementors