summaryrefslogtreecommitdiffstats
path: root/config-model/src
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-03-21 11:28:07 +0100
committerJon Bratseth <bratseth@oath.com>2018-03-21 11:28:07 +0100
commit733b5f634188bead363acdf1fdea47613ad3b84c (patch)
tree90c661481da6a48157c1a98a822123e37065ed1b /config-model/src
parent6c6b48539d34b4e6189d6f6e7468ee782d823386 (diff)
Add 'exclusive' attribute to nodes
Diffstat (limited to 'config-model/src')
-rw-r--r--config-model/src/main/resources/schema/common.rnc3
-rw-r--r--config-model/src/main/resources/schema/containercluster.rnc1
-rw-r--r--config-model/src/main/resources/schema/content.rnc1
3 files changed, 4 insertions, 1 deletions
diff --git a/config-model/src/main/resources/schema/common.rnc b/config-model/src/main/resources/schema/common.rnc
index d6bf5148753..85963764139 100644
--- a/config-model/src/main/resources/schema/common.rnc
+++ b/config-model/src/main/resources/schema/common.rnc
@@ -25,7 +25,8 @@ OptionalDedicatedNodes = element nodes {
attribute flavor { xsd:string }? &
attribute required { xsd:boolean }? &
attribute docker-image { xsd:string }? &
- attribute dedicated { xsd:boolean }?
+ attribute dedicated { xsd:boolean }? &
+ attribute exclusive { xsd:boolean }?
}
GenericConfig = element config {
diff --git a/config-model/src/main/resources/schema/containercluster.rnc b/config-model/src/main/resources/schema/containercluster.rnc
index dae7f063154..700f4b4816c 100644
--- a/config-model/src/main/resources/schema/containercluster.rnc
+++ b/config-model/src/main/resources/schema/containercluster.rnc
@@ -210,6 +210,7 @@ NodesOfContainerCluster = element nodes {
attribute count { xsd:positiveInteger } &
attribute flavor { xsd:string }? &
attribute required { xsd:boolean }? &
+ attribute exclusive { xsd:boolean }? &
attribute docker-image { xsd:string }?
)
|
diff --git a/config-model/src/main/resources/schema/content.rnc b/config-model/src/main/resources/schema/content.rnc
index a5c75bc0150..8121a85c056 100644
--- a/config-model/src/main/resources/schema/content.rnc
+++ b/config-model/src/main/resources/schema/content.rnc
@@ -269,6 +269,7 @@ Group = element group {
attribute count { xsd:positiveInteger } &
attribute flavor { xsd:string }? &
attribute required { xsd:boolean }? &
+ attribute exclusive { xsd:boolean }? &
attribute docker-image { xsd:string }? &
attribute groups { xsd:positiveInteger }?
}