This is an automated email from the ASF dual-hosted git repository.
wilfreds pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/yunikorn-scheduler-interface.git
The following commit(s) were added to refs/heads/master by this push:
new fa0365f [YUNIKORN-1697] Set max apps via namespace annotations (#117)
fa0365f is described below
commit fa0365fc70e2855436f7d8c9c9de305327f29052
Author: qzhu <[email protected]>
AuthorDate: Wed Feb 7 14:14:04 2024 +1100
[YUNIKORN-1697] Set max apps via namespace annotations (#117)
Additional to max and guaranteed resources allow setting max
applications on a queue via the annotations.
Closes: #117
Signed-off-by: Wilfred Spiegelenburg <[email protected]>
---
lib/go/common/constants.go | 1 +
scheduler-interface-spec.md | 1 +
2 files changed, 2 insertions(+)
diff --git a/lib/go/common/constants.go b/lib/go/common/constants.go
index afa666f..a8898ef 100644
--- a/lib/go/common/constants.go
+++ b/lib/go/common/constants.go
@@ -62,6 +62,7 @@ const (
CPU = "vcore"
AppTagNamespaceResourceQuota = "namespace.resourcequota"
AppTagNamespaceResourceGuaranteed = "namespace.resourceguaranteed"
+ AppTagNamespaceResourceMaxApps = "namespace.resourcemaxapps"
AppTagStateAwareDisable = "application.stateaware.disable"
AppTagCreateForce = "application.create.force"
NodeReadyAttribute = "ready"
diff --git a/scheduler-interface-spec.md b/scheduler-interface-spec.md
index bb97603..bc78e25 100644
--- a/scheduler-interface-spec.md
+++ b/scheduler-interface-spec.md
@@ -771,6 +771,7 @@ const (
CPU = "vcore"
AppTagNamespaceResourceQuota = "namespace.resourcequota"
AppTagNamespaceResourceGuaranteed = "namespace.resourceguaranteed"
+ AppTagNamespaceResourceMaxApps = "namespace.resourcemaxapps"
AppTagStateAwareDisable = "application.stateaware.disable"
AppTagCreateForce = "application.create.force"
NodeReadyAttribute = "ready"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]