mirror of
https://github.com/YunoHost-Apps/gitlab_ynh.git
synced 2024-09-03 18:36:35 +02:00
commit
3be74724da
7 changed files with 35 additions and 24 deletions
|
@ -1,5 +1,5 @@
|
|||
<!--
|
||||
N.B.: This README was automatically generated by https://github.com/YunoHost/apps/tree/master/tools/README-generator
|
||||
N.B.: This README was automatically generated by https://github.com/YunoHost/apps/tree/master/tools/readme_generator
|
||||
It shall NOT be edited by hand.
|
||||
-->
|
||||
|
||||
|
@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
|||
|
||||
Git-repository manager providing wiki, issue-tracking and CI/CD pipeline features
|
||||
|
||||
**Shipped version:** 16.8.1~ynh1
|
||||
**Shipped version:** 16.9.0~ynh1
|
||||
|
||||
**Demo:** https://gitlab.com/explore
|
||||
|
||||
|
@ -46,4 +46,4 @@ or
|
|||
sudo yunohost app upgrade gitlab -u https://github.com/YunoHost-Apps/gitlab_ynh/tree/testing --debug
|
||||
```
|
||||
|
||||
**More info regarding app packaging:** <https://yunohost.org/packaging_apps>
|
||||
**More info regarding app packaging:** <https://yunohost.org/packaging_apps>
|
|
@ -1,5 +1,5 @@
|
|||
<!--
|
||||
N.B.: This README was automatically generated by https://github.com/YunoHost/apps/tree/master/tools/README-generator
|
||||
N.B.: This README was automatically generated by https://github.com/YunoHost/apps/tree/master/tools/readme_generator
|
||||
It shall NOT be edited by hand.
|
||||
-->
|
||||
|
||||
|
@ -18,7 +18,7 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
|
|||
|
||||
Gestionnaire de dépôts Git proposant des fonctionnalités de wiki, suivi de bugs et de pipeline CI/CD
|
||||
|
||||
**Version incluse :** 16.8.1~ynh1
|
||||
**Version incluse :** 16.9.0~ynh1
|
||||
|
||||
**Démo :** https://gitlab.com/explore
|
||||
|
||||
|
|
|
@ -202,12 +202,18 @@ external_url '__GENERATED_EXTERNAL_URL__'
|
|||
# gitlab_rails['loose_foreign_keys_cleanup_worker_cron'] = "*/5 * * * *"
|
||||
# gitlab_rails['ci_runner_versions_reconciliation_worker_cron'] = "@daily"
|
||||
# gitlab_rails['ci_runners_stale_machines_cleanup_worker_cron'] = "36 * * * *"
|
||||
# gitlab_rails['ci_catalog_resources_process_sync_events_worker_cron'] = "*/1 * * * *"
|
||||
|
||||
### Webhook Settings
|
||||
###! Number of seconds to wait for HTTP response after sending webhook HTTP POST
|
||||
###! request (default: 10)
|
||||
# gitlab_rails['webhook_timeout'] = 10
|
||||
|
||||
### HTTP client settings
|
||||
###! This is for setting up the mutual TLS client cert and password for the certificate file.
|
||||
# gitlab_rails['http_client']['tls_client_cert_file'] = nil
|
||||
# gitlab_rails['http_client']['tls_client_cert_password'] = nil
|
||||
|
||||
### GraphQL Settings
|
||||
###! Tells the rails application how long it has to complete a GraphQL request.
|
||||
###! We suggest this value to be higher than the database timeout value
|
||||
|
@ -799,6 +805,9 @@ gitlab_rails['gitlab_shell_ssh_port'] = __SSH_PORT__
|
|||
# gitlab_rails['db_application_name'] = nil
|
||||
# gitlab_rails['db_database_tasks'] = true
|
||||
|
||||
##! Command to generate extra database configuration
|
||||
# gitlab_rails['db_extra_config_command'] = nil
|
||||
|
||||
### Gitlab decomposed database settings
|
||||
###! Docs: https://docs.gitlab.com/omnibus/settings/database.html
|
||||
# gitlab_rails['databases']['main']['db_database'] = 'gitlabhq_production'
|
||||
|
@ -1042,6 +1051,7 @@ gitlab_rails['gitlab_shell_ssh_port'] = __SSH_PORT__
|
|||
# 'connecttimeout' => '5s',
|
||||
# 'draintimeout' => '2m',
|
||||
# 'preparedstatements' => false,
|
||||
# 'primary' => 'primary.record.fqdn',
|
||||
# 'pool' => {
|
||||
# 'maxidle' => 25,
|
||||
# 'maxopen' => 25,
|
||||
|
@ -1285,6 +1295,7 @@ puma['port'] = __PORT_PUMA__
|
|||
# sidekiq['log_format'] = "json"
|
||||
# sidekiq['shutdown_timeout'] = 4
|
||||
# sidekiq['interval'] = nil
|
||||
# sidekiq['concurrency'] = nil
|
||||
# sidekiq['max_concurrency'] = 20
|
||||
# sidekiq['min_concurrency'] = nil
|
||||
|
||||
|
@ -2824,7 +2835,7 @@ package['modify_kernel_parameters'] = __MODIFY_KERNEL_PARAMETERS__
|
|||
##! Note: We do not recommend changing these values unless absolutely necessary
|
||||
##! Set to false to only parse secrets from `gitlab-secrets.json` file but not generate them.
|
||||
# package['generate_default_secrets'] = true
|
||||
##! Set to false to prevent creating the default gitlab-secrets.json` file
|
||||
##! Set to false to prevent creating the default `gitlab-secrets.json` file
|
||||
# package['generate_secrets_json_file'] = true
|
||||
################################################################################
|
||||
################################################################################
|
||||
|
|
|
@ -5,7 +5,7 @@ name = "GitLab"
|
|||
description.en = "Git-repository manager providing wiki, issue-tracking and CI/CD pipeline features"
|
||||
description.fr = "Gestionnaire de dépôts Git proposant des fonctionnalités de wiki, suivi de bugs et de pipeline CI/CD"
|
||||
|
||||
version = "16.8.1~ynh1"
|
||||
version = "16.9.0~ynh1"
|
||||
|
||||
maintainers = ["kay0u"]
|
||||
|
||||
|
|
|
@ -135,7 +135,7 @@ echo "newuser = User.new({ \"email\"=>'$mailadmin', \"username\"=>'$admin', \"na
|
|||
newuser.admin = true
|
||||
newuser.confirmed_at = Time.now
|
||||
newuser.confirmation_token = nil
|
||||
newuser.save
|
||||
newuser.save!
|
||||
ApplicationSetting.last.update(password_authentication_enabled_for_web: $use_web_account, signup_enabled: $use_web_account)" | gitlab-rails console
|
||||
|
||||
#=================================================
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
#!/bin/bash
|
||||
|
||||
gitlab_version="16.7.4"
|
||||
gitlab_version="16.7.5"
|
||||
|
||||
# sha256sum found here: https://packages.gitlab.com/gitlab
|
||||
gitlab_debian_version="$(lsb_release -sc)"
|
||||
|
||||
gitlab_x86_64_bullseye_source_sha256="f5a4771960395864b199cad65dd196f542a47cd98f6caa164aecfc2bd2e919aa"
|
||||
gitlab_x86_64_buster_source_sha256="2e4c1caffce05164a79c530bc51fd654145b07d0539fa34e869e59bc9b10932b"
|
||||
gitlab_x86_64_bullseye_source_sha256="dc5bd5815d3a40303f65c2655b728dd0bc1839d808c3f77062452ede16272591"
|
||||
gitlab_x86_64_buster_source_sha256="eae0ba2bb22e66368d5e68c1088f9c8923f371cbc354e7a40bfb90e3f3ddff94"
|
||||
|
||||
gitlab_arm64_bullseye_source_sha256="99e9ba4588df220f06c23e265921664067c0133bd38179077ff350fdbfeaf0ce"
|
||||
gitlab_arm64_buster_source_sha256="da0c5d57eb54f3eb3a6690e4bc6eae05251871aa3a6bb41d523eca94e95a4765"
|
||||
gitlab_arm64_bullseye_source_sha256="3c74043e93aba65a870187262de3e175b6407f6136bc018972b646e9c94b9b91"
|
||||
gitlab_arm64_buster_source_sha256="379ca2ae9151fca4220880db68afdf8237b22ab7ac6084818c71266c096843ea"
|
||||
|
||||
gitlab_arm_buster_source_sha256="bc8190866e5e2ebe67a63f04614405b83e41b54aab8c8ca3fb50bfd7f0cc2196"
|
||||
gitlab_arm_bullseye_source_sha256="63735b16dfa5825dfb92685565faec5274a3f38497494520a6142a3edf3dc298"
|
||||
gitlab_arm_buster_source_sha256="bc1b7c9d5addf05290b207f8d53e8d7ddcf0e871316d80afa8eaa8f875d08a71"
|
||||
gitlab_arm_bullseye_source_sha256="5cd2920d3a7e64ed74bbf5f0df5a237a2caf8fa859c82fee074e04c61561d9bd"
|
||||
|
||||
architecture=$(ynh_app_setting_get --app="$app" --key=architecture)
|
||||
|
||||
|
|
|
@ -1,22 +1,22 @@
|
|||
#!/bin/bash
|
||||
|
||||
gitlab_version="16.8.1"
|
||||
gitlab_version="16.9.0"
|
||||
|
||||
# Upgrade path: https://gitlab-com.gitlab.io/support/toolbox/upgrade-path/
|
||||
# sha256sum found here: https://packages.gitlab.com/gitlab
|
||||
gitlab_debian_version="$(lsb_release -sc)"
|
||||
|
||||
gitlab_x86_64_bookworm_source_sha256="119cb1a085202257fbf2d6ae1e8b5d27f2dafbf1b1abcfeb1011e854f0964043"
|
||||
gitlab_x86_64_bullseye_source_sha256="56ec42ca2e0a7ed45507c8f870be9a80fdabb98702da8cd0c81f0c261fa6147b"
|
||||
gitlab_x86_64_buster_source_sha256="5e13d37cbcce2be6359a94a483b063bacf88ed745fd7edc3973f066a48009a11"
|
||||
gitlab_x86_64_bookworm_source_sha256="28afc81cc48b471362825204fcbb93a349da2239e3ac23af9e586280789b143a"
|
||||
gitlab_x86_64_bullseye_source_sha256="5aee075e40252b725decf3ce244e243206a5d0d5a80828b1b3d520fddca6618f"
|
||||
gitlab_x86_64_buster_source_sha256="882f060501ead0026d852eb6423f5526de5160d0bc1e0a2f1958a5997e282b71"
|
||||
|
||||
gitlab_arm64_bookworm_source_sha256="eb95af3527fad21bc4536a2703dc039c5c9e9d8b24a6cfd4f6d310b6498ebae2"
|
||||
gitlab_arm64_bullseye_source_sha256="c21c03856b04ebdd6552b2a7865786dd7fa6789c99d1106fbfad960fdd0338ec"
|
||||
gitlab_arm64_buster_source_sha256="ab0c167dfa89e5bfe86e303462a5c579d60421a0ad4e13675068ae0a6fa78223"
|
||||
gitlab_arm64_bookworm_source_sha256="d2971257ce2d4b11a5bd17d5bdc97d37973f6fb88e437c882690097f8a2393e0"
|
||||
gitlab_arm64_bullseye_source_sha256="313c609237839777241fa55b82cff18f46db0fd688b469952597c7132391aeb0"
|
||||
gitlab_arm64_buster_source_sha256="0f2a691daed7f09dd022db7f75dd7e35c1b8dccfe78f2b143d9d5c419cfe0878"
|
||||
|
||||
gitlab_arm_bookworm_source_sha256=""
|
||||
gitlab_arm_bullseye_source_sha256="3ff3715f56bda621d31adc2cb0883323e8ca2494a7de627188a6ed3a9bee7573"
|
||||
gitlab_arm_buster_source_sha256="79a1fb41072cc3793dec637185375f722298f7254b44d0048e1f8fbad2343670"
|
||||
gitlab_arm_bullseye_source_sha256="66fdc13c2049cde394bf970b9bd2cb310199acc99ae24cd8dfe0629abaf94b41"
|
||||
gitlab_arm_buster_source_sha256="3c984dec809ceff8ef24b6f397c89a2691063224ab55435066b4ddd3f24a94b4"
|
||||
|
||||
architecture=$(ynh_app_setting_get --app="$app" --key=architecture)
|
||||
|
||||
|
|
Loading…
Reference in a new issue