aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValerij Fredriksen <freva@users.noreply.github.com>2023-05-31 18:56:41 +0200
committerGitHub <noreply@github.com>2023-05-31 18:56:41 +0200
commit58fecb11447592e8f3b6935448884a4c76b3f7ca (patch)
tree37b93c18324d6723f3cc78270d6e50e170f47b02
parent7310d9c18301a150385dc9bc63f38392202626c9 (diff)
parent8b3deb66188810468916ca1de03b25d204b5cfba (diff)
Merge pull request #27246 from vespa-engine/jonmv/allow-host-ttl-in-deployment-schemav8.170.18
Allow empty-host-ttl in deployment.rnc
-rw-r--r--config-model/src/main/resources/schema/deployment.rnc10
1 files changed, 8 insertions, 2 deletions
diff --git a/config-model/src/main/resources/schema/deployment.rnc b/config-model/src/main/resources/schema/deployment.rnc
index ede05ad65ef..0f2eed3f72b 100644
--- a/config-model/src/main/resources/schema/deployment.rnc
+++ b/config-model/src/main/resources/schema/deployment.rnc
@@ -8,6 +8,7 @@ start = element deployment {
attribute athenz-domain { xsd:string }? &
attribute athenz-service { xsd:string }? &
attribute cloud-account { xsd:string }? &
+ attribute empty-host-ttl { xsd:string }? &
Step
}
@@ -39,6 +40,7 @@ Instance = element instance {
attribute tags { xsd:string }? &
attribute athenz-service { xsd:string }? &
attribute cloud-account { xsd:string }? &
+ attribute empty-host-ttl { xsd:string }? &
StepExceptInstance
}
@@ -106,11 +108,13 @@ Staging = element staging {
}
Dev = element dev {
- attribute cloud-account { xsd:string }?
+ attribute cloud-account { xsd:string }? &
+ attribute empty-host-ttl { xsd:string }?
}
Perf = element perf {
- attribute cloud-account { xsd:string }?
+ attribute cloud-account { xsd:string }? &
+ attribute empty-host-ttl { xsd:string }?
}
Prod = element prod {
@@ -118,6 +122,7 @@ Prod = element prod {
attribute athenz-service { xsd:string }? &
attribute tester-flavor { xsd:string }? &
attribute cloud-account { xsd:string }? &
+ attribute empty-host-ttl { xsd:string }? &
Region* &
Delay* &
ProdTest* &
@@ -132,6 +137,7 @@ Region = element region {
attribute active { xsd:boolean }? &
attribute athenz-service { xsd:string }? &
attribute cloud-account { xsd:string }? &
+ attribute empty-host-ttl { xsd:string }? &
text
}