summaryrefslogtreecommitdiffstats
path: root/node-repository/src/main/resources/configdefinitions
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2017-01-22 14:47:45 +0100
committerJon Bratseth <bratseth@yahoo-inc.com>2017-01-22 14:47:45 +0100
commit0501d0d549caf74111ab5da8498744d35e2aea52 (patch)
tree41f6f3bf01cad46329920a59d33d316a62cdbc74 /node-repository/src/main/resources/configdefinitions
parentd7640ecc7ab7d1f776756d78efe1e46a3769575f (diff)
Move node-repository config to provisioning
Diffstat (limited to 'node-repository/src/main/resources/configdefinitions')
-rw-r--r--node-repository/src/main/resources/configdefinitions/node-repository.def41
1 files changed, 0 insertions, 41 deletions
diff --git a/node-repository/src/main/resources/configdefinitions/node-repository.def b/node-repository/src/main/resources/configdefinitions/node-repository.def
deleted file mode 100644
index f9b500594bd..00000000000
--- a/node-repository/src/main/resources/configdefinitions/node-repository.def
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-# Configuration of the node repository
-namespace=vespa.config.nodes
-
-# A node flavor which (may) be available in this zone.
-# This is to allow configuration per flavor.
-# If a certain flavor has no config it is not necessary to list it here to use it.
-flavor[].name string
-
-# Names of other flavors (whether mentioned in this config or not) which this flavor
-# is a replacement for: If one of these flavor names are requested, this flavor may
-# be assigned instead.
-# Replacements are transitive: If flavor a replaces b replaces c, then a request for flavor
-# c may be satisfied by assigning nodes of flavor a.
-flavor[].replaces[].name string
-
-# The monthly Total Cost of Ownership (TCO) in USD. Typically calculated as TCO divered by
-# the expected lifetime of the node (usually three years).
-flavor[].cost int default=0
-
-# A stock flavor is any flavor which we expect to buy more of in the future.
-# Stock flavors are assigned to applications by cost priority.
-#
-# Non-stock flavors are used for nodes for which a fixed amount has already been purchased
-# for some historical reason. These nodes are assigned to applications by exact match and ignoring cost.
-flavor[].stock bool default=true
-
-# The type of node (e.g. bare metal, docker..).
-flavor[].environment string default="undefined"
-
-# The minimum number of CPU cores available.
-flavor[].minCpuCores double default=0.0
-
-# The minimum amount of main memory available.
-flavor[].minMainMemoryAvailableGb double default=0.0
-
-# The minimum amount of disk available.
-flavor[].minDiskAvailableGb double default=0.0
-
-# Human readable free text for description of node.
-flavor[].description string default=""