who_need_help/deploy/helm/who-need-help/values.schema.json
SimpleTest 6e11bb35aa
Some checks are pending
Quality / full-local-gates (push) Waiting to run
Support UniSender Go HTTPS email delivery
2026-07-21 14:42:14 +03:00

33 lines
681 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",
"unisender_go"
]
},
"unisenderGoBaseUrl": {
"type": "string",
"pattern": "^https://"
}
},
"required": [
"erlangPortLimit",
"emailDeliveryProvider",
"unisenderGoBaseUrl"
]
}
}
}