From 564d7f49a2738e62be8d4b3d14668f5ca53bc761 Mon Sep 17 00:00:00 2001 From: Erez Freiberger Date: Fri, 14 Nov 2025 10:04:15 +0100 Subject: [PATCH] docs: add missing default queues example --- docs/quickstart/default-queues.yaml | 42 +++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 docs/quickstart/default-queues.yaml diff --git a/docs/quickstart/default-queues.yaml b/docs/quickstart/default-queues.yaml new file mode 100644 index 000000000..662bcd67c --- /dev/null +++ b/docs/quickstart/default-queues.yaml @@ -0,0 +1,42 @@ +# Copyright 2025 NVIDIA CORPORATION +# SPDX-License-Identifier: Apache-2.0 + +apiVersion: scheduling.run.ai/v2 +kind: Queue +metadata: + name: default-parent-queue +spec: + resources: + cpu: + limit: -1 + overQuotaWeight: 1 + quota: 0 + gpu: + limit: -1 + overQuotaWeight: 1 + quota: 0 + memory: + limit: -1 + overQuotaWeight: 1 + quota: 0 +--- +apiVersion: scheduling.run.ai/v2 +kind: Queue +metadata: + name: default-queue +spec: + parentQueue: default-parent-queue + resources: + cpu: + limit: -1 + overQuotaWeight: 1 + quota: 0 + gpu: + limit: -1 + overQuotaWeight: 1 + quota: 0 + memory: + limit: -1 + overQuotaWeight: 1 + quota: 0 +