gitextract_0o0z_sra/ ├── .circleci/ │ └── config.yml ├── .dockerignore ├── .github/ │ └── stale.yml ├── .gitignore ├── .gitlab-ci.yml ├── CI_MIGRATION.md ├── CONTRIBUTING.md ├── Changelog.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── assets/ │ ├── build/ │ │ ├── config/ │ │ │ └── database.yml.postgresql │ │ ├── install.sh │ │ └── patches/ │ │ ├── gitlabhq/ │ │ │ ├── 0001-fix-feature-checking-for-gitaly-on-a-fresh-install.patch.bak │ │ │ ├── 0002-fix-condition-for-csr-policy-allow-lfs_v16.3.0.patch.bak │ │ │ ├── 0003-fix_preinstall.mjs-to-avoid-removing-node_modules_dir.patch.bak │ │ │ ├── 0004-fix-raketask-gitlab-assets-compile.patch.bak │ │ │ └── 0005_fix-gitlab-setup-mr225503.patch │ │ └── ruby/ │ │ └── 0001-avoid-seeding_until-ruby3.3.0.bak │ └── runtime/ │ ├── config/ │ │ ├── gitaly/ │ │ │ └── config.toml │ │ ├── gitlab-pages/ │ │ │ └── config │ │ ├── gitlab-shell/ │ │ │ └── config.yml │ │ ├── gitlabhq/ │ │ │ ├── cable.yml │ │ │ ├── database.yml │ │ │ ├── gitlab.yml │ │ │ ├── puma.rb │ │ │ ├── relative_url.rb │ │ │ ├── resque.yml │ │ │ ├── secrets.yml │ │ │ └── smtp_settings.rb │ │ └── nginx/ │ │ ├── gitlab │ │ ├── gitlab-pages │ │ ├── gitlab-pages-ssl │ │ ├── gitlab-registry │ │ ├── gitlab-ssl │ │ └── gitlab_ci │ ├── env-defaults │ ├── functions │ └── scripts/ │ └── configure_feature_flags.rb ├── contrib/ │ ├── docker-swarm/ │ │ ├── docker-compose.yml │ │ ├── gitlab.configs │ │ └── gitlab.secrets │ └── expose-gitlab-ssh-port.sh ├── docker-compose.swarm.yml ├── docker-compose.yml ├── docs/ │ ├── container_registry.md │ ├── docker-compose-keycloak.yml │ ├── docker-compose-registry.yml │ ├── docker-swarm-traefik-registry.md │ ├── exposing-ssh-port.md │ ├── keycloak-idp.md │ └── s3_compatible_storage.md ├── entrypoint.sh ├── hooks/ │ └── build ├── kubernetes/ │ ├── deploy.sh │ ├── gitlab-rc.yml │ ├── gitlab-svc.yml │ ├── postgresql-rc.yml │ ├── postgresql-svc.yml │ ├── redis-rc.yml │ ├── redis-svc.yml │ └── teardown.sh └── scripts/ └── release-notes.sh