Skip to content

Commit

Permalink
Add sshPublicKey to schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Davidson committed Aug 16, 2023
1 parent 9cc6af6 commit c013ed9
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions slurm-cluster-chart/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,19 @@
"properties": {
"capacity": {
"type": "string",
"title": "Shared cluster storage",
"title": "Shared Cluster Storage",
"description": "The capacity of the storage volume shared across the Slurm cluster nodes. \nThis is dynamically allocated from the tenancy quota.",
"pattern": "^[1-9][0-9]*Gi$",
"default": "10Gi"
}
}
},
"required": ["capacity"]
},
"sshPublicKey": {
"type": "string",
"title": "SSH Public Key",
"description": "The SSH public key to inject into the cluster's login node"
}
}
},
"required": ["storage", "sshPublicKey"]
}

0 comments on commit c013ed9

Please sign in to comment.