Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions installer/helm/chart/volcano/templates/root_queue.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: scheduling.volcano.sh/v1beta1
kind: Queue
metadata:
name: root
spec:
capability:
{{- toYaml .Values.custom.root_queue.capability | nindent 4 }}
reclaimable: {{ .Values.custom.root_queue.reclaimable | default false }}
weight: {{ .Values.custom.root_queue.weight | default 1 }}
6 changes: 6 additions & 0 deletions installer/helm/chart/volcano/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,12 @@ custom:
drop: [ "ALL" ]
allowPrivilegeEscalation: false

# Specify root Queue capability
root_queue:
capability: ~
reclaimable: false
weight: 1

# Specify agent cni config path.
agent_cni_config_path: /etc/cni/net.d/cni.conflist

Expand Down
Loading