1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gitlab_ynh.git synced 2024-09-03 18:36:35 +02:00
gitlab_ynh/config_panel.json

135 lines
6 KiB
JSON
Raw Normal View History

2019-04-11 01:12:07 +02:00
{
"name": "GitLab configuration panel",
"version": "0.1",
"panel": [
{
"name": "GitLab configuration",
"id": "main",
"sections": [
{
"name": "Public access",
"id": "is_public",
"options": [
{
2019-08-18 19:52:02 +02:00
"name": "is_public",
2019-08-18 16:07:18 +02:00
"ask": {
"en": "Is it a public app ?"
},
2019-08-18 19:52:02 +02:00
"type": "boolean",
2019-04-11 01:12:07 +02:00
"default": true
}
]
},
{
"name": "Overwriting config files",
"id": "overwrite_files",
"options": [
{
2019-08-18 19:52:02 +02:00
"name": "overwrite_nginx",
2019-08-18 16:07:18 +02:00
"ask": {
"en": "Overwrite the nginx config file ?"
},
2019-04-11 01:12:07 +02:00
"help": "If the file is overwritten, a backup will be created.",
2019-08-18 19:52:02 +02:00
"type": "boolean",
2019-04-11 01:12:07 +02:00
"default": true
}
]
},
{
"name": "External users",
"id": "users",
"options": [
{
2019-08-18 19:52:02 +02:00
"name": "use_web_account",
2019-08-18 16:07:18 +02:00
"ask": {
"en": "Authorized external user creation ?"
},
2019-04-11 01:12:07 +02:00
"help": "Allow user to be created without yunohost account.",
2019-08-18 19:52:02 +02:00
"type": "boolean",
2019-04-11 01:12:07 +02:00
"default": true
}
]
2019-08-18 16:07:18 +02:00
},
{
"name": "Backup strategy",
"id": "backup_strategy",
2019-09-02 12:37:31 +02:00
"help": "WARNING: If you disable one of these backup, it will not be restored in case of error, use this feature at your own risk",
2019-08-18 16:07:18 +02:00
"options": [
{
2019-08-18 19:52:02 +02:00
"name": "backup_db",
2019-08-18 16:07:18 +02:00
"ask": {
"en": "Should gitlab backup the database ?"
},
"help": "https://docs.gitlab.com/ce/raketasks/backup_restore.html#excluding-specific-directories-from-the-backup",
2019-08-18 19:52:02 +02:00
"type": "boolean",
2019-08-18 16:07:18 +02:00
"default": true
},
{
2019-08-18 19:52:02 +02:00
"name": "backup_uploads",
2019-08-18 16:07:18 +02:00
"ask": {
"en": "Should gitlab backup attachments ?"
},
"help": "https://docs.gitlab.com/ce/raketasks/backup_restore.html#excluding-specific-directories-from-the-backup",
2019-08-18 19:52:02 +02:00
"type": "boolean",
2019-08-18 16:07:18 +02:00
"default": true
},
{
2019-08-18 19:52:02 +02:00
"name": "backup_repositories",
2019-08-18 16:07:18 +02:00
"ask": {
"en": "Should gitlab backup git repositories data ?"
},
"help": "https://docs.gitlab.com/ce/raketasks/backup_restore.html#excluding-specific-directories-from-the-backup",
2019-08-18 19:52:02 +02:00
"type": "boolean",
2019-08-18 16:07:18 +02:00
"default": true
},
{
2019-08-18 19:52:02 +02:00
"name": "backup_builds",
2019-08-18 16:07:18 +02:00
"ask": {
"en": "Should gitlab backup CI job output logs ?"
},
"help": "https://docs.gitlab.com/ce/raketasks/backup_restore.html#excluding-specific-directories-from-the-backup",
2019-08-18 19:52:02 +02:00
"type": "boolean",
2019-08-18 16:07:18 +02:00
"default": true
},
{
2019-08-18 19:52:02 +02:00
"name": "backup_artifacts",
2019-08-18 16:07:18 +02:00
"ask": {
"en": "Should gitlab backup CI job artifacts ?"
},
"help": "https://docs.gitlab.com/ce/raketasks/backup_restore.html#excluding-specific-directories-from-the-backup",
2019-08-18 19:52:02 +02:00
"type": "boolean",
2019-08-18 16:07:18 +02:00
"default": true
},
{
2019-08-18 19:52:02 +02:00
"name": "backup_lfs",
2019-08-18 16:07:18 +02:00
"ask": {
"en": "Should gitlab backup LFS objects ?"
},
"help": "https://docs.gitlab.com/ce/raketasks/backup_restore.html#excluding-specific-directories-from-the-backup",
2019-08-18 19:52:02 +02:00
"type": "boolean",
2019-08-18 16:07:18 +02:00
"default": true
},
{
2019-08-18 19:52:02 +02:00
"name": "backup_registry",
2019-08-18 16:07:18 +02:00
"ask": {
"en": "Should gitlab backup container registry images ?"
},
"help": "https://docs.gitlab.com/ce/raketasks/backup_restore.html#excluding-specific-directories-from-the-backup",
2019-08-18 19:52:02 +02:00
"type": "boolean",
2019-08-18 16:07:18 +02:00
"default": true
},
{
2019-08-18 19:52:02 +02:00
"name": "backup_pages",
2019-08-18 16:07:18 +02:00
"ask": {
"en": "Should gitlab backup pages content ?"
},
"help": "https://docs.gitlab.com/ce/raketasks/backup_restore.html#excluding-specific-directories-from-the-backup",
2019-08-18 19:52:02 +02:00
"type": "boolean",
2019-08-18 16:07:18 +02:00
"default": true
}
]
2019-04-11 01:12:07 +02:00
}
]
}
]
}