From ce6948fa3fe855508a25848fafbcff502c488d7c Mon Sep 17 00:00:00 2001 From: Scott Davidson Date: Thu, 17 Aug 2023 10:39:49 +0100 Subject: [PATCH] Add OOD password to schema --- slurm-cluster-chart/values.schema.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/slurm-cluster-chart/values.schema.json b/slurm-cluster-chart/values.schema.json index 9ae2ec6..1d89f1b 100644 --- a/slurm-cluster-chart/values.schema.json +++ b/slurm-cluster-chart/values.schema.json @@ -19,7 +19,18 @@ "type": "string", "title": "SSH Public Key", "description": "The SSH public key to inject into the cluster's login node" + }, + "openOnDemand": { + "type": "object", + "properties": { + "password": { + "type": "string", + "title": "Open On Demand password", + "description": "The password for access to the Open On Demand web interface" + } + }, + "required": ["password"] } }, - "required": ["storage", "sshPublicKey"] + "required": ["storage", "sshPublicKey", "openOnDemand"] }