who_need_help/deploy/helm/who-need-help/values.schema.json
SimpleTest 8c281cc756
Some checks are pending
Quality / full-local-gates (push) Waiting to run
Replace UniSender delivery with isolated SMTP
2026-07-22 00:38:37 +03:00

27 lines
519 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
},
"emailDeliveryProvider": {
"type": "string",
"enum": [
"smtp"
]
}
},
"required": [
"erlangPortLimit",
"emailDeliveryProvider"
]
}
}
}