Skip to content

Commit

Permalink
Explicitly specifying command for deploy-job (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
koropets authored Dec 8, 2020
1 parent 09cd336 commit 8259af1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/deploy_job.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ impl DeployJob {
let mut container = Container::default();
container.name = "gordo-deploy".to_string();
container.image = Some(format!("{}:{}", &env_config.deploy_image, &gordo.spec.deploy_version));
container.command = Some(vec!["bash".to_string(), "./run_workflow_and_argo.sh".to_string()]);
container.env = Some(environment);
container.resources = Some(ResourceRequirements {
limits: Some(BTreeMap::from_iter(
Expand Down

0 comments on commit 8259af1

Please sign in to comment.