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

60 lines
1.5 KiB
JSON
Raw Normal View History

2022-07-20 12:04:29 +02:00
{
2022-07-20 12:07:54 +02:00
"name": "Nomad",
"id": "nomad",
2022-07-20 12:04:29 +02:00
"packaging_format": 1,
"description": {
2022-07-20 12:07:54 +02:00
"en": "Simple and flexible workload orchestrator"
2022-07-20 12:04:29 +02:00
},
2022-07-21 08:24:29 +02:00
"version": "1.3.2~ynh1",
"url": "https://www.nomadproject.io/",
2022-07-20 12:04:29 +02:00
"upstream": {
2022-07-21 08:24:29 +02:00
"license": "MPL-2.0",
"website": "https://www.nomadproject.io/",
"admindoc": "https://www.nomadproject.io/docs",
"code": "https://github.com/hashicorp/nomad"
2022-07-20 12:04:29 +02:00
},
2022-07-21 08:24:29 +02:00
"license": "MPL-2.0",
2022-07-20 12:04:29 +02:00
"maintainer": {
2022-07-21 08:24:29 +02:00
"name": "",
"email": ""
2022-07-20 12:04:29 +02:00
},
"requirements": {
"yunohost": ">= 4.3.0"
},
2022-07-21 19:46:49 +02:00
"multi_instance": false,
2022-07-20 12:04:29 +02:00
"services": [
2022-07-21 08:24:29 +02:00
"nginx"
2022-07-20 12:04:29 +02:00
],
"arguments": {
"install": [
{
"name": "domain",
"type": "domain"
},
{
"name": "is_public",
"type": "boolean",
"default": true
},
{
2022-07-21 08:24:29 +02:00
"name": "node_type",
2022-07-20 12:04:29 +02:00
"type": "string",
"ask": {
2022-07-21 08:24:29 +02:00
"en": "What kind of Nomad node you want to install ?"
2022-07-20 12:04:29 +02:00
},
2022-07-21 08:24:29 +02:00
"choices": ["server", "client"],
"default": "server"
2022-07-20 12:04:29 +02:00
},
{
2022-07-21 08:24:29 +02:00
"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
2022-07-20 12:04:29 +02:00
}
]
}
}