Skip to content

Commit

Permalink
deploy-job ImagePullPolicy=Always by default (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
koropets authored Dec 8, 2020
1 parent 8259af1 commit 972267e
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 @@ -120,6 +120,7 @@ impl DeployJob {
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.image_pull_policy = Some("Always".to_string());
container.env = Some(environment);
container.resources = Some(ResourceRequirements {
limits: Some(BTreeMap::from_iter(
Expand Down

0 comments on commit 972267e

Please sign in to comment.