who_need_help/deploy/helm/who-need-help/values.schema.json

20 lines
361 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"app": {
"type": "object",
"properties": {
"erlangPortLimit": {
"type": "integer",
"minimum": 1024,
"maximum": 134217727
}
},
"required": [
"erlangPortLimit"
]
}
}
}