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

145 lines
6.4 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 16:07:18 +02:00
"name": "Public app",
"ask": {
"en": "Is it a public app ?"
},
2019-04-11 01:12:07 +02:00
"id": "is_public",
2019-04-12 23:55:10 +02:00
"type": "bool",
2019-04-11 01:12:07 +02:00
"default": true
}
]
},
{
"name": "Overwriting config files",
"id": "overwrite_files",
"options": [
{
2019-08-18 16:07:18 +02:00
"name": "Overwrite the nginx config file",
"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.",
"id": "overwrite_nginx",
2019-04-12 23:55:10 +02:00
"type": "bool",
2019-04-11 01:12:07 +02:00
"default": true
}
]
},
{
"name": "External users",
"id": "users",
"options": [
{
2019-08-18 16:07:18 +02:00
"name": "Authorized external user creation",
"ask": {
"en": "Authorized external user creation ?"
},
2019-04-11 01:12:07 +02:00
"help": "Allow user to be created without yunohost account.",
"id": "use_web_account",
2019-04-12 23:55:10 +02:00
"type": "bool",
2019-04-11 01:12:07 +02:00
"default": true
}
]
2019-08-18 16:07:18 +02:00
},
{
"name": "Backup strategy",
"id": "backup_strategy",
"options": [
{
"name": "Backup db",
"ask": {
"en": "Should gitlab backup the database ?"
},
"help": "https://docs.gitlab.com/ce/raketasks/backup_restore.html#excluding-specific-directories-from-the-backup",
"id": "backup_db",
"type": "bool",
"default": true
},
{
"name": "Backup uploads",
"ask": {
"en": "Should gitlab backup attachments ?"
},
"help": "https://docs.gitlab.com/ce/raketasks/backup_restore.html#excluding-specific-directories-from-the-backup",
"id": "backup_uploads",
"type": "bool",
"default": true
},
{
"name": "Backup repositories",
"ask": {
"en": "Should gitlab backup git repositories data ?"
},
"help": "https://docs.gitlab.com/ce/raketasks/backup_restore.html#excluding-specific-directories-from-the-backup",
"id": "backup_repositories",
"type": "bool",
"default": true
},
{
"name": "Backup builds",
"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",
"id": "backup_builds",
"type": "bool",
"default": true
},
{
"name": "Backup artifacts",
"ask": {
"en": "Should gitlab backup CI job artifacts ?"
},
"help": "https://docs.gitlab.com/ce/raketasks/backup_restore.html#excluding-specific-directories-from-the-backup",
"id": "backup_artifacts",
"type": "bool",
"default": true
},
{
"name": "Backup lfs",
"ask": {
"en": "Should gitlab backup LFS objects ?"
},
"help": "https://docs.gitlab.com/ce/raketasks/backup_restore.html#excluding-specific-directories-from-the-backup",
"id": "backup_lfs",
"type": "bool",
"default": true
},
{
"name": "Backup registry",
"ask": {
"en": "Should gitlab backup container registry images ?"
},
"help": "https://docs.gitlab.com/ce/raketasks/backup_restore.html#excluding-specific-directories-from-the-backup",
"id": "backup_registry",
"type": "bool",
"default": true
},
{
"name": "Backup pages",
"ask": {
"en": "Should gitlab backup pages content ?"
},
"help": "https://docs.gitlab.com/ce/raketasks/backup_restore.html#excluding-specific-directories-from-the-backup",
"id": "backup_pages",
"type": "bool",
"default": true
}
]
2019-04-11 01:12:07 +02:00
}
]
}
]
}