summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2021-03-23 22:12:56 +0100
committerGitHub <noreply@github.com>2021-03-23 22:12:56 +0100
commit1110d14c9c99f29b60f0551c6cd36d549104227b (patch)
tree499f9064e73386b9652e93ec0f6c40aeb3bec05c /controller-api
parent52147b9865e0b3871c8309fa014f09c3d4177875 (diff)
parentf197d1572d3fb7f9abb3b7a7a4449bd9481221e7 (diff)
Merge pull request #17139 from vespa-engine/mpolden/configserver-vip
Always use config server VIP in controller
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/zone/ZoneRegistry.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/zone/ZoneRegistry.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/zone/ZoneRegistry.java
index 3e5606ac278..76637d10a6e 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/zone/ZoneRegistry.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/zone/ZoneRegistry.java
@@ -38,15 +38,9 @@ public interface ZoneRegistry {
/** Returns the default region for the given environment, if one is configured */
Optional<RegionName> getDefaultRegion(Environment environment);
- /** Returns the API endpoints of all known config servers in the given zone */
- List<URI> getConfigServerUris(ZoneId zoneId);
-
/** Returns the URI for the config server VIP in the given zone */
URI getConfigServerVipUri(ZoneId zoneId);
- /** Returns all possible API endpoints of all known config servers and config server VIPs in the given zone */
- List<URI> getConfigServerApiUris(ZoneId zoneId);
-
/** Returns the time to live for deployments in the given zone, or empty if this is infinite */
Optional<Duration> getDeploymentTimeToLive(ZoneId zoneId);