mirror of
https://github.com/YunoHost-Apps/gitlab_ynh.git
synced 2024-09-03 18:36:35 +02:00
commit
6187c4bdf0
23 changed files with 148 additions and 141 deletions
|
@ -10,7 +10,7 @@ If you don't have YunoHost, please see [here](https://yunohost.org/#/install) to
|
|||
|
||||
GitLab is a web-based Git-repository manager providing wiki, issue-tracking and CI/CD pipeline features, using an open-source license, developed by GitLab Inc.
|
||||
|
||||
**Shipped version:** 11.11.1
|
||||
**Shipped version:** 12.0.3
|
||||
|
||||
## Screenshots
|
||||
|
||||
|
|
|
@ -115,6 +115,7 @@ external_url '__GENERATED_EXTERNAL_URL__'
|
|||
# gitlab_rails['admin_email_worker_cron'] = "0 0 * * 0"
|
||||
# gitlab_rails['repository_archive_cache_worker_cron'] = "0 * * * *"
|
||||
# gitlab_rails['pages_domain_verification_cron_worker'] = "*/15 * * * *"
|
||||
# gitlab_rails['pages_domain_removal_cron_worker'] = "47 0 * * *"
|
||||
# gitlab_rails['schedule_migrate_external_diffs_worker_cron'] = "15 * * * *"
|
||||
|
||||
### Webhook Settings
|
||||
|
@ -432,6 +433,11 @@ gitlab_rails['gitlab_shell_ssh_port'] = __SSH_PORT__
|
|||
# gitlab_rails['initial_root_password'] = "password"
|
||||
# gitlab_rails['initial_shared_runners_registration_token'] = "token"
|
||||
|
||||
#### Set path to an initial license to be used while bootstrapping GitLab.
|
||||
####! **Only applicable on initial setup, future license updations need to be done via UI.
|
||||
####! Updating the file specified in this path won't yield any change after the first reconfigure run.
|
||||
# gitlab_rails['iniitial_license_file'] = '/etc/gitlab/company.gitlab-license'
|
||||
|
||||
#### Enable or disable automatic database migrations
|
||||
# gitlab_rails['auto_migrate'] = true
|
||||
|
||||
|
@ -585,7 +591,13 @@ gitlab_rails['gitlab_shell_ssh_port'] = __SSH_PORT__
|
|||
# registry['default_notifications_backoff'] = "1s"
|
||||
# registry['default_notifications_headers'] = {}
|
||||
|
||||
|
||||
################################################################################
|
||||
## Error Reporting and Logging with Sentry
|
||||
################################################################################
|
||||
# gitlab_rails['sentry_enabled'] = false
|
||||
# gitlab_rails['sentry_dsn'] = 'https://<key>@sentry.io/<project>'
|
||||
# gitlab_rails['sentry_clientside_dsn'] = 'https://<key>@sentry.io/<project>'
|
||||
# gitlab_rails['sentry_environment'] = 'production'
|
||||
|
||||
################################################################################
|
||||
## GitLab Workhorse
|
||||
|
@ -717,7 +729,7 @@ unicorn['port'] = __UNICORN_PORT__
|
|||
################################################################################
|
||||
|
||||
# sidekiq['log_directory'] = "/var/log/gitlab/sidekiq"
|
||||
# sidekiq['log_format'] = "default"
|
||||
# sidekiq['log_format'] = "json"
|
||||
# sidekiq['shutdown_timeout'] = 4
|
||||
sidekiq['concurrency'] = 5
|
||||
# sidekiq['metrics_enabled'] = true
|
||||
|
@ -994,7 +1006,7 @@ nginx['client_max_body_size'] = '__CLIENT_MAX_BODY_SIZE__'
|
|||
|
||||
##! **Recommended by: https://raymii.org/s/tutorials/Strong_SSL_Security_On_nginx.html
|
||||
##! https://cipherli.st/**
|
||||
# nginx['ssl_protocols'] = "TLSv1.1 TLSv1.2"
|
||||
# nginx['ssl_protocols'] = "TLSv1.2"
|
||||
|
||||
##! **Recommended in: https://nginx.org/en/docs/http/ngx_http_ssl_module.html**
|
||||
# nginx['ssl_session_cache'] = "builtin:1000 shared:SSL:10m"
|
||||
|
@ -1184,6 +1196,9 @@ nginx['listen_https'] = false
|
|||
##! Configure to expose GitLab Pages on external IP address, serving the HTTPS
|
||||
# gitlab_pages['external_https'] = []
|
||||
|
||||
##! Configure to use the default list of cipher suites
|
||||
# gitlab_pages['insecure_ciphers'] = false
|
||||
|
||||
##! Configure to enable health check endpoint on GitLab Pages
|
||||
# gitlab_pages['status_uri'] = "/@status"
|
||||
|
||||
|
@ -1200,6 +1215,9 @@ nginx['listen_https'] = false
|
|||
##! Listen for requests forwarded by reverse proxy
|
||||
# gitlab_pages['listen_proxy'] = "localhost:8090"
|
||||
|
||||
##! Configure GitLab Pages to use an HTTP Proxy
|
||||
# gitlab_pages['http_proxy'] = "http://example:8080"
|
||||
|
||||
# gitlab_pages['redirect_http'] = true
|
||||
# gitlab_pages['use_http2'] = true
|
||||
# gitlab_pages['dir'] = "/var/opt/gitlab/gitlab-pages"
|
||||
|
@ -1216,6 +1234,12 @@ nginx['listen_https'] = false
|
|||
##! Prometheus metrics for Pages docs: https://gitlab.com/gitlab-org/gitlab-pages/#enable-prometheus-metrics
|
||||
# gitlab_pages['metrics_address'] = ":9235"
|
||||
|
||||
##! Specifies the minimum SSL/TLS version ("ssl3", "tls1.0", "tls1.1" or "tls1.2")
|
||||
# gitlab_pages['tls_min_version'] = "ssl3"
|
||||
|
||||
##! Specifies the maximum SSL/TLS version ("ssl3", "tls1.0", "tls1.1" or "tls1.2")
|
||||
# gitlab_pages['tls_max_version'] = "tls1.2"
|
||||
|
||||
##! Configure the pages admin API
|
||||
# gitlab_pages['admin_secret_token'] = 'custom secret'
|
||||
# gitlab_pages['admin_https_listener'] = '0.0.0.0:5678'
|
||||
|
@ -1231,7 +1255,7 @@ nginx['listen_https'] = false
|
|||
# gitlab_pages['gitlab_id'] = nil # Automatically generated if not present
|
||||
# gitlab_pages['gitlab_secret'] = nil # Generated if not present
|
||||
# gitlab_pages['auth_redirect_uri'] = nil # Defaults to projects subdomain of pages_external_url and + '/auth'
|
||||
# gitlab_pages['auth_server'] = nil # Defaults to external_url
|
||||
# gitlab_pages['gitlab_server'] = nil # Defaults to external_url
|
||||
# gitlab_pages['auth_secret'] = nil # Generated if not present
|
||||
|
||||
################################################################################
|
||||
|
@ -1359,7 +1383,6 @@ nginx['listen_https'] = false
|
|||
# prometheus['rules_files'] = ['/var/opt/gitlab/prometheus/rules/*.rules']
|
||||
# prometheus['scrape_interval'] = 15
|
||||
# prometheus['scrape_timeout'] = 15
|
||||
# prometheus['chunk_encoding_version'] = 2
|
||||
# prometheus['env_directory'] = '/opt/gitlab/etc/prometheus/env'
|
||||
# prometheus['env'] = {
|
||||
# 'SSL_CERT_DIR' => "/opt/gitlab/embedded/ssl/certs/"
|
||||
|
@ -1401,23 +1424,10 @@ nginx['listen_https'] = false
|
|||
# }
|
||||
# ]
|
||||
#
|
||||
### Prometheus Memory Management
|
||||
#
|
||||
# Prometheus needs to be configured for how much memory is used.
|
||||
# * This sets the target heap size.
|
||||
# * This value accounts for approximately 2/3 of the memory used by the server.
|
||||
# * The recommended memory is 4kb per unique metrics time-series.
|
||||
# See: https://prometheus.io/docs/operating/storage/#memory-usage
|
||||
#
|
||||
# prometheus['target_heap_size'] = (
|
||||
# # Use 25mb + 2% of total memory for Prometheus memory.
|
||||
# 26_214_400 + (node['memory']['total'].to_i * 1024 * 0.02 )
|
||||
# ).to_i
|
||||
### Custom Prometheus flags
|
||||
#
|
||||
# prometheus['flags'] = {
|
||||
# 'storage.local.path' => "#{node['gitlab']['prometheus']['home']}/data",
|
||||
# 'storage.local.chunk-encoding-version' => user_config['chunk-encoding-version'],
|
||||
# 'storage.local.target-heap-size' => node['gitlab']['prometheus']['target-heap-size'],
|
||||
# 'config.file' => "#{node['gitlab']['prometheus']['home']}/prometheus.yml"
|
||||
# }
|
||||
|
||||
|
@ -1426,7 +1436,6 @@ nginx['listen_https'] = false
|
|||
|
||||
################################################################################
|
||||
## Prometheus Alertmanager
|
||||
##! Docs: https://docs.gitlab.com/ce/administration/monitoring/prometheus/alertmanager.html
|
||||
################################################################################
|
||||
|
||||
# alertmanager['enable'] = true
|
||||
|
@ -1537,7 +1546,7 @@ nginx['listen_https'] = false
|
|||
##! Docs: https://docs.gitlab.com/ce/administration/monitoring/prometheus/#prometheus-as-a-grafana-data-source
|
||||
################################################################################
|
||||
|
||||
# grafana['enable'] = false
|
||||
grafana['enable'] = false
|
||||
# grafana['log_directory'] = '/var/log/gitlab/grafana'
|
||||
# grafana['home'] = '/var/opt/gitlab/grafana'
|
||||
# grafana['admin_password'] = 'admin'
|
||||
|
@ -1616,10 +1625,12 @@ nginx['listen_https'] = false
|
|||
# gitaly['logging_format'] = "json"
|
||||
# gitaly['logging_sentry_dsn'] = "https://<key>:<secret>@sentry.io/<project>"
|
||||
# gitaly['logging_ruby_sentry_dsn'] = "https://<key>:<secret>@sentry.io/<project>"
|
||||
# gitaly['logging_sentry_environment'] = "production"
|
||||
# gitaly['prometheus_grpc_latency_buckets'] = "[0.001, 0.005, 0.025, 0.1, 0.5, 1.0, 10.0, 30.0, 60.0, 300.0, 1500.0]"
|
||||
# gitaly['auth_token'] = '<secret>'
|
||||
# gitaly['auth_transitioning'] = false # When true, auth is logged to Prometheus but NOT enforced
|
||||
# gitaly['graceful_restart_timeout'] = '1m' # Grace time for a gitaly process to finish ongoing requests
|
||||
# gitaly['git_catfile_cache_size'] = 100 # Number of 'git cat-file' processes kept around for re-use
|
||||
# gitaly['ruby_max_rss'] = 300000000 # RSS threshold in bytes for triggering a gitaly-ruby restart
|
||||
# gitaly['ruby_graceful_restart_timeout'] = '10m' # Grace time for a gitaly-ruby process to finish ongoing requests
|
||||
# gitaly['ruby_restart_delay'] = '5m' # Period of sustained high RSS that needs to be observed before restarting gitaly-ruby
|
||||
|
@ -1728,6 +1739,30 @@ nginx['listen_https'] = false
|
|||
# # 'path_style' => false # Use 'host/bucket_name/object' instead of 'bucket_name.host/object'
|
||||
# }
|
||||
|
||||
################################################################################
|
||||
## Dependency proxy (EE Only)
|
||||
##! Docs: https://docs.gitlab.com/ee/administration/dependency_proxy.md
|
||||
################################################################################
|
||||
|
||||
# gitlab_rails['dependency_proxy_enabled'] = true
|
||||
# gitlab_rails['dependency_proxy_storage_path'] = "/var/opt/gitlab/gitlab-rails/shared/dependency_proxy"
|
||||
# gitlab_rails['dependency_proxy_object_store_enabled'] = false
|
||||
# gitlab_rails['dependency_proxy_object_store_direct_upload'] = false
|
||||
# gitlab_rails['dependency_proxy_object_store_background_upload'] = true
|
||||
# gitlab_rails['dependency_proxy_object_store_proxy_download'] = false
|
||||
# gitlab_rails['dependency_proxy_object_store_remote_directory'] = "dependency_proxy"
|
||||
# gitlab_rails['dependency_proxy_object_store_connection'] = {
|
||||
# 'provider' => 'AWS',
|
||||
# 'region' => 'eu-west-1',
|
||||
# 'aws_access_key_id' => 'AWS_ACCESS_KEY_ID',
|
||||
# 'aws_secret_access_key' => 'AWS_SECRET_ACCESS_KEY',
|
||||
# # # The below options configure an S3 compatible host instead of AWS
|
||||
# # 'host' => 's3.amazonaws.com',
|
||||
# # 'aws_signature_version' => 4, # For creation of signed URLs. Set to 2 if provider does not support v4.
|
||||
# # 'endpoint' => 'https://s3.amazonaws.com', # default: nil - Useful for S3 compliant services such as DigitalOcean Spaces
|
||||
# # 'path_style' => false # Use 'host/bucket_name/object' instead of 'bucket_name.host/object'
|
||||
# }
|
||||
|
||||
################################################################################
|
||||
## GitLab Sentinel (EE Only)
|
||||
##! Docs: http://docs.gitlab.com/ce/administration/high_availability/redis.html#high-availability-with-sentinel
|
||||
|
@ -1838,6 +1873,13 @@ nginx['listen_https'] = false
|
|||
# geo_primary_role['enable'] = false
|
||||
# geo_secondary_role['enable'] = false
|
||||
|
||||
# This is an optional identifier which Geo nodes can use to identify themselves.
|
||||
# For example, if external_url is the same for two secondaries, you must specify
|
||||
# a unique Geo node name for those secondaries.
|
||||
#
|
||||
# If it is blank, it defaults to external_url.
|
||||
# gitlab_rails['geo_node_name'] = nil
|
||||
|
||||
################################################################################
|
||||
## GitLab Geo Secondary (EE only)
|
||||
################################################################################
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "Gitlab",
|
||||
"id": "gitlab",
|
||||
"packaging_format": 1,
|
||||
"version": "11.11.1~ynh1",
|
||||
"version": "12.0.3~ynh1",
|
||||
"description": {
|
||||
"en": "GitLab is a Git-repository manager.",
|
||||
"fr": "GitLab est un gestionnaire de dépôts Git."
|
||||
|
|
|
@ -124,7 +124,7 @@ gitlab-ctl reconfigure
|
|||
#=================================================
|
||||
ynh_script_progression --message="Waiting for gitlab..." --weight=15
|
||||
|
||||
ynh_systemd_action --action=restart --service_name="gitlab-runsvdir" --log_path="/var/log/$app/unicorn/current" --line_match="adopted" --timeout=3600
|
||||
ynh_systemd_action --action=restart --service_name="gitlab-runsvdir" --log_path="/var/log/$app/unicorn/current" --line_match="adopted" --timeout=300
|
||||
|
||||
#=================================================
|
||||
# GENERIC FINALISATION
|
||||
|
|
|
@ -184,7 +184,7 @@ ynh_setup_source --dest_dir=$tempdir --source_id=$architecture
|
|||
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then
|
||||
if ! ynh_exec_warn_less dpkg -i $tempdir/$gitlab_filename ;
|
||||
then # This command will fail in lxc env
|
||||
ynh_replace_string --match_string="command \"cat \/etc\/sysctl.conf \/etc\/sysctl.d\/\*.conf | sysctl -e -p -\"" --replace_string="command \"cat \/etc\/sysctl.conf\"" --target_file="$final_path/embedded/cookbooks/package/resources/sysctl.rb"
|
||||
package_check_action # defined in upgrade.d/upgrade.last.sh
|
||||
ynh_exec_warn_less dpkg --configure gitlab-ce
|
||||
fi
|
||||
else
|
||||
|
@ -249,6 +249,13 @@ ynh_script_progression --message="Reloading nginx web server..." --weight=1
|
|||
|
||||
ynh_systemd_action --action=reload --service_name=nginx
|
||||
|
||||
#=================================================
|
||||
# RESTART GITLAB
|
||||
#=================================================
|
||||
ynh_script_progression --message="Restarting gitlab..." --weight=15
|
||||
|
||||
ynh_systemd_action --action=restart --service_name="gitlab-runsvdir" --log_path="/var/log/$app/unicorn/current" --line_match="adopted" --timeout=300
|
||||
|
||||
#=================================================
|
||||
# END OF SCRIPT
|
||||
#=================================================
|
||||
|
|
|
@ -118,7 +118,7 @@ ynh_setup_source --dest_dir=$tempdir --source_id=$architecture
|
|||
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then
|
||||
if ! ynh_exec_warn_less dpkg -i $tempdir/$gitlab_filename ;
|
||||
then # This command will fail in lxc env
|
||||
ynh_replace_string --match_string="command \"cat \/etc\/sysctl.conf \/etc\/sysctl.d\/\*.conf | sysctl -e -p -\"" --replace_string="command \"cat \/etc\/sysctl.conf\"" --target_file="$final_path/embedded/cookbooks/package/resources/sysctl.rb"
|
||||
package_check_action # defined in upgrade.d/upgrade.last.sh
|
||||
ynh_exec_warn_less dpkg --configure gitlab-ce
|
||||
fi
|
||||
else
|
||||
|
@ -156,7 +156,7 @@ yunohost service add "gitlab-runsvdir" --log "/var/log/$app/gitlab-rails/applica
|
|||
#=================================================
|
||||
ynh_script_progression --message="Waiting for gitlab..." --weight=14
|
||||
|
||||
ynh_systemd_action --action=restart --service_name="gitlab-runsvdir" --log_path="/var/log/$app/unicorn/current" --line_match="adopted" --timeout=3600
|
||||
ynh_systemd_action --action=restart --service_name="gitlab-runsvdir" --log_path="/var/log/$app/unicorn/current" --line_match="adopted" --timeout=300
|
||||
|
||||
#=================================================
|
||||
# CHECK THE RESTORED DATA
|
||||
|
|
|
@ -236,7 +236,31 @@ if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|||
then
|
||||
ynh_script_progression --message="Setting up source files..." --weight=200
|
||||
|
||||
current_version=$(grep gitlab-ce /opt/gitlab/version-manifest.txt | cut -d' ' -f2)
|
||||
|
||||
# Load the last available version
|
||||
source ./upgrade.d/upgrade.last.sh
|
||||
last_version=$gitlab_version
|
||||
last_major_version=${gitlab_version%%.*}
|
||||
|
||||
# While the current version is not the last version, do an upgrade
|
||||
while [ "$last_version" != "$current_version" ]
|
||||
do
|
||||
|
||||
current_major_version=${current_version%%.*}
|
||||
|
||||
# If the current version is equal to the last minor version of upgrade.$current_major_version.sh, increment the major version
|
||||
if [ "$gitlab_version" = "$current_version" ]; then
|
||||
current_major_version=$(($current_major_version + 1))
|
||||
fi
|
||||
|
||||
# If the current version has the same major version than the next one,
|
||||
# then it's the last upgrade to do
|
||||
if [ "$last_major_version" -eq "$current_major_version" ]; then
|
||||
current_major_version=last
|
||||
fi
|
||||
|
||||
source ./upgrade.d/upgrade.$current_major_version.sh
|
||||
cp ../conf/$architecture.src.default ../conf/$architecture.src
|
||||
ynh_replace_string --match_string="__VERSION__" --replace_string="$gitlab_version" --target_file="../conf/$architecture.src"
|
||||
ynh_replace_string --match_string="__SOURCE_FILENAME__" --replace_string="$gitlab_filename" --target_file="../conf/$architecture.src"
|
||||
|
@ -254,7 +278,7 @@ then
|
|||
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then
|
||||
if ! ynh_exec_warn_less dpkg -i $tempdir/$gitlab_filename ;
|
||||
then # This command will fail in lxc env
|
||||
ynh_replace_string --match_string="command \"cat \/etc\/sysctl.conf \/etc\/sysctl.d\/\*.conf | sysctl -e -p -\"" --replace_string="command \"cat \/etc\/sysctl.conf\"" --target_file="$final_path/embedded/cookbooks/package/resources/sysctl.rb"
|
||||
package_check_action # defined in upgrade.d/upgrade.X.sh
|
||||
ynh_exec_warn_less dpkg --configure gitlab-ce
|
||||
fi
|
||||
else
|
||||
|
@ -262,6 +286,9 @@ then
|
|||
fi
|
||||
|
||||
ynh_exec_warn_less ynh_secure_remove --file="$tempdir"
|
||||
|
||||
current_version=$(grep gitlab-ce /opt/gitlab/version-manifest.txt | cut -d' ' -f2)
|
||||
done
|
||||
fi
|
||||
|
||||
#=================================================
|
||||
|
@ -300,10 +327,9 @@ fi
|
|||
|
||||
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
||||
then
|
||||
ynh_script_progression --message="Waiting for gitlab..." --weight=15
|
||||
ynh_script_progression --message="Restarting gitlab..." --weight=15
|
||||
|
||||
# Action status to just wait the service
|
||||
ynh_systemd_action --action=status --service_name="gitlab-runsvdir" --log_path="/var/log/$app/unicorn/current" --line_match="adopted" --timeout=3600
|
||||
ynh_systemd_action --action=restart --service_name="gitlab-runsvdir" --log_path="/var/log/$app/unicorn/current" --line_match="adopted" --timeout=300
|
||||
fi
|
||||
|
||||
#=================================================
|
||||
|
@ -317,4 +343,4 @@ ynh_systemd_action --action=reload --service_name=nginx
|
|||
# END OF SCRIPT
|
||||
#=================================================
|
||||
|
||||
ynh_script_progression --message="Upgrade of $app completed"--last
|
||||
ynh_script_progression --message="Upgrade of $app completed" --last
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
gitlab_version="11.10.1"
|
||||
|
||||
gitlab_x86_64_source_sha256="cffde1c3875c2864c3e954dd1077acde3cc87d8f8963309d2ac4455d621748eb"
|
||||
|
||||
gitlab_arm_source_sha256="f414dbfaa074843c0f693e8d5cd63d6fd913c7a39358ebcb55f5be664aaf5916"
|
||||
|
||||
gitlab_filename="gitlab-ce-${gitlab_version}.deb"
|
|
@ -1,7 +0,0 @@
|
|||
gitlab_version="11.10.2"
|
||||
|
||||
gitlab_x86_64_source_sha256="40732062a4f6f70043d7cb56c647b23353c8bf7ed42cf676f77d0376237b8736"
|
||||
|
||||
gitlab_arm_source_sha256="204d30853de173569718e045d2d7ac6fba266aa0f14e345a5ba431bfbf3daea6"
|
||||
|
||||
gitlab_filename="gitlab-ce-${gitlab_version}.deb"
|
|
@ -1,7 +0,0 @@
|
|||
gitlab_version="11.10.4"
|
||||
|
||||
gitlab_x86_64_source_sha256="0c1875b86a819fc48aa0ba6df0d5e322d633056ec73dfd10a2973c48cbbd2f6a"
|
||||
|
||||
gitlab_arm_source_sha256="fa551e0a01dfba22857acdc91a19e5340fc4e595085dcde07afed4bce5ea4239"
|
||||
|
||||
gitlab_filename="gitlab-ce-${gitlab_version}.deb"
|
|
@ -1,5 +0,0 @@
|
|||
gitlab_version="11.6.3"
|
||||
|
||||
gitlab_x86_64_source_sha256="5a990a76c1656ddd42673562d8bd1be106a835331a2ce976d405c536a5567485"
|
||||
|
||||
gitlab_arm_source_sha256="3b1d1c650df8722d0b63b5db3e6c2440ea70224deeca0621a9c5226a06079d2e"
|
|
@ -1,5 +0,0 @@
|
|||
gitlab_version="11.7.0"
|
||||
|
||||
gitlab_x86_64_source_sha256="5a989b1e664494e6de139064b349fe9b22f37d5edd2918a4968fdf5e818a10c4"
|
||||
|
||||
gitlab_arm_source_sha256="558e6b3cf87bd5c8b3dee567b2557ee6cc3fb40655cc6dabe5531c94cf27b99d"
|
|
@ -1,5 +0,0 @@
|
|||
gitlab_version="11.7.3"
|
||||
|
||||
gitlab_x86_64_source_sha256="9c15fbbc4de7fb22ec4d3b120bdb32d65d8d329e453a80065031fbb5bb45b7cb"
|
||||
|
||||
gitlab_arm_source_sha256="36cd946387d2f1a262e8bb92c76e1db34be09c1a4e6983938f2e9c45813614c8"
|
|
@ -1,5 +0,0 @@
|
|||
gitlab_version="11.7.4"
|
||||
|
||||
gitlab_x86_64_source_sha256="ac207cfc2507be9d23ed2ebdcadbf743e45832abd235b6c73ecf370f9497e6c8"
|
||||
|
||||
gitlab_arm_source_sha256="3378b91a7707f6788929c9fe00bc16072de5c9c5546270a55b9863bec86c74d0"
|
|
@ -1,5 +0,0 @@
|
|||
gitlab_version="11.7.5"
|
||||
|
||||
gitlab_x86_64_source_sha256="bed16a7fdbbc80055ef1784221d70254eb5bda70891a61fe18f818f2f36ed0d4"
|
||||
|
||||
gitlab_arm_source_sha256="92eed427abe3f2ccc509aed38cfee447e3e853fbe0d89620f165189e3741a9c1"
|
|
@ -1,5 +0,0 @@
|
|||
gitlab_version="11.8.0"
|
||||
|
||||
gitlab_x86_64_source_sha256="fd0a5c0adac65a731eebdfbecccee8f7f6274922a32ca1a01980ae09a3fdd499"
|
||||
|
||||
gitlab_arm_source_sha256="4633bab56c78bcf745cac342fd327085461406ab87d197461d477ce67c15f24d"
|
|
@ -1,7 +0,0 @@
|
|||
gitlab_version="11.8.1"
|
||||
|
||||
gitlab_x86_64_source_sha256="ee670ddbad60bdd10d93749593a25a62f1d10f2b232da70b8e42081778b9a36b"
|
||||
|
||||
gitlab_arm_source_sha256="582a5ed77ef50a16377a00f403a6b8f425e8fb98593be95fb0f7cb6db8e5629d"
|
||||
|
||||
gitlab_filename="gitlab-ce-${gitlab_version}.deb"
|
|
@ -1,7 +0,0 @@
|
|||
gitlab_version="11.9.0"
|
||||
|
||||
gitlab_x86_64_source_sha256="13dcff613c9f7a915117aec8d788e99ac4742e1ac7be0c7c6a87fc8de8f4275d"
|
||||
|
||||
gitlab_arm_source_sha256="2aec5d04f05cc3bb2fa22e52232e4e0841e58fb3f77052f776292db09e2fcf87"
|
||||
|
||||
gitlab_filename="gitlab-ce-${gitlab_version}.deb"
|
|
@ -1,7 +0,0 @@
|
|||
gitlab_version="11.9.1"
|
||||
|
||||
gitlab_x86_64_source_sha256="9668345176be07f1f8637b3c72ffea6f8fe2e76a8c5b10b74a340b9b6b97788c"
|
||||
|
||||
gitlab_arm_source_sha256="df1fb5be8ec089a77cfe8276cbaabe0e40b0f3368cafc07de984d7795252ee21"
|
||||
|
||||
gitlab_filename="gitlab-ce-${gitlab_version}.deb"
|
|
@ -1,7 +0,0 @@
|
|||
gitlab_version="11.9.4"
|
||||
|
||||
gitlab_x86_64_source_sha256="20963cd803b116d041795f50c607ddf837e7226bc46025997348fe1c2e5e35ca"
|
||||
|
||||
gitlab_arm_source_sha256="dba6f34b23ba74765b03ce9521b16a5e951e6bd6d1f2fdcce692a58f43a4c48b"
|
||||
|
||||
gitlab_filename="gitlab-ce-${gitlab_version}.deb"
|
|
@ -1,7 +0,0 @@
|
|||
gitlab_version="11.9.8"
|
||||
|
||||
gitlab_x86_64_source_sha256="bb81616deeb92a4abf129373a4e6c9d246b37ad1ea707328efeec2fc0a07fc2a"
|
||||
|
||||
gitlab_arm_source_sha256="1810be6f6780a700624343b976eace277ac6aefce51ec4341f549f7642be620f"
|
||||
|
||||
gitlab_filename="gitlab-ce-${gitlab_version}.deb"
|
13
scripts/upgrade.d/upgrade.11.sh
Normal file
13
scripts/upgrade.d/upgrade.11.sh
Normal file
|
@ -0,0 +1,13 @@
|
|||
gitlab_version="11.11.5"
|
||||
|
||||
gitlab_x86_64_source_sha256="1ee3d6e8d2cc198f5466de0884c03f6016299db24859126af9a191501dbdef10"
|
||||
|
||||
gitlab_arm_source_sha256="366e12b1f3d3b1694fcb6f13da9de908360ba93f75768d97e8d01e61e8652705"
|
||||
|
||||
gitlab_filename="gitlab-ce-${gitlab_version}.deb"
|
||||
|
||||
# Action to do in case of failure of the package_check
|
||||
package_check_action() {
|
||||
ynh_replace_string --match_string="command \"cat \/etc\/sysctl.conf \/etc\/sysctl.d\/\*.conf | sysctl -e -p -\"" --replace_string="command \"cat \/etc\/sysctl.conf\"" --target_file="$final_path/embedded/cookbooks/package/resources/sysctl.rb"
|
||||
}
|
||||
|
|
@ -1,7 +1,12 @@
|
|||
gitlab_version="11.11.1"
|
||||
gitlab_version="12.0.3"
|
||||
|
||||
gitlab_x86_64_source_sha256="b23af7ec2689e6eff69927e1176e8b009ed01b6b66df4ff80e9ab5da67e0684d"
|
||||
gitlab_x86_64_source_sha256="9e2dcb0e4e3ca3c230d43c6b8580d77c2c716f3c6d1055739f175ead20d83678"
|
||||
|
||||
gitlab_arm_source_sha256="4847ae487dcbcb26cf60842cd016b66ccccc5a1e71778582d333010aa0daf7cf"
|
||||
gitlab_arm_source_sha256="992710fd2c4076961f03633cb6b56331f7ade63a6869c47c2ce28995f8b43893"
|
||||
|
||||
gitlab_filename="gitlab-ce-${gitlab_version}.deb"
|
||||
|
||||
# Action to do in case of failure of the package_check
|
||||
package_check_action() {
|
||||
ynh_replace_string --match_string="command \"sysctl -e --system\"" --replace_string="command \"sysctl -e --system || true\"" --target_file="$final_path/embedded/cookbooks/package/resources/sysctl.rb"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue