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

110 lines
3.1 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-09-01 08:36:00 +02:00
"version": "1.3.5~ynh1",
2022-07-21 08:24:29 +02:00
"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-23 19:00:23 +02:00
"choices": [
"server",
"client"
],
2022-07-21 08:24:29 +02:00
"default": "server"
2022-07-20 12:04:29 +02:00
},
2022-07-23 04:31:09 +02:00
{
"name": "bootstrap_expect",
2023-11-13 09:17:00 +01:00
"type": "select",
2022-07-23 04:31:09 +02:00
"ask": {
"en": "[Server only] How many server nodes to wait for before bootstrapping ?"
},
2022-07-23 19:00:23 +02:00
"choices": [
"1",
"3",
"5",
"7",
"9"
],
2022-07-23 04:31:09 +02:00
"default": "1",
"help": {
"en": "For production, it's recommanded to have 3 to 5 server nodes."
}
},
2022-07-23 04:35:37 +02:00
{
"name": "retry_join",
"type": "string",
"ask": {
"en": "[Server only] What is the IP of another server to join ?"
},
"example": "192.168.1.100",
"optional": true
},
2022-07-20 12:04:29 +02:00
{
2022-07-21 08:24:29 +02:00
"name": "server_ip",
"type": "string",
"ask": {
2022-07-21 20:25:55 +02:00
"en": "[Client only] What is the IP of the Nomad server node ?"
2022-07-21 08:24:29 +02:00
},
"example": "192.168.1.100",
"optional": true
2022-07-23 04:57:16 +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
},
{
"name": "driver_lxc",
"type": "boolean",
"ask": {
"en": "[Client only] Do you want to install LXC driver ?"
},
"default": true,
"help": {
"en": "It will also install lxc."
}
2022-07-20 12:04:29 +02:00
}
]
}
}