summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2018-03-22 20:58:16 +0100
committerGitHub <noreply@github.com>2018-03-22 20:58:16 +0100
commitd09187e7d25ad161fa079486e6752f300020f52e (patch)
tree6b26d1fb40ef1dfbcfa11a678af9c78cda0b6022
parentf7b46e37f0cff70c15211dd82afc971434bb1598 (diff)
parente47b118d9ff4eab7bb324d4f6b9724955e776dcf (diff)
Merge pull request #5415 from vespa-engine/jvenstad/add-cd-aws-job
Add job for cd aws zone
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/DeploymentJobs.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/DeploymentJobs.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/DeploymentJobs.java
index 01a45d3567f..a15102148e2 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/DeploymentJobs.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/DeploymentJobs.java
@@ -179,6 +179,7 @@ public class DeploymentJobs {
productionApSoutheast1 ("production-ap-southeast-1" , ZoneId.from("prod" , "ap-southeast-1") , null ),
productionEuWest1 ("production-eu-west-1" , ZoneId.from("prod" , "eu-west-1") , null ),
productionAwsUsEast1a ("production-aws-us-east-1a" , ZoneId.from("prod" , "aws-us-east-1a") , null ),
+ productionCdUsEast1a ("production-cd-us-east-1a" , null , ZoneId.from("prod" , "cd-us-east-1a") ),
productionCdUsCentral1 ("production-cd-us-central-1", null , ZoneId.from("prod" , "cd-us-central-1")),
productionCdUsCentral2 ("production-cd-us-central-2", null , ZoneId.from("prod" , "cd-us-central-2"));