summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorHarald Musum <musum@verizonmedia.com>2019-02-21 08:20:09 +0100
committerGitHub <noreply@github.com>2019-02-21 08:20:09 +0100
commit5d79269b8f6f74286436f09d9bdc2d3c2c38a41d (patch)
treecfee7547b4b2925d57fe817d91ddaf97a7e50f6c /controller-api
parent06d5832b2551a07da12f9810478301044bd75c0a (diff)
parent399755a225eb37deda9afccb9b5a30d11f6dfd62 (diff)
Merge pull request #7698 from vespa-engine/hmusum/add-zone
Add new cd zone
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/JobType.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/JobType.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/JobType.java
index cee8d3ddfd9..1dd9da6dc32 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/JobType.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/JobType.java
@@ -28,7 +28,9 @@ public enum JobType {
productionAwsUsEast1b ("production-aws-us-east-1b" , ZoneId.from("prod" , "aws-us-east-1b") , null ),
productionCdAwsUsEast1a("production-cd-aws-us-east-1a", null , ZoneId.from("prod" , "cd-aws-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") );
+ // TODO: Cannot remove production-cd-us-central-2 until we know there are no serialized data in controller referencing it
+ productionCdUsCentral2 ("production-cd-us-central-2" , null , ZoneId.from("prod" , "cd-us-central-2") ),
+ productionCdUsWest1 ("production-cd-us-west-1" , null , ZoneId.from("prod" , "cd-us-west-1") );
private final String jobName;
private final ImmutableMap<SystemName, ZoneId> zones;