[解决方法] GitLab-CE容器启动报错:Unexpected Error: ----------------- ThreadError: can‘t create Thread: Opera

容器启动一直失败,容器内部挂载的目录缺少权限引起的。于是我尝试添加目录 777 权限./gitlab/data也还是不行。还是报相同错误:

# docker-compose up -d
[+] Running 1/1
 ✔ Container gitlab  Started                                                                                                               0.7s 
[root@release-compile debug_gitlab]# docker logs -f gitlab
Thank you for using GitLab Docker Image!
Current version: gitlab-ce=17.10.4-ce.0

Configure GitLab for your system by editing /etc/gitlab/gitlab.rb file
And restart this container to reload settings.
To do it use docker exec:

  docker exec -it gitlab editor /etc/gitlab/gitlab.rb
  docker restart gitlab

For a comprehensive list of configuration options please see the Omnibus GitLab readme
https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md

If this container fails to start due to permission problems try to fix it by executing:

  docker exec -it gitlab update-permissions
  docker restart gitlab

Cleaning stale PIDs & sockets
cat: /var/opt/gitlab/gitlab-rails/VERSION: No such file or directory
Preparing services...
Starting services...
Configuring GitLab...
/opt/gitlab/embedded/bin/runsvdir-start: line 37: /proc/sys/fs/file-max: Read-only file system
[2025-05-14T23:31:34+00:00] INFO: Started Cinc Zero at chefzero://localhost:1 with repository at /opt/gitlab/embedded (One version per cookbook)
Cinc Client, version 18.3.0
Patents: https://www.chef.io/patents
Infra Phase starting
[2025-05-14T23:31:34+00:00] INFO: *** Cinc Client 18.3.0 ***
[2025-05-14T23:31:34+00:00] INFO: Platform: x86_64-linux
[2025-05-14T23:31:34+00:00] INFO: Cinc-client pid: 28
/opt/gitlab/embedded/lib/ruby/gems/3.2.0/gems/ffi-yajl-2.6.0/lib/ffi_yajl/encoder.rb:42: warning: undefining the allocator of T_DATA class FFI_Yajl::Ext::Encoder::YajlGen
[2025-05-14T23:31:35+00:00] INFO: Setting the run_list to ["recipe[gitlab]"] from CLI options
[2025-05-14T23:31:35+00:00] INFO: Run List is [recipe[gitlab]]
[2025-05-14T23:31:35+00:00] INFO: Run List expands to [gitlab]
[2025-05-14T23:31:35+00:00] INFO: Starting Cinc Client Run for gitlab666
[2025-05-14T23:31:35+00:00] INFO: Running start handlers
[2025-05-14T23:31:35+00:00] INFO: Start handlers complete.
Resolving cookbooks for run list: ["gitlab"]
[2025-05-14T23:31:35+00:00] INFO: Loading cookbooks [gitlab@0.0.1, package@0.1.0, logrotate@0.1.0, postgresql@0.1.0, redis@0.1.0, monitoring@0.1.0, registry@0.1.0, mattermost@0.1.0, consul@0.1.0, gitaly@0.1.0, praefect@0.1.0, gitlab-kas@0.1.0, gitlab-pages@0.1.0, letsencrypt@0.1.0, nginx@0.1.0, runit@5.1.7, acme@4.1.6, crond@0.1.0]
Synchronizing cookbooks:
  
  ================================================================================
  Error Syncing Cookbooks:
  ================================================================================
  
  Unexpected Error:
  -----------------
  ThreadError: can't create Thread: Operation not permitted
  
  System Info:
  ------------
  chef_version=18.3.0
  platform=ubuntu
  platform_version=22.04
  ruby=ruby 3.2.5 (2024-07-26 revision 31d0f1a2e7) [x86_64-linux]
  program_name=/opt/gitlab/embedded/bin/cinc-client
  executable=/opt/gitlab/embedded/bin/cinc-client
  
  
  Running handlers:
[2025-05-14T23:31:35+00:00] ERROR: Running exception handlers
There was an error running gitlab-ctl reconfigure:

can't create Thread: Operation not permitted

  Running handlers complete
[2025-05-14T23:31:35+00:00] ERROR: Exception handlers complete
  Infra Phase failed. 0 resources updated in 01 seconds
[2025-05-14T23:31:36+00:00] FATAL: Stacktrace dumped to /opt/gitlab/embedded/cookbooks/cache/cinc-stacktrace.out
[2025-05-14T23:31:36+00:00] FATAL: ---------------------------------------------------------------------------------------
[2025-05-14T23:31:36+00:00] FATAL: PLEASE PROVIDE THE CONTENTS OF THE stacktrace.out FILE (above) IF YOU FILE A BUG REPORT
[2025-05-14T23:31:36+00:00] FATAL: ---------------------------------------------------------------------------------------
[2025-05-14T23:31:36+00:00] FATAL: ThreadError: can't create Thread: Operation not permitted

解决方案

步骤 1:调整Docker容器的权限配置

docker-compose.yml中增加以下配置,授予容器必要的系统权限:

services:
  gitlab:
    # 其他配置保持不变...
    cap_add:
      - SYS_ADMIN          # 允许修改系统参数
      - SYS_RESOURCE       # 允许调整资源限制
    security_opt:
      - seccomp:unconfined  # 禁用Seccomp过滤(可选,根据环境调整)
      - apparmor:unconfined # 禁用AppArmor(可选)
步骤 2:检查宿主机ulimit设置

确保宿主机允许足够的进程数和文件描述符:

# 临时生效(重启失效)
ulimit -n 65535         # 文件描述符
ulimit -u unlimited     # 用户进程数

# 永久生效(编辑/etc/security/limits.conf)
echo "* soft nofile 65535" | sudo tee -a /etc/security/limits.conf
echo "* hard nofile 65535" | sudo tee -a /etc/security/limits.conf
echo "* soft nproc  unlimited" | sudo tee -a /etc/security/limits.conf
echo "* hard nproc  unlimited" | sudo tee -a /etc/security/limits.conf
步骤 3:清理旧数据并重建容器
# 停止并删除容器及关联卷
docker-compose down -v

# 删除旧数据(确认已备份)
sudo rm -rf gitlab/

# 重新创建数据目录并设置宽松权限(仅测试环境)
mkdir -p gitlab/{config,logs,data}
chmod -R 755 gitlab/

# 重新启动容器
docker-compose up -d
docker logs -f gitlab

关键配置解释

配置项作用
cap_add: SYS_ADMIN允许容器执行挂载文件系统、修改系统参数等特权操作
security_opt禁用安全模块(如Seccomp/AppArmor),解决线程创建被拦截的问题
ulimit调整确保宿主机资源限制不会影响容器内进程创建和文件操作

搞定,问题解决!终于启动成功了

# docker-compose up -d
[+] Running 2/2
 ✔ Network debug_gitlab_default  Created                                                         0.1s 
 ✔ Container gitlab              Started                                                         0.6s 
[root@release-compile debug_gitlab]# docker logs -f gitlab
Thank you for using GitLab Docker Image!
Current version: gitlab-ce=17.10.4-ce.0

Configure GitLab for your system by editing /etc/gitlab/gitlab.rb file
And restart this container to reload settings.
To do it use docker exec:

  docker exec -it gitlab editor /etc/gitlab/gitlab.rb
  docker restart gitlab

For a comprehensive list of configuration options please see the Omnibus GitLab readme
https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md

If this container fails to start due to permission problems try to fix it by executing:

  docker exec -it gitlab update-permissions
  docker restart gitlab

Cleaning stale PIDs & sockets
cat: /var/opt/gitlab/gitlab-rails/VERSION: No such file or directory
Preparing services...
Starting services...
Configuring GitLab...
/opt/gitlab/embedded/bin/runsvdir-start: line 37: /proc/sys/fs/file-max: Read-only file system
[2025-05-14T23:36:55+00:00] INFO: Started Cinc Zero at chefzero://localhost:1 with repository at /opt/gitlab/embedded (One version per cookbook)
Cinc Client, version 18.3.0
Patents: https://www.chef.io/patents
Infra Phase starting
[2025-05-14T23:36:55+00:00] INFO: *** Cinc Client 18.3.0 ***
[2025-05-14T23:36:55+00:00] INFO: Platform: x86_64-linux
[2025-05-14T23:36:55+00:00] INFO: Cinc-client pid: 28
/opt/gitlab/embedded/lib/ruby/gems/3.2.0/gems/ffi-yajl-2.6.0/lib/ffi_yajl/encoder.rb:42: warning: undefining the allocator of T_DATA class FFI_Yajl::Ext::Encoder::YajlGen
[2025-05-14T23:36:55+00:00] INFO: Setting the run_list to ["recipe[gitlab]"] from CLI options
[2025-05-14T23:36:55+00:00] INFO: Run List is [recipe[gitlab]]
[2025-05-14T23:36:55+00:00] INFO: Run List expands to [gitlab]
[2025-05-14T23:36:55+00:00] INFO: Starting Cinc Client Run for gitlab666
[2025-05-14T23:36:55+00:00] INFO: Running start handlers
[2025-05-14T23:36:55+00:00] INFO: Start handlers complete.
Resolving cookbooks for run list: ["gitlab"]
[2025-05-14T23:36:56+00:00] INFO: Loading cookbooks [gitlab@0.0.1, package@0.1.0, logrotate@0.1.0, postgresql@0.1.0, redis@0.1.0, monitoring@0.1.0, registry@0.1.0, mattermost@0.1.0, consul@0.1.0, gitaly@0.1.0, praefect@0.1.0, gitlab-kas@0.1.0, gitlab-pages@0.1.0, letsencrypt@0.1.0, nginx@0.1.0, runit@5.1.7, acme@4.1.6, crond@0.1.0]
Synchronizing cookbooks:
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/gitlab_sshd_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/account_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/gitlab_mattermost.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/gitlab_exporter.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/gitlab_rails.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/README.md in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/gitlab_shell.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/attributes/default.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/bash_hide_env.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/gitlab_workhorse.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/helpers/base_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/helpers/authorizer_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/helpers/base_pg_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/helpers/gitlab_rails_env_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/helpers/gitlab_workhorse_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/helpers/gitlab_rails.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/helpers/geo_pg_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/helpers/metrics_exporter_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/helpers/pg_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/helpers/pg_status_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/helpers/web_server_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/incoming_email.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/logfiles_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/mailroom_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/logging.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/nginx.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/pg_version.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/postgresql.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/redis.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/puma.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/redis_uri.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/patroni.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/rails_migration_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/registry.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/sidekiq.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/smtp_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/metadata.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/libraries/storage_check.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/bootstrap_disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/bootstrap.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/database_reindexing_disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/config.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/add_trusted_certs.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/database_reindexing_enable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/default.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/generate_secrets.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/database_migrations.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/gitlab-healthcheck.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/gitlab-backup-cli.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/gitlab-backup-cli_disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/gitlab-rails.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/gitlab-workhorse_disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/gitlab-shell.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/letsencrypt_renew.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/mailroom.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/mailroom_disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/gitlab-workhorse.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/puma.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/nginx_disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/remote-syslog.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/rails_pages_shared_path.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/puma_disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/remote-syslog_disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/remove_accounts.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/sidekiq.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/selinux.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/show_config.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/storage-check_disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/sidekiq_disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/storage-check.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/web-server.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/users.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/resources/database_objects.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/recipes/nginx.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/resources/puma_config.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/resources/rails_migration.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/cable.yml.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/resources/sidekiq_service.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/click_house.yml.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/gitconfig.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/gitlab-backup-cli-config.yml.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/database.yml.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/gitconfig-system.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/gitlab-healthcheck-rc.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/gitlab-rails-error.html.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/make_metrics_rundir.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/gitlab.yml.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/gitlab-shell-config.yml.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/gitlab-rails-rc.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/nginx-gitlab-kas-http.conf.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/nginx-gitlab-health.conf.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/mount_point_check.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/nginx-gitlab-http.conf.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/nginx-gitlab-mattermost-http.conf.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/nginx.conf.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/nginx-gitlab-pages-http.conf.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/nginx-status.conf.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/redis.yml.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/puma.rb.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/resque.yml.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/secrets.yml.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/remote_syslog.yml.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/secret_token.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/session_store.yml.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-gitlab-sshd-log-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/smtp_settings.rb.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-gitlab-workhorse-log-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-gitlab-sshd-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/nginx-gitlab-registry-http.conf.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-gitlab-sshd-log-config.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-gitlab-workhorse-log-config.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-mailroom-finish.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-gitlab-workhorse-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-mailroom-log-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-mailroom-log-config.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-puma-h.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-puma-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-mailroom-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-puma-log-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-puma-log-config.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-sidekiq-log-config.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-remote-syslog-log-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-puma-t.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-remote-syslog-log-config.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-remote-syslog-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-sidekiq-log-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-sidekiq-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-storage-check-log-config.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/files/default/gitlab-runsvdir.conf in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-storage-check-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/sv-storage-check-log-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/gitlab/templates/default/workhorse-config.toml.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/certificate_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/gitlab.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/attributes/default.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/roles/geo_primary.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/roles/consul.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/roles/gitaly.rb in the cache.
  - gitlab (0.0.1)
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/roles/default.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/roles/geo_secondary.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/roles/monitoring.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/roles/application.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/roles/patroni.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/roles/pages.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/roles/postgres.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/roles/pgbouncer.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/roles/redis_sentinel.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/roles/redis_master.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/roles/sidekiq.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config_mash.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/services.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/config/roles/spamcheck.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/formatters/gitlab.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/deprecations.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/handlers/gitlab.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/gitlab_cluster.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/redis_helper/gitlab_kas.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/output_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/redis_helper/base.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/logging_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/redis_helper/gitlab_exporter.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/node_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/redis_helper/gitlab_rails.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/redis_helper/gitlab_workhorse.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/redis_helper/redis_exporter.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/roles_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/redis_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/secrets_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/redis_helper/server.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/selinux_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/systemd_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/shell_out_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/object_proxy.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/services_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/version_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/package.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/omnibus_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/settings_dsl.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/storage_directory_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/metadata.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/recipes/runit.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/recipes/sysctl.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/recipes/runit_sysvinit.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/recipes/runit_systemd.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/recipes/runit_upstart.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/resources/account.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/resources/env_dir.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/resources/gitlab_sysctl.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/resources/templatesymlink.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/resources/storage_directory.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/logrotate/metadata.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/templates/default/gitlab-runsvdir.service.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/resources/version_file.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/logrotate/attributes/default.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/logrotate/recipes/disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/logrotate/recipes/folders_and_configs.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/package/libraries/helpers/selinux_distro_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/logrotate/recipes/enable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/logrotate/templates/default/logrotate.conf.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/logrotate/templates/default/sv-logrotate-log-config.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/logrotate/templates/default/sv-logrotate-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/logrotate/templates/default/logrotate-service.erb in the cache.
  - package (0.1.0)
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/logrotate/templates/default/sv-logrotate-t.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/logrotate/templates/default/sv-logrotate-log-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/README.md in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/attributes/default.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/metadata.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/recipes/bin.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/recipes/directory_locations.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/recipes/disable.rb in the cache.
  - logrotate (0.1.0)[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/recipes/sysctl.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/recipes/enable.rb in the cache.

[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/recipes/user.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/resources/config.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/resources/query.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/resources/extension.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/resources/schema.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/resources/database.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/resources/user.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/templates/default/gitlab-psql-rc.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/templates/default/pg_hba.conf.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/templates/default/pg_ident.conf.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/templates/default/postgresql-runtime.conf.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/templates/default/sv-postgresql-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/templates/default/postgresql.conf.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/templates/default/sv-postgresql-log-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/templates/default/sv-postgresql-log-config.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/templates/default/sv-postgresql-t.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/redis/attributes/attributes.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/redis/metadata.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/postgresql/recipes/standalone.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/redis/recipes/disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/redis/recipes/enable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/redis/resources/service.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/redis/templates/default/sv-redis-log-config.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/redis/templates/default/gitlab-redis-cli-rc.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/redis/templates/default/redis.conf.erb in the cache.
  - postgresql (0.1.0)
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/redis/templates/default/sv-redis-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/monitoring/attributes/default.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/redis/templates/default/sv-redis-log-run.erb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/monitoring/libraries/prometheus_helper.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/monitoring/libraries/prometheus.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/monitoring/metadata.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/monitoring/recipes/alertmanager_disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/monitoring/recipes/default.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/monitoring/recipes/alertmanager.rb in the cache.
  - redis (0.1.0)
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/monitoring/recipes/gitlab-exporter.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/monitoring/recipes/gitlab-exporter_disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/monitoring/recipes/node-exporter_disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/monitoring/recipes/postgres-exporter.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/monitoring/recipes/pgbouncer-exporter_disable.rb in the cache.
[2025-05-14T23:36:56+00:00] INFO: Storing updated cookbooks/monitoring/recipes/prometheus_disable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/recipes/pgbouncer-exporter.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/recipes/prometheus.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/recipes/postgres-exporter_disable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/recipes/redis-exporter.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/recipes/node-exporter.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/mount_point_check.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/gitlab-exporter.yml.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/postgres-queries.yaml.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/recipes/user.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/rules/node.rules in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/recipes/redis-exporter_disable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-alertmanager-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/rules/gitlab.rules in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-alertmanager-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-gitlab-exporter-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-gitlab-exporter-log-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-alertmanager-log-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-gitlab-exporter-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-node-exporter-log-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-node-exporter-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-pgbouncer-exporter-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-node-exporter-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-postgres-exporter-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-pgbouncer-exporter-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-pgbouncer-exporter-log-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-prometheus-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-postgres-exporter-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-postgres-exporter-log-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-prometheus-log-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-prometheus-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-redis-exporter-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-redis-exporter-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/registry/metadata.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/registry/recipes/disable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/monitoring/templates/sv-redis-exporter-log-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/registry/attributes/default.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/registry/recipes/enable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/registry/templates/default/registry-config.yml.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/registry/templates/default/sv-registry-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/mattermost/libraries/mattermost_helper.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/mattermost/attributes/default.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/mattermost/metadata.rb in the cache.
  - monitoring (0.1.0)
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/registry/templates/default/sv-registry-log-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/mattermost/recipes/disable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/mattermost/templates/default/sv-mattermost-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/mattermost/recipes/enable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/mattermost/templates/default/sv-mattermost-log-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/attributes/default.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/mattermost/templates/default/sv-mattermost-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/libraries/consul.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/attributes/services.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/attributes/watchers.rb in the cache.
  - mattermost (0.1.0)
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/registry/templates/default/sv-registry-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/libraries/failover_helper.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/libraries/consul_helper.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/libraries/watch_helper.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/recipes/disable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/metadata.rb in the cache.
  - registry (0.1.0)
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/recipes/configure_services.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/recipes/enable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/recipes/disable_service_postgresql.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/recipes/enable_daemon.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/recipes/watchers.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/recipes/enable_service_postgresql.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/recipes/disable_daemon.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/resources/consul_service.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/templates/default/sv-consul-log-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/templates/default/sv-consul-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/templates/default/sv-consul-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitaly/libraries/gitaly.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitaly/metadata.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitaly/recipes/git_data_dirs.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitaly/attributes/default.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/consul/templates/default/watcher_scripts/failover_pgbouncer.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitaly/recipes/enable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitaly/recipes/disable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitaly/templates/default/gitaly-config.toml.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/praefect/attributes/default.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitaly/templates/default/sv-gitaly-log-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitaly/templates/default/sv-gitaly-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitaly/templates/default/sv-gitaly-run.erb in the cache.
  - consul (0.1.0)
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/praefect/recipes/disable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/praefect/metadata.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/praefect/recipes/database_migrations.rb in the cache.
  - gitaly (0.1.0)
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/praefect/recipes/enable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/praefect/templates/default/praefect-config.toml.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/praefect/templates/default/sv-praefect-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/praefect/templates/default/sv-praefect-log-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/praefect/templates/default/sv-praefect-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-kas/libraries/gitlab_kas.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-kas/attributes/default.rb in the cache.
  - praefect (0.1.0)
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-kas/recipes/enable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-kas/recipes/disable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-kas/templates/default/gitlab-kas-config.yml.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-kas/templates/default/sv-gitlab-kas-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-kas/metadata.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-kas/templates/default/sv-gitlab-kas-log-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-kas/templates/default/sv-gitlab-kas-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-pages/attributes/default.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-pages/metadata.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-pages/recipes/disable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-pages/recipes/enable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-pages/libraries/gitlab_pages.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-pages/templates/default/mount_point_check.erb in the cache.
  - gitlab-kas (0.1.0)
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-pages/templates/default/secret_token.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-pages/templates/default/gitlab-pages-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-pages/templates/default/sv-gitlab-pages-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-pages/templates/default/sv-gitlab-pages-log-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/gitlab-pages/templates/default/sv-gitlab-pages-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/letsencrypt/libraries/helper.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/letsencrypt/README.md in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/letsencrypt/attributes/default.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/letsencrypt/libraries/lets_encrypt.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/letsencrypt/recipes/enable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/nginx/metadata.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/letsencrypt/resources/certificate.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/letsencrypt/recipes/disable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/letsencrypt/recipes/http_authorization.rb in the cache.
  - gitlab-pages (0.1.0)
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/nginx/recipes/enable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/nginx/templates/default/sv-nginx-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/nginx/templates/default/sv-nginx-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/nginx/templates/default/sv-nginx-log-run.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/runit/README.md in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/runit/LICENSE in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/letsencrypt/metadata.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/runit/libraries/helpers.rb in the cache.
  - letsencrypt (0.1.0)
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/runit/libraries/resource_runit_service.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/runit/libraries/provider_runit_service.rb in the cache.
  - nginx (0.1.0)
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/runit/metadata.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/Berksfile in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/LICENSE in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/README.md in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/attributes/default.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/.rubocop.yml in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/chefignore in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/kitchen.digitalocean.yml in the cache.
  - runit (5.1.7)
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/kitchen.dokken.yml in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/kitchen.yml in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/libraries/acme.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/resources/selfsigned.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/resources/certificate.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/metadata.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/recipes/default.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/templates/acme-challange.nginx.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/crond/libraries/crond_helper.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/acme/resources/ssl_key.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/crond/attributes/default.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/crond/recipes/disable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/crond/recipes/enable.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/crond/templates/default/sv-crond-log-config.erb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/crond/metadata.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/crond/templates/default/sv-crond-log-run.erb in the cache.
  - acme (4.1.6)
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/crond/resources/job.rb in the cache.
[2025-05-14T23:36:57+00:00] INFO: Storing updated cookbooks/crond/templates/default/sv-crond-run.erb in the cache.
  - crond (0.1.0)
Installing cookbook gem dependencies:
Compiling cookbooks...
/opt/gitlab/embedded/cookbooks/cache/cookbooks/package/libraries/helpers/selinux_distro_helper.rb:2: warning: already initialized constant SELinuxDistroHelper::REDHAT_RELEASE_FILE
/opt/gitlab/embedded/cookbooks/package/libraries/helpers/selinux_distro_helper.rb:2: warning: previous definition of REDHAT_RELEASE_FILE was here
/opt/gitlab/embedded/cookbooks/cache/cookbooks/package/libraries/helpers/selinux_distro_helper.rb:3: warning: already initialized constant SELinuxDistroHelper::OS_RELEASE_FILE
/opt/gitlab/embedded/cookbooks/package/libraries/helpers/selinux_distro_helper.rb:3: warning: previous definition of OS_RELEASE_FILE was here
/opt/gitlab/embedded/cookbooks/cache/cookbooks/package/libraries/helpers/secrets_helper.rb:4: warning: already initialized constant SecretsHelper::SECRETS_FILE
/opt/gitlab/embedded/cookbooks/package/libraries/helpers/secrets_helper.rb:4: warning: previous definition of SECRETS_FILE was here
/opt/gitlab/embedded/cookbooks/cache/cookbooks/package/libraries/helpers/secrets_helper.rb:5: warning: already initialized constant SecretsHelper::SECRETS_FILE_CHEF_ATTR
/opt/gitlab/embedded/cookbooks/package/libraries/helpers/secrets_helper.rb:5: warning: previous definition of SECRETS_FILE_CHEF_ATTR was here
/opt/gitlab/embedded/cookbooks/cache/cookbooks/package/libraries/helpers/secrets_helper.rb:6: warning: already initialized constant SecretsHelper::SKIP_GENERATE_SECRETS_CHEF_ATTR
/opt/gitlab/embedded/cookbooks/package/libraries/helpers/secrets_helper.rb:6: warning: previous definition of SKIP_GENERATE_SECRETS_CHEF_ATTR was here
/opt/gitlab/embedded/cookbooks/cache/cookbooks/package/libraries/gitlab_cluster.rb:16: warning: already initialized constant GitlabCluster::CONFIG_PATH
/opt/gitlab/embedded/cookbooks/package/libraries/gitlab_cluster.rb:16: warning: previous definition of CONFIG_PATH was here
/opt/gitlab/embedded/cookbooks/cache/cookbooks/package/libraries/gitlab_cluster.rb:17: warning: already initialized constant GitlabCluster::JSON_FILE
/opt/gitlab/embedded/cookbooks/package/libraries/gitlab_cluster.rb:17: warning: previous definition of JSON_FILE was here
Loading Cinc Auditor profile files:
Loading Cinc Auditor input files:
Loading Cinc Auditor waiver files:
[2025-05-14T23:36:58+00:00] INFO: Generating default secrets
[2025-05-14T23:36:59+00:00] INFO: Generating /etc/gitlab/gitlab-secrets.json file
[2025-05-14T23:36:59+00:00] WARN: * git_data_dirs has been deprecated since 17.8 and will be removed in 18.0. See https://docs.gitlab.com/omnibus/settings/configuration.html#migrating-from-git_data_dirs for migration instructions.
Recipe: gitlab::default
  * directory[/etc/gitlab] action create[2025-05-14T23:36:59+00:00] INFO: directory[/etc/gitlab] mode changed to 775

    - change mode from '0755' to '0775'
[2025-05-14T23:36:59+00:00] WARN: gitlab-rails does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] INFO: Skipped selecting an init system because it was explicitly disabled
[2025-05-14T23:36:59+00:00] WARN: gitlab-shell does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: gitlab-sshd does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: logrotate does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: logrotate does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: puma does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: gitlab-rails does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: gitlab-shell does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: gitlab-workhorse does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: gitlab-pages does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: gitlab-kas does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: gitaly does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: mailroom does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: gitaly does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: postgresql does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: postgresql does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] INFO: /opt/gitlab/init/postgresql status does not exist.
[2025-05-14T23:36:59+00:00] WARN: gitlab-kas does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: puma does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: sidekiq does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: gitlab-workhorse does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: gitlab-exporter does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: redis-exporter does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: prometheus does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: alertmanager does not have a log_group or default logdir mode defined. Setting to 0700.
[2025-05-14T23:36:59+00:00] WARN: postgres-exporter does not have a log_group or default logdir mode defined. Setting to 0700.
  Converging 281 resources
  * directory[/etc/gitlab] action create (up to date)
  * directory[Create /var/opt/gitlab] action create[2025-05-14T23:37:00+00:00] INFO: directory[Create /var/opt/gitlab] owner changed to 0

    - change owner from '777' to 'root'
  * directory[Create /var/log/gitlab] action create (up to date)
  * directory[/opt/gitlab/embedded/etc] action create[2025-05-14T23:37:00+00:00] INFO: directory[/opt/gitlab/embedded/etc] created directory /opt/gitlab/embedded/etc

    - create new directory /opt/gitlab/embedded/etc[2025-05-14T23:37:00+00:00] INFO: directory[/opt/gitlab/embedded/etc] owner changed to 0
[2025-05-14T23:37:00+00:00] INFO: directory[/opt/gitlab/embedded/etc] group changed to 0
[2025-05-14T23:37:00+00:00] INFO: directory[/opt/gitlab/embedded/etc] mode changed to 755

    - change mode from '' to '0755'
    - change owner from '' to 'root'
    - change group from '' to 'root'
  * template[/opt/gitlab/embedded/etc/gitconfig] action create[2025-05-14T23:37:00+00:00] INFO: template[/opt/gitlab/embedded/etc/gitconfig] created file /opt/gitlab/embedded/etc/gitconfig

    - create new file /opt/gitlab/embedded/etc/gitconfig[2025-05-14T23:37:00+00:00] INFO: template[/opt/gitlab/embedded/etc/gitconfig] updated file contents /opt/gitlab/embedded/etc/gitconfig

    - update content in file /opt/gitlab/embedded/etc/gitconfig from none to e3b0c4
    (no diff)[2025-05-14T23:37:00+00:00] INFO: template[/opt/gitlab/embedded/etc/gitconfig] mode changed to 755

    - change mode from '' to '0755'
Recipe: gitlab::web-server
  * account[Webserver user and group] action create (up to date)
Recipe: gitlab::users
  * directory[/var/opt/gitlab] action create (up to date)
  * account[GitLab user and group] action create (up to date)
  * template[/var/opt/gitlab/.gitconfig] action create[2025-05-14T23:37:00+00:00] INFO: template[/var/opt/gitlab/.gitconfig] created file /var/opt/gitlab/.gitconfig

    - create new file /var/opt/gitlab/.gitconfig[2025-05-14T23:37:00+00:00] INFO: template[/var/opt/gitlab/.gitconfig] updated file contents /var/opt/gitlab/.gitconfig

    - update content in file /var/opt/gitlab/.gitconfig from none to a3242d
    --- /var/opt/gitlab/.gitconfig	2025-05-14 23:37:00.146443021 +0000
    +++ /var/opt/gitlab/.chef-.gitconfig20250514-28-qq4cvp.gitconfig	2025-05-14 23:37:00.145442996 +0000
    @@ -1,12 +1,24 @@
    +# This file is managed by gitlab-ctl. Manual changes will be
    +# erased! To change the contents below, edit /etc/gitlab/gitlab.rb
    +# and run `sudo gitlab-ctl reconfigure`.
    +
    +[user]
    +        name = GitLab
    +        email = gitlab@10.128.132.148
    +[core]
    +        autocrlf = input
    +        
    +[gc]
    +        auto = 0[2025-05-14T23:37:00+00:00] INFO: template[/var/opt/gitlab/.gitconfig] owner changed to 998
[2025-05-14T23:37:00+00:00] INFO: template[/var/opt/gitlab/.gitconfig] group changed to 998
[2025-05-14T23:37:00+00:00] INFO: template[/var/opt/gitlab/.gitconfig] mode changed to 644

    - change mode from '' to '0644'
    - change owner from '' to 'git'
    - change group from '' to 'git'
  * directory[/var/opt/gitlab/.bundle] action create[2025-05-14T23:37:00+00:00] INFO: directory[/var/opt/gitlab/.bundle] created directory /var/opt/gitlab/.bundle

    - create new directory /var/opt/gitlab/.bundle[2025-05-14T23:37:00+00:00] INFO: directory[/var/opt/gitlab/.bundle] owner changed to 998
[2025-05-14T23:37:00+00:00] INFO: directory[/var/opt/gitlab/.bundle] group changed to 998

    - change owner from '' to 'git'
    - change group from '' to 'git'
Recipe: gitaly::git_data_dirs
  * storage_directory[/var/opt/gitlab/git-data/repositories] action create
    * ruby_block[directory resource: /var/opt/gitlab/git-data/repositories] action run[2025-05-14T23:37:00+00:00] INFO: ruby_block[directory resource: /var/opt/gitlab/git-data/repositories] called

      - execute the ruby block directory resource: /var/opt/gitlab/git-data/repositories
  
Recipe: gitlab::rails_pages_shared_path
  * storage_directory[/var/opt/gitlab/gitlab-rails/shared] action create
    * ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared] action run[2025-05-14T23:37:00+00:00] INFO: ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared] called

      - execute the ruby block directory resource: /var/opt/gitlab/gitlab-rails/shared
  
  * storage_directory[/var/opt/gitlab/gitlab-rails/shared/pages] action create
    * ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/pages] action run[2025-05-14T23:37:00+00:00] INFO: ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/pages] called

      - execute the ruby block directory resource: /var/opt/gitlab/gitlab-rails/shared/pages
  
Recipe: gitlab::gitlab-rails
  * storage_directory[/var/opt/gitlab/gitlab-rails/shared/artifacts] action create
    * ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/artifacts] action run[2025-05-14T23:37:01+00:00] INFO: ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/artifacts] called

      - execute the ruby block directory resource: /var/opt/gitlab/gitlab-rails/shared/artifacts
  
  * storage_directory[/var/opt/gitlab/gitlab-rails/shared/external-diffs] action create
    * ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/external-diffs] action run[2025-05-14T23:37:01+00:00] INFO: ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/external-diffs] called

      - execute the ruby block directory resource: /var/opt/gitlab/gitlab-rails/shared/external-diffs
  
  * storage_directory[/var/opt/gitlab/gitlab-rails/shared/lfs-objects] action create
    * ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/lfs-objects] action run[2025-05-14T23:37:01+00:00] INFO: ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/lfs-objects] called

      - execute the ruby block directory resource: /var/opt/gitlab/gitlab-rails/shared/lfs-objects
  
  * storage_directory[/var/opt/gitlab/gitlab-rails/shared/packages] action create
    * ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/packages] action run[2025-05-14T23:37:01+00:00] INFO: ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/packages] called

      - execute the ruby block directory resource: /var/opt/gitlab/gitlab-rails/shared/packages
  
  * storage_directory[/var/opt/gitlab/gitlab-rails/shared/dependency_proxy] action create
    * ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/dependency_proxy] action run[2025-05-14T23:37:01+00:00] INFO: ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/dependency_proxy] called

      - execute the ruby block directory resource: /var/opt/gitlab/gitlab-rails/shared/dependency_proxy
  
  * storage_directory[/var/opt/gitlab/gitlab-rails/shared/terraform_state] action create
    * ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/terraform_state] action run[2025-05-14T23:37:02+00:00] INFO: ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/terraform_state] called

      - execute the ruby block directory resource: /var/opt/gitlab/gitlab-rails/shared/terraform_state
  
  * storage_directory[/var/opt/gitlab/gitlab-rails/shared/ci_secure_files] action create
    * ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/ci_secure_files] action run[2025-05-14T23:37:02+00:00] INFO: ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/ci_secure_files] called

      - execute the ruby block directory resource: /var/opt/gitlab/gitlab-rails/shared/ci_secure_files
  
  * storage_directory[/var/opt/gitlab/gitlab-rails/shared/encrypted_settings] action create
    * ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/encrypted_settings] action run[2025-05-14T23:37:02+00:00] INFO: ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/encrypted_settings] called

      - execute the ruby block directory resource: /var/opt/gitlab/gitlab-rails/shared/encrypted_settings
  
  * storage_directory[/var/opt/gitlab/gitlab-rails/uploads] action create
    * ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/uploads] action run[2025-05-14T23:37:02+00:00] INFO: ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/uploads] called

      - execute the ruby block directory resource: /var/opt/gitlab/gitlab-rails/uploads
  
  * storage_directory[/var/opt/gitlab/gitlab-ci/builds] action create
    * ruby_block[directory resource: /var/opt/gitlab/gitlab-ci/builds] action run[2025-05-14T23:37:02+00:00] INFO: ruby_block[directory resource: /var/opt/gitlab/gitlab-ci/builds] called

      - execute the ruby block directory resource: /var/opt/gitlab/gitlab-ci/builds
  
  * storage_directory[/var/opt/gitlab/gitlab-rails/shared/cache] action create
    * ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/cache] action run[2025-05-14T23:37:03+00:00] INFO: ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/cache] called

      - execute the ruby block directory resource: /var/opt/gitlab/gitlab-rails/shared/cache
  
  * storage_directory[/var/opt/gitlab/gitlab-rails/shared/tmp] action create
    * ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/tmp] action run[2025-05-14T23:37:03+00:00] INFO: ruby_block[directory resource: /var/opt/gitlab/gitlab-rails/shared/tmp] called

      - execute the ruby block directory resource: /var/opt/gitlab/gitlab-rails/shared/tmp
  
  * storage_directory[/opt/gitlab/embedded/service/gitlab-rails/public] action create (skipped due to only_if)
  * directory[create /var/opt/gitlab/gitlab-rails/etc] action create[2025-05-14T23:37:03+00:00] INFO: directory[create /var/opt/gitlab/gitlab-rails/etc] created directory /var/opt/gitlab/gitlab-rails/etc

    - create new directory /var/opt/gitlab/gitlab-rails/etc[2025-05-14T23:37:03+00:00] INFO: directory[create /var/opt/gitlab/gitlab-rails/etc] owner changed to 998
[2025-05-14T23:37:03+00:00] INFO: directory[create /var/opt/gitlab/gitlab-rails/etc] mode changed to 700

    - change mode from '' to '0700'
    - change owner from '' to 'git'
  * directory[create /opt/gitlab/etc/gitlab-rails] action create[2025-05-14T23:37:03+00:00] INFO: directory[create /opt/gitlab/etc/gitlab-rails] created directory /opt/gitlab/etc/gitlab-rails

    - create new directory /opt/gitlab/etc/gitlab-rails[2025-05-14T23:37:03+00:00] INFO: directory[create /opt/gitlab/etc/gitlab-rails] owner changed to 998
[2025-05-14T23:37:03+00:00] INFO: directory[create /opt/gitlab/etc/gitlab-rails] mode changed to 700

    - change mode from '' to '0700'
    - change owner from '' to 'git'

看一下我的docker-compose配置文件内容

version: '3.7'
services:
  gitlab:
    image: harbor.xx.ad/user-xx/gitlab/gitlab-ce:17.10.4-ce.0
    #image: registry.gitlab.cn/jh/gitlab-jh:16.2.7-jh.0  # 极狐GitLab镜像
    container_name: gitlab
    cap_add:
      - SYS_ADMIN
      - SYS_RESOURCE
    security_opt:
      - seccomp:unconfined
      - apparmor:unconfined
    restart: always
    hostname: 'gitlab666'  # 指定容器主机名
    environment:
      GITLAB_OMNIBUS_CONFIG: |
        external_url 'http://192.168.132.148:8929'  # 外部访问地址
        gitlab_rails['gitlab_shell_ssh_port'] = "2224"  # 初始管理员密码
        gitlab_rails['initial_root_password'] = "mydebug@666"  # 初始管理员密码
        gitlab_rails['time_zone'] = 'Asia/Shanghai'  # 时区
    ports:
      - "8929:8929"
      - "2224:22"  # SSH端口映射(避免与宿主机22端口冲突)
    volumes:
      - /opt/gitlab/config:/etc/gitlab
      - /opt/gitlab/logs:/var/log/gitlab
      - /opt/gitlab/data:/var/opt/gitlab

看看我的社区版GitLab界面

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值