1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nomad_ynh.git synced 2024-09-03 19:55:53 +02:00
nomad_ynh/manifest.json
2022-07-21 20:25:55 +02:00

59 lines
1.5 KiB
JSON

{
"name": "Nomad",
"id": "nomad",
"packaging_format": 1,
"description": {
"en": "Simple and flexible workload orchestrator"
},
"version": "1.3.2~ynh1",
"url": "https://www.nomadproject.io/",
"upstream": {
"license": "MPL-2.0",
"website": "https://www.nomadproject.io/",
"admindoc": "https://www.nomadproject.io/docs",
"code": "https://github.com/hashicorp/nomad"
},
"license": "MPL-2.0",
"maintainer": {
"name": "",
"email": ""
},
"requirements": {
"yunohost": ">= 4.3.0"
},
"multi_instance": false,
"services": [
"nginx"
],
"arguments": {
"install": [
{
"name": "domain",
"type": "domain"
},
{
"name": "is_public",
"type": "boolean",
"default": true
},
{
"name": "node_type",
"type": "string",
"ask": {
"en": "What kind of Nomad node you want to install ?"
},
"choices": ["server", "client"],
"default": "server"
},
{
"name": "server_ip",
"type": "string",
"ask": {
"en": "[Client only] What is the IP of the Nomad server node ?"
},
"example": "192.168.1.100",
"optional": true
}
]
}
}