summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/resources
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2023-01-18 18:32:50 +0100
committerGitHub <noreply@github.com>2023-01-18 18:32:50 +0100
commitce73e7681cf25865bf6f417f176eea1c85f5efba (patch)
treebd83cefec54d52788217abddcac020dbc59ba0df /config-model/src/main/resources
parente0191b4d49048f9398395dc8c1c60dfcb383f705 (diff)
Revert "Jonmv/private endpoints"
Diffstat (limited to 'config-model/src/main/resources')
-rw-r--r--config-model/src/main/resources/schema/containercluster.rnc13
-rw-r--r--config-model/src/main/resources/schema/deployment.rnc11
2 files changed, 13 insertions, 11 deletions
diff --git a/config-model/src/main/resources/schema/containercluster.rnc b/config-model/src/main/resources/schema/containercluster.rnc
index 81455084ad2..933ec528c42 100644
--- a/config-model/src/main/resources/schema/containercluster.rnc
+++ b/config-model/src/main/resources/schema/containercluster.rnc
@@ -6,7 +6,8 @@ ContainerCluster = element container {
ContainerServices &
DocumentBinding* &
NodesOfContainerCluster? &
- ClientAuthorize?
+ ClientAuthorize? &
+ LoadBalancer?
}
ContainerServices =
@@ -311,6 +312,16 @@ NodesOfContainerCluster = element nodes {
)
}
+LoadBalancer = element load-balancer {
+ element private-access {
+ element allow-urn {
+ xsd:string
+ }*
+ }?
+}
+
+
+
#DOCUMENT BINDINGS:
DocumentBinding = element document {
diff --git a/config-model/src/main/resources/schema/deployment.rnc b/config-model/src/main/resources/schema/deployment.rnc
index d63b8885a57..444f66a92ab 100644
--- a/config-model/src/main/resources/schema/deployment.rnc
+++ b/config-model/src/main/resources/schema/deployment.rnc
@@ -150,21 +150,12 @@ EndpointInstance = element instance {
text
}
-AllowedUrn = element allow {
- attribute with { xsd:string } &
- attribute arn { xsd:string }? &
- attribute project { xsd:string }?
-}
-
Endpoint = element endpoint {
attribute id { xsd:string }? &
attribute container-id { xsd:string } &
attribute region { xsd:string }? &
- attribute type { xsd:string }? &
- attribute enabled { xsd:boolean }? &
EndpointRegion* &
- EndpointInstance* &
- AllowedUrn*
+ EndpointInstance*
}
Endpoints = element endpoints {