├── .custom_sources.yml ├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab ├── CODEOWNERS ├── changelog_config.yml ├── issue_templates │ ├── Bug.md │ ├── Feature Proposal.md │ ├── Remove Deprecation Message.md │ └── Security developer workflow.md ├── merge_request_templates │ ├── Component upgrade.md │ ├── Default.md │ ├── Deprecated Configuration.md │ ├── Documentation update.md │ ├── Security Release.md │ └── Stable Branch.md └── route-map.yml ├── .markdownlint-cli2.yaml ├── .projections.json.example ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .ruby-version ├── .tool-versions ├── .vale.ini ├── .yardopts ├── Berksfile ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dangerfile ├── GITALY_SERVER_VERSION ├── GITLAB_ELASTICSEARCH_INDEXER_VERSION ├── GITLAB_KAS_VERSION ├── GITLAB_PAGES_VERSION ├── GITLAB_SHELL_VERSION ├── GITLAB_WORKHORSE_VERSION ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── OMNIBUS_GEM_VERSION ├── README.md ├── Rakefile ├── VERSION ├── argo_translation.yml ├── config ├── patches │ ├── bzip2 │ │ └── makefile_take_env_vars.patch │ ├── cacerts │ │ └── license │ │ │ └── 2025.11.04 │ │ │ └── add-license-file.patch │ ├── chef-gem │ │ ├── drop-eol-warning.patch │ │ ├── drop-net-http-warning.patch │ │ ├── license │ │ │ ├── add-license-file.patch │ │ │ └── add-notice-file.patch │ │ └── utf8-locale-support.patch │ ├── config_guess │ │ └── add-license-file.patch │ ├── curl │ │ └── 0001-Patch-curl-OpenSSL-m4-for-AL2-FIPS-pkg-config.patch │ ├── exiftool │ │ ├── allowlist-types.patch │ │ ├── lib-location.patch │ │ └── license.patch │ ├── git-filter-repo │ │ └── license │ │ │ ├── add-gpl-license-file.patch │ │ │ ├── add-license-file.patch │ │ │ └── add-mit-license-file.patch │ ├── gitlab-exporter │ │ └── add-license-file.patch │ ├── gitlab-rails │ │ ├── backup_restore_hooks.patch │ │ ├── security-patch-13.12.patch │ │ ├── security-patch-14.0.patch │ │ ├── security-patch-14.1.patch │ │ ├── security-patch-14.2.patch │ │ ├── security-patch-14.3.patch │ │ ├── security-patch-14.4.patch │ │ ├── security-patch-14.5.patch │ │ ├── token-prefix-patch-13.12.patch │ │ ├── token-prefix-patch-14.0.patch │ │ ├── token-prefix-patch-14.1.patch │ │ ├── token-prefix-patch-14.2.patch │ │ ├── token-prefix-patch-14.3.patch │ │ ├── token-prefix-patch-14.4.patch │ │ └── token-prefix-patch-14.5.patch │ ├── go-crond │ │ └── lock-dependencies.patch │ ├── inspec-gem │ │ └── fix-uninitialized-constant-parser-mixin.patch │ ├── libffi │ │ └── libffi-3.2.1-disable-multi-os-directory.patch │ ├── libtensorflow_lite │ │ ├── abseil-standard-ints.patch │ │ ├── flatbuffers-gcc-ignore-overflow-false-positives.patch │ │ ├── tensorflow-standard-ints.patch │ │ └── xnnpack-gcc-permissive.patch │ ├── libtiff │ │ ├── add-libtoolize-call-to-autogen.patch │ │ └── remove-config-guess-sub-download.patch │ ├── mail_room │ │ └── add-license-file.patch │ ├── omnibus-ctl │ │ └── skip-license-acceptance.patch │ ├── openssl │ │ └── openssl-1.1.1f-do-not-install-docs.patch │ ├── patroni │ │ └── add-license-file.patch │ ├── postgresql │ │ └── no_docs.patch │ ├── prometheus │ │ └── rpi-correct-platform.patch │ ├── python-docutils │ │ └── license │ │ │ └── 0.19 │ │ │ └── add-license-file.patch │ ├── python3 │ │ ├── custom-openssl.patch │ │ ├── readline-3-9.patch │ │ └── skip-nis-build.patch │ ├── registry │ │ └── license │ │ │ └── 2.6.2-with-patch │ │ │ └── add-license-file.patch │ ├── remote-syslog │ │ └── license │ │ │ └── 1.6.15 │ │ │ └── add-license-file.patch │ ├── ruby-grpc │ │ ├── grpc-system-ssl-1.42.0.patch │ │ └── grpc-system-ssl-1.48.0.patch │ ├── ruby │ │ ├── fiddle-closure-3.1.patch │ │ ├── fix-ruby-fips-symbols.patch │ │ ├── fix-ruby-xfree-for-libxml2-2.7.patch │ │ ├── fix-ruby-xfree-for-libxml2-3.0.patch │ │ ├── fix-ruby-xfree-for-libxml2-3.1.patch │ │ ├── patch-configure │ │ ├── ruby-disable-copy-file-range.patch │ │ ├── ruby-mkmf.patch │ │ ├── thread-memory-allocations-2.7.patch │ │ ├── thread-memory-allocations-3.0.patch │ │ ├── thread-memory-allocations-3.1.patch │ │ ├── thread-memory-allocations-3.2.patch │ │ ├── thread-memory-allocations-3.3.patch │ │ └── thread-memory-allocations-3.4.patch │ ├── rubygems │ │ └── license │ │ │ └── add-license-file.patch │ ├── runit │ │ ├── log-status.patch │ │ └── permissive-gcc.patch │ └── unzip │ │ ├── 0-gitlab-source.patch │ │ ├── 01-manpages-in-section-1-not-in-section-1l.patch │ │ ├── 03-include-unistd-for-kfreebsd.patch │ │ ├── 04-handle-pkware-verification-bit.patch │ │ ├── 05-fix-uid-gid-handling.patch │ │ ├── 06-initialize-the-symlink-flag.patch │ │ ├── 07-increase-size-of-cfactorstr.patch │ │ ├── 08-allow-greater-hostver-values.patch │ │ ├── 09-cve-2014-8139-crc-overflow.patch │ │ ├── 10-cve-2014-8140-test-compr-eb.patch │ │ ├── 11-cve-2014-8141-getzip64data.patch │ │ ├── 12-cve-2014-9636-test-compr-eb.patch │ │ ├── 13-remove-build-date.patch │ │ ├── 14-cve-2015-7696.patch │ │ ├── 15-cve-2015-7697.patch │ │ ├── 16-fix-integer-underflow-csiz-decrypted.patch │ │ ├── 17-restore-unix-timestamps-accurately.patch │ │ ├── 18-cve-2014-9913-unzip-buffer-overflow.patch │ │ ├── 19-cve-2016-9844-zipinfo-buffer-overflow.patch │ │ ├── 20-cve-2018-1000035-unzip-buffer-overflow.patch │ │ ├── 21-fix-warning-messages-on-big-files.patch │ │ ├── 22-cve-2019-13232-fix-bug-in-undefer-input.patch │ │ ├── 23-cve-2019-13232-zip-bomb-with-overlapped-entries.patch │ │ ├── 24-cve-2019-13232-do-not-raise-alert-for-misplaced-central-directory.patch │ │ ├── 25-cve-2019-13232-fix-bug-in-uzbunzip2.patch │ │ ├── 26-cve-2019-13232-fix-bug-in-uzinflate.patch │ │ ├── 27-zipgrep-avoid-test-errors.patch │ │ ├── 28-cve-2022-0529-and-cve-2022-0530.patch │ │ ├── 29-handle-windows-zip64-files.patch │ │ ├── 30-drop-conflicting-declarations.patch │ │ └── 31-fix-zipgrep.patch ├── projects │ ├── gitlab.rb │ └── gitlab │ │ ├── gitlab-ce.rb │ │ ├── gitlab-ee.rb │ │ └── gitlab-fips.rb ├── software │ ├── README.md │ ├── alertmanager.rb │ ├── bzip2.rb │ ├── cacerts.rb │ ├── chef-acme.rb │ ├── chef-gem.rb │ ├── compat_resource.rb │ ├── config_guess.rb │ ├── consul.rb │ ├── cosign.rb │ ├── curl.rb │ ├── exiftool.rb │ ├── fast-stats.rb │ ├── git-filter-repo.rb │ ├── git.rb │ ├── gitaly.rb │ ├── gitlab-backup-cli.rb │ ├── gitlab-config-template.rb │ ├── gitlab-cookbooks.rb │ ├── gitlab-ctl-ee.rb │ ├── gitlab-ctl.rb │ ├── gitlab-elasticsearch-indexer.rb │ ├── gitlab-exporter.rb │ ├── gitlab-geo-psql.rb │ ├── gitlab-healthcheck.rb │ ├── gitlab-kas.rb │ ├── gitlab-pages.rb │ ├── gitlab-pg-ctl.rb │ ├── gitlab-psql.rb │ ├── gitlab-rails.rb │ ├── gitlab-redis-cli.rb │ ├── gitlab-scripts.rb │ ├── gitlab-selinux.rb │ ├── gitlab-shell.rb │ ├── gitlabsos.rb │ ├── gnupg.rb │ ├── go-crond.rb │ ├── gpgme.rb │ ├── graphicsmagick.rb │ ├── inspec-gem.rb │ ├── jemalloc.rb │ ├── krb5.rb │ ├── libarchive.rb │ ├── libassuan.rb │ ├── libedit.rb │ ├── libevent.rb │ ├── libffi.rb │ ├── libgcrypt.rb │ ├── libgpg-error.rb │ ├── libiconv.rb │ ├── libicu.rb │ ├── libjpeg-turbo.rb │ ├── libksba.rb │ ├── liblzma.rb │ ├── libossp-uuid.rb │ ├── libpng.rb │ ├── libtensorflow_lite.rb │ ├── libtiff.rb │ ├── libtool.rb │ ├── libxml2.rb │ ├── libxslt.rb │ ├── libyaml.rb │ ├── logrotate.rb │ ├── mattermost.rb │ ├── ncurses.rb │ ├── nginx-module-vts.rb │ ├── nginx.rb │ ├── ngx_security_headers.rb │ ├── node-exporter.rb │ ├── npth.rb │ ├── omnibus-ctl.rb │ ├── omnibus-gitlab-gems.rb │ ├── openssl.rb │ ├── openssl_1.rb │ ├── openssl_3.rb │ ├── package-scripts.rb │ ├── patroni.rb │ ├── pcre2.rb │ ├── pgbouncer-exporter.rb │ ├── pgbouncer.rb │ ├── pkg-config-lite.rb │ ├── popt.rb │ ├── postgres-exporter.rb │ ├── postgresql.rb │ ├── prometheus.rb │ ├── psycopg2.rb │ ├── python-docutils.rb │ ├── python-setuptools.rb │ ├── python3.rb │ ├── rb-readline.rb │ ├── redis-exporter.rb │ ├── redis.rb │ ├── registry.rb │ ├── rsync.rb │ ├── ruby-grpc.rb │ ├── ruby.rb │ ├── rubygems.rb │ ├── runit.rb │ ├── spam-classifier.rb │ ├── spamcheck.rb │ ├── unzip.rb │ ├── version-manifest.rb │ └── zlib-ng.rb └── templates │ ├── gitaly │ └── gitlab_shell_hooks_wrapper.erb │ ├── gitlab-backup-cli │ └── gitlab_backup_cli_wrapper.erb │ ├── gitlab-cookbooks │ ├── cookbook_packages_default.erb │ ├── dna.json.erb │ ├── geo-postgresql-config.json.erb │ ├── patroni-config.json.erb │ ├── pg-upgrade-config.json.erb │ ├── postgresql-bin.json.erb │ └── postgresql-config.json.erb │ ├── gitlab-rails │ ├── bundle_exec_wrapper.erb │ ├── gem_license_generator.erb │ └── rake_backup_wrapper.erb │ ├── omnibus-gitlab-gems │ ├── Gemfile │ └── Gemfile.lock │ ├── package-scripts │ ├── external_url.sh │ ├── postinst.erb │ ├── postrm.erb │ ├── posttrans.erb │ └── preinst.erb │ └── runit │ └── runsvdir-start.erb ├── danger ├── reviewers │ └── Dangerfile ├── ruby_upgrade │ └── Dangerfile ├── software │ └── Dangerfile ├── specs │ └── Dangerfile ├── tag_only_jobs │ └── Dangerfile └── template │ └── Dangerfile ├── doc-locale ├── .markdownlint │ └── .markdownlint-cli2.yaml └── ja-jp │ ├── _index.md │ ├── build │ ├── _index.md │ ├── build_docker_image.md │ ├── build_package.md │ └── vault_integration.md │ ├── development │ ├── _index.md │ ├── add-remove-configuration-options.md │ ├── adding-deprecation-messages.md │ ├── allure-test-report.md │ ├── architecture │ │ ├── _index.md │ │ └── multiple_database_support │ │ │ └── _index.md │ ├── aws_amis_and_marketplace_listings.md │ ├── broken_master.md │ ├── change-package-behavior.md │ ├── ci-variables.md │ ├── contribute-to-omnibus-gitlab.md │ ├── creating-patches.md │ ├── database_support.md │ ├── deprecating-and-removing-support-for-an-os.md │ ├── gitlab-ctl-commands.md │ ├── maintainership.md │ ├── managing-postgresql-versions.md │ ├── new-services.md │ ├── new-software-definition.md │ ├── omnibus-mirror.md │ ├── package_version_format.md │ ├── pipelines.md │ ├── public-attributes.md │ ├── reconfigure_in_detail.md │ ├── s390x.md │ ├── setup.md │ ├── test-plans │ │ ├── _index.md │ │ ├── upgrade-alertmanager-testplan.md │ │ ├── upgrade-component-testplan-template.md │ │ ├── upgrade-curl-testplan.md │ │ ├── upgrade-exiftool-testplan.md │ │ ├── upgrade-gitlab-exporter-testplan.md │ │ ├── upgrade-go-crond-testplan.md │ │ ├── upgrade-golang-testplan.md │ │ ├── upgrade-mattermost-testplan.md │ │ ├── upgrade-nginx-testplan.md │ │ ├── upgrade-redis-testplan.md │ │ └── upgrade-rubygems-testplan.md │ ├── upgrading-chef.md │ ├── upgrading-software-components.md │ └── vulnerabilities.md │ ├── installation │ └── _index.md │ ├── jihu_edition.md │ ├── maintenance │ └── _index.md │ ├── release │ └── _index.md │ ├── roles │ └── _index.md │ ├── settings │ ├── _index.md │ ├── actioncable.md │ ├── backups.md │ ├── configuration.md │ ├── database.md │ ├── dns.md │ ├── environment-variables.md │ ├── gitlab.yml.md │ ├── image_scaling.md │ ├── logs.md │ ├── memory_constrained_envs.md │ ├── nginx.md │ ├── nginx_troubleshooting.md │ ├── praefect.md │ ├── prometheus.md │ ├── redis.md │ ├── rpi.md │ ├── smtp.md │ └── ssl │ │ ├── _index.md │ │ ├── openssl_3.md │ │ └── ssl_troubleshooting.md │ ├── troubleshooting.md │ └── update │ ├── convert_to_omnibus.md │ └── package_signatures.md ├── doc ├── .markdownlint │ ├── .markdownlint-cli2.yaml │ └── rules │ │ └── unnecessary_traversal.js ├── .vale │ ├── gitlab_base │ │ ├── Ability.yml │ │ ├── BadPlurals.yml │ │ ├── British.yml │ │ ├── CIConfigFile.yml │ │ ├── CodeblockFences.yml │ │ ├── CommandStringsQuoted.yml │ │ ├── CurrentStatus.yml │ │ ├── DefaultBranch.yml │ │ ├── Dropdown.yml │ │ ├── EOLWhitespace.yml │ │ ├── ElementDescriptors.yml │ │ ├── FutureTense.yml │ │ ├── GitLabFlavoredMarkdown.yml │ │ ├── HeadingContent.yml │ │ ├── HeadingDepth.yml │ │ ├── HeadingLink.yml │ │ ├── InclusiveLanguage.yml │ │ ├── LatinTerms.yml │ │ ├── Level.yml │ │ ├── ListIndentation.yml │ │ ├── MeaningfulLinkWords.yml │ │ ├── MergeConflictMarkers.yml │ │ ├── MultiLineLinks.yml │ │ ├── NonStandardHyphens.yml │ │ ├── NonStandardListDashes.yml │ │ ├── NonStandardQuotes.yml │ │ ├── NonStandardSpaces.yml │ │ ├── Offerings.yml │ │ ├── OutdatedVersions.yml │ │ ├── OxfordComma.yml │ │ ├── Possessive.yml │ │ ├── PossessiveProperNouns.yml │ │ ├── Prerequisites.yml │ │ ├── ReadingLevel.yml │ │ ├── Repetition.yml │ │ ├── SelfReferential.yml │ │ ├── SentenceLength.yml │ │ ├── SentenceSpacing.yml │ │ ├── Simplicity.yml │ │ ├── Spelling.yml │ │ ├── SubstitutionWarning.yml │ │ ├── Substitutions.yml │ │ ├── TableDelimiterRows.yml │ │ ├── ToDo.yml │ │ ├── UnclearAntecedent.yml │ │ ├── Units.yml │ │ ├── Uppercase.yml │ │ ├── WordSlashWord.yml │ │ ├── Wordy.yml │ │ ├── Zip.yml │ │ └── spelling-exceptions.txt │ └── gitlab_docs │ │ ├── AlertBoxStyle.yml │ │ ├── Badges-Offerings.yml │ │ ├── Badges-Tiers.yml │ │ ├── FrontMatter.yml │ │ ├── HistoryItems.yml │ │ ├── HistoryItemsOrder.yml │ │ ├── ImagesOld.yml │ │ ├── InternalLinkCase.yml │ │ ├── InternalLinkExtension.yml │ │ ├── InternalLinkFormat.yml │ │ ├── InternalLinksCode.yml │ │ ├── NonStandardListDashes.yml │ │ ├── ReferenceLinks.yml │ │ ├── RelativeLinks.yml │ │ ├── ShortCodeFormat.yml │ │ ├── TablePipes.yml │ │ └── TabsLinks.yml ├── _index.md ├── build │ ├── _index.md │ ├── build_docker_image.md │ ├── build_package.md │ └── vault_integration.md ├── development │ ├── _index.md │ ├── add-remove-configuration-options.md │ ├── adding-deprecation-messages.md │ ├── allure-test-report.md │ ├── architecture │ │ ├── _index.md │ │ ├── img │ │ │ └── components.png │ │ └── multiple_database_support │ │ │ └── _index.md │ ├── aws_amis_and_marketplace_listings.md │ ├── broken_master.md │ ├── change-package-behavior.md │ ├── ci-variables.md │ ├── contribute-to-omnibus-gitlab.md │ ├── creating-patches.md │ ├── database_support.md │ ├── deprecating-and-removing-support-for-an-os.md │ ├── examples │ │ └── simple.rb │ ├── gitlab-ctl-commands.md │ ├── maintainership.md │ ├── managing-postgresql-versions.md │ ├── new-services.md │ ├── new-software-definition.md │ ├── omnibus-mirror.md │ ├── package_version_format.md │ ├── pipelines.md │ ├── public-attributes.md │ ├── reconfigure_in_detail.md │ ├── s390x.md │ ├── setup.md │ ├── team_members.md │ ├── test-plans │ │ ├── _index.md │ │ ├── upgrade-alertmanager-testplan.md │ │ ├── upgrade-component-testplan-template.md │ │ ├── upgrade-curl-testplan.md │ │ ├── upgrade-exiftool-testplan.md │ │ ├── upgrade-gitlab-exporter-testplan.md │ │ ├── upgrade-gitlabsos-testplan.md │ │ ├── upgrade-go-crond-testplan.md │ │ ├── upgrade-golang-testplan.md │ │ ├── upgrade-gpg-testplan.md │ │ ├── upgrade-libtiff-testplan.md │ │ ├── upgrade-libxml2-testplan.md │ │ ├── upgrade-mattermost-testplan.md │ │ ├── upgrade-nginx-testplan.md │ │ ├── upgrade-nginx-vts-testplan.md │ │ ├── upgrade-openssl-test-plan.md │ │ ├── upgrade-redis-exporter-testplan.md │ │ ├── upgrade-redis-testplan.md │ │ └── upgrade-rubygems-testplan.md │ ├── upgrading-chef.md │ ├── upgrading-software-components.md │ └── vulnerabilities.md ├── installation │ └── _index.md ├── jihu_edition.md ├── maintenance │ └── _index.md ├── release │ └── _index.md ├── roles │ └── _index.md ├── settings │ ├── _index.md │ ├── actioncable.md │ ├── backups.md │ ├── configuration.md │ ├── database.md │ ├── dns.md │ ├── environment-variables.md │ ├── gitlab.yml.md │ ├── image_scaling.md │ ├── img │ │ └── error_page_example.png │ ├── logs.md │ ├── memory_constrained_envs.md │ ├── microsoft_graph_mailer.md │ ├── nginx.md │ ├── nginx_troubleshooting.md │ ├── praefect.md │ ├── prometheus.md │ ├── redis.md │ ├── rpi.md │ ├── smtp.md │ └── ssl │ │ ├── _index.md │ │ ├── openssl_3.md │ │ └── ssl_troubleshooting.md ├── troubleshooting.md └── update │ ├── convert_to_omnibus.md │ └── package_signatures.md ├── docker ├── .dockerignore ├── Dockerfile ├── README.md ├── assets │ ├── download-package │ ├── gitlab.rb │ ├── init-container │ ├── setup │ ├── sshd_config │ └── update-permissions ├── locale.gen └── marathon.json ├── files ├── gitlab-config-template │ └── gitlab.rb.template ├── gitlab-cookbooks │ ├── consul │ │ ├── attributes │ │ │ ├── default.rb │ │ │ ├── services.rb │ │ │ └── watchers.rb │ │ ├── libraries │ │ │ ├── consul.rb │ │ │ ├── consul_helper.rb │ │ │ ├── failover_helper.rb │ │ │ └── watch_helper.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── configure_services.rb │ │ │ ├── disable.rb │ │ │ ├── disable_daemon.rb │ │ │ ├── disable_service_postgresql.rb │ │ │ ├── enable.rb │ │ │ ├── enable_daemon.rb │ │ │ ├── enable_service_postgresql.rb │ │ │ └── watchers.rb │ │ ├── resources │ │ │ └── consul_service.rb │ │ └── templates │ │ │ └── default │ │ │ ├── sv-consul-log-config.erb │ │ │ ├── sv-consul-log-run.erb │ │ │ ├── sv-consul-run.erb │ │ │ └── watcher_scripts │ │ │ └── failover_pgbouncer.erb │ ├── crond │ │ ├── attributes │ │ │ └── default.rb │ │ ├── libraries │ │ │ └── crond_helper.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── disable.rb │ │ │ └── enable.rb │ │ ├── resources │ │ │ └── job.rb │ │ └── templates │ │ │ └── default │ │ │ ├── sv-crond-log-config.erb │ │ │ ├── sv-crond-log-run.erb │ │ │ └── sv-crond-run.erb │ ├── gitaly │ │ ├── attributes │ │ │ └── default.rb │ │ ├── libraries │ │ │ └── gitaly.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── disable.rb │ │ │ ├── enable.rb │ │ │ └── git_data_dirs.rb │ │ └── templates │ │ │ └── default │ │ │ ├── gitaly-config.toml.erb │ │ │ ├── sv-gitaly-log-config.erb │ │ │ ├── sv-gitaly-log-run.erb │ │ │ └── sv-gitaly-run.erb │ ├── gitlab-base │ │ ├── metadata.rb │ │ └── recipes │ │ │ ├── config.rb │ │ │ └── default.rb │ ├── gitlab-ee │ │ ├── attributes │ │ │ └── default.rb │ │ ├── libraries │ │ │ ├── geo_postgresql.rb │ │ │ ├── geo_secondary.rb │ │ │ ├── gitlab-ee.rb │ │ │ ├── gitlab_geo_helper.rb │ │ │ ├── sentinel.rb │ │ │ ├── sentinel_helper.rb │ │ │ └── suggested_reviewers.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── config.rb │ │ │ ├── default.rb │ │ │ ├── geo-logcursor.rb │ │ │ ├── geo-logcursor_disable.rb │ │ │ ├── geo-postgresql.rb │ │ │ ├── geo-postgresql_disable.rb │ │ │ ├── geo-secondary.rb │ │ │ ├── geo-secondary_disable.rb │ │ │ ├── geo_database_migrations.rb │ │ │ ├── sentinel.rb │ │ │ ├── sentinel_disable.rb │ │ │ └── suggested_reviewers.rb │ │ ├── resources │ │ │ └── sentinel_service.rb │ │ └── templates │ │ │ └── default │ │ │ ├── gitlab-geo-psql-rc.erb │ │ │ ├── mount_point_check.erb │ │ │ ├── sentinel.conf.erb │ │ │ ├── sv-geo-logcursor-log-config.erb │ │ │ ├── sv-geo-logcursor-log-run.erb │ │ │ ├── sv-geo-logcursor-run.erb │ │ │ ├── sv-geo-postgresql-log-config.erb │ │ │ ├── sv-geo-postgresql-log-run.erb │ │ │ ├── sv-geo-postgresql-run.erb │ │ │ ├── sv-geo-postgresql-t.erb │ │ │ ├── sv-sentinel-log-config.erb │ │ │ ├── sv-sentinel-log-run.erb │ │ │ └── sv-sentinel-run.erb │ ├── gitlab-kas │ │ ├── attributes │ │ │ └── default.rb │ │ ├── libraries │ │ │ └── gitlab_kas.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── disable.rb │ │ │ └── enable.rb │ │ └── templates │ │ │ └── default │ │ │ ├── gitlab-kas-config.yml.erb │ │ │ ├── sv-gitlab-kas-log-config.erb │ │ │ ├── sv-gitlab-kas-log-run.erb │ │ │ └── sv-gitlab-kas-run.erb │ ├── gitlab-pages │ │ ├── attributes │ │ │ └── default.rb │ │ ├── libraries │ │ │ └── gitlab_pages.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── disable.rb │ │ │ └── enable.rb │ │ └── templates │ │ │ └── default │ │ │ ├── gitlab-pages-config.erb │ │ │ ├── mount_point_check.erb │ │ │ ├── secret_token.erb │ │ │ ├── sv-gitlab-pages-log-config.erb │ │ │ ├── sv-gitlab-pages-log-run.erb │ │ │ └── sv-gitlab-pages-run.erb │ ├── gitlab │ │ ├── README.md │ │ ├── attributes │ │ │ └── default.rb │ │ ├── libraries │ │ │ ├── bash_hide_env.rb │ │ │ ├── gitlab_exporter.rb │ │ │ ├── gitlab_mattermost.rb │ │ │ ├── gitlab_rails.rb │ │ │ ├── gitlab_shell.rb │ │ │ ├── gitlab_sshd_helper.rb │ │ │ ├── gitlab_workhorse.rb │ │ │ ├── helper.rb │ │ │ ├── helpers │ │ │ │ ├── authorizer_helper.rb │ │ │ │ ├── base_pg_helper.rb │ │ │ │ ├── geo_pg_helper.rb │ │ │ │ ├── gitlab_rails.rb │ │ │ │ ├── gitlab_rails_env_helper.rb │ │ │ │ ├── gitlab_workhorse_helper.rb │ │ │ │ ├── metrics_exporter_helper.rb │ │ │ │ ├── pg_helper.rb │ │ │ │ ├── pg_status_helper.rb │ │ │ │ └── web_server_helper.rb │ │ │ ├── incoming_email.rb │ │ │ ├── logging.rb │ │ │ ├── mailroom_helper.rb │ │ │ ├── nginx.rb │ │ │ ├── patroni.rb │ │ │ ├── pg_version.rb │ │ │ ├── postgresql.rb │ │ │ ├── puma.rb │ │ │ ├── rails_migration_helper.rb │ │ │ ├── redis.rb │ │ │ ├── registry.rb │ │ │ ├── sidekiq.rb │ │ │ ├── smtp_helper.rb │ │ │ └── storage_check.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── add_trusted_certs.rb │ │ │ ├── bootstrap.rb │ │ │ ├── bootstrap_disable.rb │ │ │ ├── config.rb │ │ │ ├── database_migrations.rb │ │ │ ├── database_reindexing_disable.rb │ │ │ ├── database_reindexing_enable.rb │ │ │ ├── default.rb │ │ │ ├── generate_secrets.rb │ │ │ ├── gitlab-backup-cli.rb │ │ │ ├── gitlab-backup-cli_disable.rb │ │ │ ├── gitlab-healthcheck.rb │ │ │ ├── gitlab-rails.rb │ │ │ ├── gitlab-shell.rb │ │ │ ├── gitlab-workhorse.rb │ │ │ ├── gitlab-workhorse_disable.rb │ │ │ ├── letsencrypt_renew.rb │ │ │ ├── mailroom.rb │ │ │ ├── mailroom_disable.rb │ │ │ ├── nginx.rb │ │ │ ├── nginx_disable.rb │ │ │ ├── puma.rb │ │ │ ├── puma_disable.rb │ │ │ ├── rails_pages_shared_path.rb │ │ │ ├── remote-syslog.rb │ │ │ ├── remote-syslog_disable.rb │ │ │ ├── remove_accounts.rb │ │ │ ├── selinux.rb │ │ │ ├── show_config.rb │ │ │ ├── sidekiq.rb │ │ │ ├── sidekiq_disable.rb │ │ │ ├── storage-check.rb │ │ │ └── storage-check_disable.rb │ │ ├── resources │ │ │ ├── database_objects.rb │ │ │ ├── puma_config.rb │ │ │ ├── rails_migration.rb │ │ │ └── sidekiq_service.rb │ │ └── templates │ │ │ └── default │ │ │ ├── cable.yml.erb │ │ │ ├── click_house.yml.erb │ │ │ ├── database.yml.erb │ │ │ ├── gitconfig-system.erb │ │ │ ├── gitlab-backup-context.yml.erb │ │ │ ├── gitlab-healthcheck-rc.erb │ │ │ ├── gitlab-rails-error.html.erb │ │ │ ├── gitlab-rails-rc.erb │ │ │ ├── gitlab-shell-config.yml.erb │ │ │ ├── gitlab.yml.erb │ │ │ ├── make_metrics_rundir.erb │ │ │ ├── mount_point_check.erb │ │ │ ├── nginx-gitlab-health.conf.erb │ │ │ ├── nginx-gitlab-kas.conf.erb │ │ │ ├── nginx-gitlab-mattermost.conf.erb │ │ │ ├── nginx-gitlab-pages.conf.erb │ │ │ ├── nginx-gitlab-rails-metrics.conf.erb │ │ │ ├── nginx-gitlab-rails.conf.erb │ │ │ ├── nginx-gitlab-registry.conf.erb │ │ │ ├── nginx-gitlab-workhorse-upstream.conf.erb │ │ │ ├── nginx-status.conf.erb │ │ │ ├── nginx.conf.erb │ │ │ ├── puma.rb.erb │ │ │ ├── redis.yml.erb │ │ │ ├── remote_syslog.yml.erb │ │ │ ├── resque.yml.erb │ │ │ ├── secret_token.erb │ │ │ ├── secrets.yml.erb │ │ │ ├── session_store.yml.erb │ │ │ ├── smtp_settings.rb.erb │ │ │ ├── sv-gitlab-sshd-log-config.erb │ │ │ ├── sv-gitlab-sshd-log-run.erb │ │ │ ├── sv-gitlab-sshd-run.erb │ │ │ ├── sv-gitlab-workhorse-log-config.erb │ │ │ ├── sv-gitlab-workhorse-log-run.erb │ │ │ ├── sv-gitlab-workhorse-run.erb │ │ │ ├── sv-mailroom-finish.erb │ │ │ ├── sv-mailroom-log-config.erb │ │ │ ├── sv-mailroom-log-run.erb │ │ │ ├── sv-mailroom-run.erb │ │ │ ├── sv-puma-h.erb │ │ │ ├── sv-puma-log-config.erb │ │ │ ├── sv-puma-log-run.erb │ │ │ ├── sv-puma-run.erb │ │ │ ├── sv-puma-t.erb │ │ │ ├── sv-remote-syslog-log-config.erb │ │ │ ├── sv-remote-syslog-log-run.erb │ │ │ ├── sv-remote-syslog-run.erb │ │ │ ├── sv-sidekiq-log-config.erb │ │ │ ├── sv-sidekiq-log-run.erb │ │ │ ├── sv-sidekiq-run.erb │ │ │ ├── sv-storage-check-log-config.erb │ │ │ ├── sv-storage-check-log-run.erb │ │ │ ├── sv-storage-check-run.erb │ │ │ └── workhorse-config.toml.erb │ ├── letsencrypt │ │ ├── README.md │ │ ├── attributes │ │ │ └── default.rb │ │ ├── libraries │ │ │ ├── helper.rb │ │ │ └── lets_encrypt.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── disable.rb │ │ │ ├── enable.rb │ │ │ └── http_authorization.rb │ │ └── resources │ │ │ └── certificate.rb │ ├── logrotate │ │ ├── attributes │ │ │ └── default.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── disable.rb │ │ │ ├── enable.rb │ │ │ └── folders_and_configs.rb │ │ └── templates │ │ │ └── default │ │ │ ├── logrotate-service.erb │ │ │ ├── logrotate.conf.erb │ │ │ ├── sv-logrotate-log-config.erb │ │ │ ├── sv-logrotate-log-run.erb │ │ │ ├── sv-logrotate-run.erb │ │ │ └── sv-logrotate-t.erb │ ├── mattermost │ │ ├── attributes │ │ │ └── default.rb │ │ ├── libraries │ │ │ └── mattermost_helper.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── disable.rb │ │ │ └── enable.rb │ │ └── templates │ │ │ └── default │ │ │ ├── sv-mattermost-log-config.erb │ │ │ ├── sv-mattermost-log-run.erb │ │ │ └── sv-mattermost-run.erb │ ├── monitoring │ │ ├── attributes │ │ │ └── default.rb │ │ ├── libraries │ │ │ ├── prometheus.rb │ │ │ └── prometheus_helper.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── alertmanager.rb │ │ │ ├── alertmanager_disable.rb │ │ │ ├── default.rb │ │ │ ├── gitlab-exporter.rb │ │ │ ├── gitlab-exporter_disable.rb │ │ │ ├── node-exporter.rb │ │ │ ├── node-exporter_disable.rb │ │ │ ├── pgbouncer-exporter.rb │ │ │ ├── pgbouncer-exporter_disable.rb │ │ │ ├── postgres-exporter.rb │ │ │ ├── postgres-exporter_disable.rb │ │ │ ├── prometheus.rb │ │ │ ├── prometheus_disable.rb │ │ │ ├── redis-exporter.rb │ │ │ ├── redis-exporter_disable.rb │ │ │ └── user.rb │ │ └── templates │ │ │ ├── gitlab-exporter.yml.erb │ │ │ ├── mount_point_check.erb │ │ │ ├── postgres-queries.yaml.erb │ │ │ ├── rules │ │ │ ├── gitlab.rules │ │ │ └── node.rules │ │ │ ├── sv-alertmanager-log-config.erb │ │ │ ├── sv-alertmanager-log-run.erb │ │ │ ├── sv-alertmanager-run.erb │ │ │ ├── sv-gitlab-exporter-log-config.erb │ │ │ ├── sv-gitlab-exporter-log-run.erb │ │ │ ├── sv-gitlab-exporter-run.erb │ │ │ ├── sv-node-exporter-log-config.erb │ │ │ ├── sv-node-exporter-log-run.erb │ │ │ ├── sv-node-exporter-run.erb │ │ │ ├── sv-pgbouncer-exporter-log-config.erb │ │ │ ├── sv-pgbouncer-exporter-log-run.erb │ │ │ ├── sv-pgbouncer-exporter-run.erb │ │ │ ├── sv-postgres-exporter-log-config.erb │ │ │ ├── sv-postgres-exporter-log-run.erb │ │ │ ├── sv-postgres-exporter-run.erb │ │ │ ├── sv-prometheus-log-config.erb │ │ │ ├── sv-prometheus-log-run.erb │ │ │ ├── sv-prometheus-run.erb │ │ │ ├── sv-redis-exporter-log-config.erb │ │ │ ├── sv-redis-exporter-log-run.erb │ │ │ └── sv-redis-exporter-run.erb │ ├── nginx │ │ ├── libraries │ │ │ └── helpers │ │ │ │ └── nginx_helper.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ └── enable.rb │ │ ├── resources │ │ │ └── configuration.rb │ │ └── templates │ │ │ └── default │ │ │ ├── sv-nginx-log-config.erb │ │ │ ├── sv-nginx-log-run.erb │ │ │ └── sv-nginx-run.erb │ ├── package │ │ ├── attributes │ │ │ └── default.rb │ │ ├── files │ │ │ └── default │ │ │ │ └── gitlab-runsvdir.conf │ │ ├── libraries │ │ │ ├── account_helper.rb │ │ │ ├── certificate_helper.rb │ │ │ ├── config │ │ │ │ ├── gitlab.rb │ │ │ │ ├── roles │ │ │ │ │ ├── application.rb │ │ │ │ │ ├── consul.rb │ │ │ │ │ ├── default.rb │ │ │ │ │ ├── geo_primary.rb │ │ │ │ │ ├── geo_secondary.rb │ │ │ │ │ ├── gitaly.rb │ │ │ │ │ ├── monitoring.rb │ │ │ │ │ ├── pages.rb │ │ │ │ │ ├── patroni.rb │ │ │ │ │ ├── pgbouncer.rb │ │ │ │ │ ├── postgres.rb │ │ │ │ │ ├── redis_master.rb │ │ │ │ │ ├── redis_sentinel.rb │ │ │ │ │ ├── sidekiq.rb │ │ │ │ │ └── spamcheck.rb │ │ │ │ └── services.rb │ │ │ ├── config_mash.rb │ │ │ ├── deprecations.rb │ │ │ ├── formatters │ │ │ │ └── gitlab.rb │ │ │ ├── gitlab_cluster.rb │ │ │ ├── handlers │ │ │ │ └── gitlab.rb │ │ │ ├── helper.rb │ │ │ ├── helpers │ │ │ │ ├── base_helper.rb │ │ │ │ ├── fips_helper.rb │ │ │ │ ├── logging_helper.rb │ │ │ │ ├── node_helper.rb │ │ │ │ ├── output_helper.rb │ │ │ │ ├── redis_helper.rb │ │ │ │ ├── redis_helper │ │ │ │ │ ├── base.rb │ │ │ │ │ ├── gitlab_exporter.rb │ │ │ │ │ ├── gitlab_kas.rb │ │ │ │ │ ├── gitlab_rails.rb │ │ │ │ │ ├── gitlab_workhorse.rb │ │ │ │ │ ├── redis_exporter.rb │ │ │ │ │ └── server.rb │ │ │ │ ├── roles_helper.rb │ │ │ │ ├── secrets_helper.rb │ │ │ │ ├── selinux_distro_helper.rb │ │ │ │ ├── selinux_helper.rb │ │ │ │ ├── services_helper.rb │ │ │ │ ├── shell_out_helper.rb │ │ │ │ ├── systemd_helper.rb │ │ │ │ └── version_helper.rb │ │ │ ├── logfiles_helper.rb │ │ │ ├── object_proxy.rb │ │ │ ├── omnibus_helper.rb │ │ │ ├── package.rb │ │ │ ├── redis_uri.rb │ │ │ ├── settings_dsl.rb │ │ │ └── storage_directory_helper.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── config.rb │ │ │ ├── runit.rb │ │ │ ├── runit_systemd.rb │ │ │ ├── runit_sysvinit.rb │ │ │ ├── runit_upstart.rb │ │ │ ├── show_config.rb │ │ │ ├── sysctl.rb │ │ │ ├── users.rb │ │ │ └── web-server.rb │ │ ├── resources │ │ │ ├── account.rb │ │ │ ├── env_dir.rb │ │ │ ├── gitlab_sysctl.rb │ │ │ ├── storage_directory.rb │ │ │ ├── templatesymlink.rb │ │ │ └── version_file.rb │ │ └── templates │ │ │ └── default │ │ │ ├── gitconfig.erb │ │ │ └── gitlab-runsvdir.service.erb │ ├── patroni │ │ ├── attributes │ │ │ └── default.rb │ │ ├── libraries │ │ │ └── patroni_helper.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── disable.rb │ │ │ └── enable.rb │ │ └── templates │ │ │ └── default │ │ │ ├── patroni.yaml.erb │ │ │ ├── sv-patroni-log-config.erb │ │ │ ├── sv-patroni-log-run.erb │ │ │ └── sv-patroni-run.erb │ ├── pgbouncer │ │ ├── README.md │ │ ├── attributes │ │ │ └── default.rb │ │ ├── libraries │ │ │ └── pgbouncer_helper.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── disable.rb │ │ │ ├── enable.rb │ │ │ └── user.rb │ │ ├── resources │ │ │ └── pgbouncer_user.rb │ │ └── templates │ │ │ └── default │ │ │ ├── databases.ini.erb │ │ │ ├── peers.ini.erb │ │ │ ├── pg_auth.erb │ │ │ ├── pgbouncer.ini.erb │ │ │ ├── sv-pgbouncer-log-config.erb │ │ │ ├── sv-pgbouncer-log-run.erb │ │ │ ├── sv-pgbouncer-run.erb │ │ │ └── sv-pgbouncer-t.erb │ ├── postgresql │ │ ├── README.md │ │ ├── attributes │ │ │ └── default.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── bin.rb │ │ │ ├── directory_locations.rb │ │ │ ├── disable.rb │ │ │ ├── enable.rb │ │ │ ├── standalone.rb │ │ │ ├── sysctl.rb │ │ │ └── user.rb │ │ ├── resources │ │ │ ├── config.rb │ │ │ ├── database.rb │ │ │ ├── extension.rb │ │ │ ├── query.rb │ │ │ ├── schema.rb │ │ │ └── user.rb │ │ └── templates │ │ │ └── default │ │ │ ├── gitlab-psql-rc.erb │ │ │ ├── pg_hba.conf.erb │ │ │ ├── pg_ident.conf.erb │ │ │ ├── postgresql-runtime.conf.erb │ │ │ ├── postgresql.conf.erb │ │ │ ├── sv-postgresql-log-config.erb │ │ │ ├── sv-postgresql-log-run.erb │ │ │ ├── sv-postgresql-run.erb │ │ │ └── sv-postgresql-t.erb │ ├── praefect │ │ ├── attributes │ │ │ └── default.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── database_migrations.rb │ │ │ ├── disable.rb │ │ │ └── enable.rb │ │ └── templates │ │ │ └── default │ │ │ ├── praefect-config.toml.erb │ │ │ ├── sv-praefect-log-config.erb │ │ │ ├── sv-praefect-log-run.erb │ │ │ └── sv-praefect-run.erb │ ├── redis │ │ ├── attributes │ │ │ └── attributes.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── disable.rb │ │ │ └── enable.rb │ │ ├── resources │ │ │ └── service.rb │ │ └── templates │ │ │ └── default │ │ │ ├── gitlab-redis-cli-rc.erb │ │ │ ├── redis.conf.erb │ │ │ ├── sv-redis-log-config.erb │ │ │ ├── sv-redis-log-run.erb │ │ │ └── sv-redis-run.erb │ ├── registry │ │ ├── attributes │ │ │ └── default.rb │ │ ├── libraries │ │ │ ├── registry_helper.rb │ │ │ └── registry_pg_helper.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── database_migrations.rb │ │ │ ├── database_objects.rb │ │ │ ├── disable.rb │ │ │ └── enable.rb │ │ ├── resources │ │ │ ├── database_migrations.rb │ │ │ └── database_objects.rb │ │ └── templates │ │ │ └── default │ │ │ ├── registry-config.yml.erb │ │ │ ├── sv-registry-log-config.erb │ │ │ ├── sv-registry-log-run.erb │ │ │ └── sv-registry-run.erb │ ├── renew-letsencrypt.json │ ├── runit │ │ ├── LICENSE │ │ ├── README.md │ │ ├── libraries │ │ │ ├── helpers.rb │ │ │ ├── provider_runit_service.rb │ │ │ └── resource_runit_service.rb │ │ └── metadata.rb │ ├── show-config.json │ ├── solo.rb │ └── spamcheck │ │ ├── attributes │ │ └── default.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ ├── disable.rb │ │ └── enable.rb │ │ └── templates │ │ └── default │ │ ├── config.toml.erb │ │ ├── sv-spam-classifier-log-config.erb │ │ ├── sv-spam-classifier-log-run.erb │ │ ├── sv-spam-classifier-run.erb │ │ ├── sv-spamcheck-log-config.erb │ │ ├── sv-spamcheck-log-run.erb │ │ └── sv-spamcheck-run.erb ├── gitlab-ctl-commands-ee │ ├── consul.rb │ ├── geo.rb │ ├── geo_replication.rb │ ├── get_postgresql_primary.rb │ ├── lib │ │ ├── consul.rb │ │ ├── consul_download.rb │ │ ├── geo.rb │ │ ├── geo │ │ │ ├── pitr_file.rb │ │ │ ├── promote.rb │ │ │ ├── promote_db.rb │ │ │ ├── promotion_preflight_checks.rb │ │ │ ├── replication.rb │ │ │ ├── replication_process.rb │ │ │ └── replication_toggle_command.rb │ │ ├── gitlab_ctl │ │ │ └── postgresql │ │ │ │ └── ee.rb │ │ ├── patroni.rb │ │ └── pgbouncer.rb │ ├── patroni.rb │ ├── pgbouncer.rb │ ├── promotion_preflight_checks.rb │ ├── replicate_geo_database.rb │ └── set_geo_primary_node.rb ├── gitlab-ctl-commands │ ├── backup.rb │ ├── check_config.rb │ ├── deploy_page.rb │ ├── diff_config.rb │ ├── generate_secrets.rb │ ├── get_redis_master.rb │ ├── letsencrypt.rb │ ├── lib │ │ ├── gitlab_ctl.rb │ │ ├── gitlab_ctl │ │ │ ├── backup.rb │ │ │ ├── generate_secrets.rb │ │ │ ├── pg_upgrade.rb │ │ │ ├── postgresql.rb │ │ │ ├── postgresql │ │ │ │ ├── decomposition_migration.rb │ │ │ │ ├── password_hash.rb │ │ │ │ ├── pgpass.rb │ │ │ │ └── replication.rb │ │ │ ├── registry │ │ │ │ ├── database.rb │ │ │ │ ├── garbage_collect.rb │ │ │ │ ├── import.rb │ │ │ │ └── migrate.rb │ │ │ ├── selinux.rb │ │ │ ├── upgrade_check.rb │ │ │ └── util.rb │ │ └── praefect.rb │ ├── pg-upgrade.rb │ ├── pg_decomposition_migration.rb │ ├── postgresql_password_hash.rb │ ├── praefect.rb │ ├── registry_database.rb │ ├── registry_garbage_collect.rb │ ├── remove_accounts.rb │ ├── restart_except.rb │ ├── selinux.rb │ ├── set_replication_password.rb │ ├── upgrade-check.rb │ └── upgrade.rb ├── gitlab-scripts │ ├── gitlab-logrotate-wrapper │ └── symlink_ctl_cmds └── gitlab-selinux │ ├── README.md │ ├── gitlab-10.5.0-ssh-authorized-keys.te │ ├── gitlab-13.5.0-gitlab-shell.te │ ├── gitlab-7.2.0-ssh-keygen.te │ └── gitlab.te ├── gitlab-ci-config ├── check-packages.yml ├── dev-gitlab-org.yml ├── dind-config.yml ├── gitlab-com.yml ├── rat.yml ├── variables.yml ├── vault-public-secrets.yml ├── vault-security-secrets.yml └── workflow-rules.yml ├── letsencrypt-test ├── docker-compose.yml ├── pebble-config.json ├── pebble-data │ ├── LICENSE │ └── pebble.minica.pem └── test.sh ├── lib ├── gitlab │ ├── api_client.rb │ ├── aws_helper.rb │ ├── build.rb │ ├── build │ │ ├── check.rb │ │ ├── facts.rb │ │ ├── gitlab_image.rb │ │ ├── image.rb │ │ ├── info │ │ │ ├── ci.rb │ │ │ ├── components.rb │ │ │ ├── deploy.rb │ │ │ ├── docker.rb │ │ │ ├── git.rb │ │ │ ├── package.rb │ │ │ ├── qa.rb │ │ │ └── secrets.rb │ │ ├── qa.rb │ │ ├── qa_image.rb │ │ ├── trigger.rb │ │ └── ubt.rb │ ├── build_iteration.rb │ ├── deployer_helper.rb │ ├── docker_helper.rb │ ├── docker_operations.rb │ ├── gcloud_helper.rb │ ├── gitlab_release_helper.rb │ ├── license │ │ ├── analyzer.rb │ │ ├── base.rb │ │ ├── collector.rb │ │ ├── licenses.html.erb │ │ ├── package.html.erb │ │ └── uploader.rb │ ├── linker_helper.rb │ ├── manifest │ │ ├── base.rb │ │ ├── collector.rb │ │ ├── manifests.html.erb │ │ └── uploader.rb │ ├── ohai_helper.rb │ ├── openssl_helper.rb │ ├── package_repository.rb │ ├── package_repository │ │ ├── base.rb │ │ ├── package_cloud_repository.rb │ │ ├── package_type.rb │ │ └── pulp_repository.rb │ ├── package_size.rb │ ├── prometheus_helper.rb │ ├── retriable.rb │ ├── skopeo_helper.rb │ ├── tasks │ │ ├── aws.rake │ │ ├── build.rake │ │ ├── cache.rake │ │ ├── check.rake │ │ ├── docker_tasks.rake │ │ ├── docs.rake │ │ ├── gitlab_com.rake │ │ ├── infrastructure.rake │ │ ├── license.rake │ │ ├── manifest.rake │ │ ├── qa.rake │ │ ├── release.rake │ │ └── repository.rake │ ├── util.rb │ └── version.rb └── rubocop │ ├── cop │ ├── avoid_using_env.rb │ └── specify_default_version.rb │ └── rubocop.rb ├── omnibus.rb ├── omnibus.rb.example ├── resources └── rpm │ └── signing.erb ├── scripts ├── ci │ ├── deploy_docker.sh │ ├── deploy_package.sh │ ├── install_package.sh │ └── prepare_bundle.sh ├── docs_i18n_verify_paths.sh ├── gitlab-debsigs.sh ├── renovate │ ├── checksums │ │ ├── software │ │ │ ├── graphicsmagick.sh │ │ │ ├── libarchive.sh │ │ │ ├── libxml2.sh │ │ │ ├── python3.sh │ │ │ ├── rsync.sh │ │ │ └── shared.sh │ │ └── update_all.sh │ └── update-bundler.sh ├── repack-deb └── security-harness ├── spec ├── chef │ ├── cookbooks │ │ ├── consul │ │ │ ├── libraries │ │ │ │ ├── consul_helper_spec.rb │ │ │ │ ├── failover_helper_spec.rb │ │ │ │ └── watch_helper_spec.rb │ │ │ ├── recipes │ │ │ │ ├── configure_services_spec.rb │ │ │ │ ├── consul_spec.rb │ │ │ │ ├── consul_watcher_spec.rb │ │ │ │ ├── disable_service_postgresql_spec.rb │ │ │ │ └── enable_service_postgresq_spec.rb │ │ │ └── resources │ │ │ │ └── consul_service_spec.rb │ │ ├── crond │ │ │ ├── recipes │ │ │ │ └── crond_enable_spec.rb │ │ │ └── resources │ │ │ │ └── crond_job_spec.rb │ │ ├── gitaly │ │ │ ├── libraries │ │ │ │ └── gitaly_spec.rb │ │ │ └── recipes │ │ │ │ └── gitaly_spec.rb │ │ ├── gitlab-base │ │ │ └── recipes │ │ │ │ └── default_spec.rb │ │ ├── gitlab-ee │ │ │ ├── libraries │ │ │ │ ├── gitlab_geo_helper_spec.rb │ │ │ │ ├── sentinel_helper_spec.rb │ │ │ │ └── sentinel_spec.rb │ │ │ ├── recipes │ │ │ │ ├── default_spec.rb │ │ │ │ ├── geo-logcursor_spec.rb │ │ │ │ ├── geo-postgresql_spec.rb │ │ │ │ ├── geo-secondary_disable_spec.rb │ │ │ │ ├── geo-secondary_spec.rb │ │ │ │ ├── geo_database_migrations_spec.rb │ │ │ │ ├── geo_spec.rb │ │ │ │ ├── sentinel_spec.rb │ │ │ │ └── suggested_reviewers_spec.rb │ │ │ └── resources │ │ │ │ └── pgbouncer_user_spec.rb │ │ ├── gitlab-kas │ │ │ └── recipes │ │ │ │ └── gitlab-kas_spec.rb │ │ ├── gitlab-pages │ │ │ └── recipes │ │ │ │ └── gitlab-pages_spec.rb │ │ ├── gitlab │ │ │ ├── libraries │ │ │ │ ├── helpers │ │ │ │ │ ├── base_pg_helper_spec.rb │ │ │ │ │ ├── gitlab_workhorse_helper_spec.rb │ │ │ │ │ ├── helper_spec.rb │ │ │ │ │ └── pg_status_helper_spec.rb │ │ │ │ ├── mailroom_helper_spec.rb │ │ │ │ ├── pg_version_spec.rb │ │ │ │ ├── postgresql_spec.rb │ │ │ │ ├── rails_migration_helper_spec.rb │ │ │ │ ├── redis_spec.rb │ │ │ │ ├── registry_spec.rb │ │ │ │ ├── suggested_reviewers_spec.rb │ │ │ │ └── workhorse_spec.rb │ │ │ ├── recipes │ │ │ │ ├── add_trusted_certs_spec.rb │ │ │ │ ├── config_spec.rb │ │ │ │ ├── database_migrations_spec.rb │ │ │ │ ├── database_reindexing_disable_spec.rb │ │ │ │ ├── database_reindexing_enable_spec.rb │ │ │ │ ├── default_spec.rb │ │ │ │ ├── generate_secrets_spec.rb │ │ │ │ ├── gitlab-backup-cli-disable_spec.rb │ │ │ │ ├── gitlab-backup-cli_spec.rb │ │ │ │ ├── gitlab-healthcheck_spec.rb │ │ │ │ ├── gitlab-rails │ │ │ │ │ ├── click_house_yml_spec.rb │ │ │ │ │ ├── database_yml_spec.rb │ │ │ │ │ ├── gitlab_yml │ │ │ │ │ │ ├── backup_spec.rb │ │ │ │ │ │ ├── cell_spec.rb │ │ │ │ │ │ ├── consul_spec.rb │ │ │ │ │ │ ├── cron_jobs_spec.rb │ │ │ │ │ │ ├── duo_auth_spec.rb │ │ │ │ │ │ ├── extra_spec.rb │ │ │ │ │ │ ├── forti_authenticator_spec.rb │ │ │ │ │ │ ├── forti_token_cloud_spec.rb │ │ │ │ │ │ ├── geo_spec.rb │ │ │ │ │ │ ├── gitaly_spec.rb │ │ │ │ │ │ ├── gitlab_shell_spec.rb │ │ │ │ │ │ ├── gitlab_spec.rb │ │ │ │ │ │ ├── incoming_email_spec.rb │ │ │ │ │ │ ├── ldap_spec.rb │ │ │ │ │ │ ├── mattermost_spec.rb │ │ │ │ │ │ ├── microsoft_graph_mailer_spec.rb │ │ │ │ │ │ ├── monitoring_spec.rb │ │ │ │ │ │ ├── object_storage_spec.rb │ │ │ │ │ │ ├── oidc_provider_spec.rb │ │ │ │ │ │ ├── omniauth_spec.rb │ │ │ │ │ │ ├── openbao_spec.rb │ │ │ │ │ │ ├── pages_spec.rb │ │ │ │ │ │ ├── prometheus_spec.rb │ │ │ │ │ │ ├── registry_spec.rb │ │ │ │ │ │ ├── repositories_storages_spec.rb │ │ │ │ │ │ ├── sentry_spec.rb │ │ │ │ │ │ ├── service_desk_email_spec.rb │ │ │ │ │ │ ├── shutdown_spec.rb │ │ │ │ │ │ ├── sidekiq_spec.rb │ │ │ │ │ │ ├── smartcard_spec.rb │ │ │ │ │ │ └── unleash_spec.rb │ │ │ │ │ └── session_store_yml_spec.rb │ │ │ │ ├── gitlab-rails_spec.rb │ │ │ │ ├── gitlab-shell_spec.rb │ │ │ │ ├── gitlab-workhorse_spec.rb │ │ │ │ ├── mailroom_spec.rb │ │ │ │ ├── nginx_spec.rb │ │ │ │ ├── puma_spec.rb │ │ │ │ ├── rails_cache_clear_spec.rb │ │ │ │ ├── remote-syslog_spec.rb │ │ │ │ ├── selinux_spec.rb │ │ │ │ ├── sidekiq_spec.rb │ │ │ │ └── storage-check_spec.rb │ │ │ └── resources │ │ │ │ ├── puma_config_spec.rb │ │ │ │ └── rails_migration_spec.rb │ │ ├── letsencrypt │ │ │ ├── libraries │ │ │ │ └── lets_encrypt_spec.rb │ │ │ ├── recipes │ │ │ │ └── letsencrypt_spec.rb │ │ │ └── resources │ │ │ │ └── letsencrypt_certificate_spec.rb │ │ ├── logrotate │ │ │ └── recipes │ │ │ │ ├── folders_and_configs_spec.rb │ │ │ │ └── logrotate_spec.rb │ │ ├── mattermost │ │ │ └── recipes │ │ │ │ └── mattermost_spec.rb │ │ ├── monitoring │ │ │ ├── libraries │ │ │ │ ├── prometheus_helper_spec.rb │ │ │ │ └── prometheus_spec.rb │ │ │ └── recipes │ │ │ │ ├── alertmanager_spec.rb │ │ │ │ ├── gitlab-exporter_spec.rb │ │ │ │ ├── node-exporter_spec.rb │ │ │ │ ├── pgbouncer-exporter_spec.rb │ │ │ │ ├── postgres_exporter_spec.rb │ │ │ │ ├── prometheus_spec.rb │ │ │ │ └── redis_exporter_spec.rb │ │ ├── nginx │ │ │ └── resources │ │ │ │ └── nginx_configuration_spec.rb │ │ ├── package │ │ │ ├── libraries │ │ │ │ ├── account_helper_spec.rb │ │ │ │ ├── certificate_helper_spec.rb │ │ │ │ ├── config │ │ │ │ │ ├── gitlab_spec.rb │ │ │ │ │ ├── roles_spec.rb │ │ │ │ │ └── services_spec.rb │ │ │ │ ├── config_mash_spec.rb │ │ │ │ ├── deprecations_spec.rb │ │ │ │ ├── gitlab_cluster_spec.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── logging_helper_spec.rb │ │ │ │ │ ├── node_helper_spec.rb │ │ │ │ │ ├── output_helper_spec.rb │ │ │ │ │ ├── selinux_distro_helper_spec.rb │ │ │ │ │ ├── selinux_helper_spec.rb │ │ │ │ │ └── shell_out_helper_spec.rb │ │ │ │ ├── omnibus_helper_spec.rb │ │ │ │ ├── redis_helper │ │ │ │ │ ├── gitlab_rails_spec.rb │ │ │ │ │ ├── gitlab_workhorse_spec.rb │ │ │ │ │ └── server_spec.rb │ │ │ │ ├── redis_uri_spec.rb │ │ │ │ ├── secrets_helper_spec.rb │ │ │ │ ├── services_helper_spec.rb │ │ │ │ ├── settings_dsl_spec.rb │ │ │ │ ├── storage_directory_helper_spec.rb │ │ │ │ └── systemd_helper_spec.rb │ │ │ ├── recipes │ │ │ │ ├── runit_spec.rb │ │ │ │ ├── runit_systemd_spec.rb │ │ │ │ ├── show_config_spec.rb │ │ │ │ └── users_spec.rb │ │ │ └── resources │ │ │ │ ├── account_spec.rb │ │ │ │ ├── env_dir_spec.rb │ │ │ │ ├── gitlab_sysctl_spec.rb │ │ │ │ ├── storage_directory_spec.rb │ │ │ │ ├── templatesymlink_spec.rb │ │ │ │ └── version_file_spec.rb │ │ ├── patroni │ │ │ ├── libraries │ │ │ │ └── patroni_helper_spec.rb │ │ │ └── recipes │ │ │ │ └── patroni_spec.rb │ │ ├── pgbouncer │ │ │ ├── libraries │ │ │ │ └── pgbouncer_helper_spec.rb │ │ │ ├── recipes │ │ │ │ ├── pgbouncer_spec.rb │ │ │ │ └── pgbouncer_user_spec.rb │ │ │ └── resources │ │ │ │ └── pgbouncer_user_spec.rb │ │ ├── postgresql │ │ │ ├── recipes │ │ │ │ ├── bin_spec.rb │ │ │ │ ├── directory_locations_spec.rb │ │ │ │ ├── postgresql_spec.rb │ │ │ │ ├── sysctl_spec.rb │ │ │ │ └── user_spec.rb │ │ │ └── resources │ │ │ │ ├── config_spec.rb │ │ │ │ ├── database_objects_spec.rb │ │ │ │ ├── database_spec.rb │ │ │ │ ├── extension_spec.rb │ │ │ │ ├── query_spec.rb │ │ │ │ ├── schema_spec.rb │ │ │ │ └── user_spec.rb │ │ ├── praefect │ │ │ └── recipes │ │ │ │ └── praefect_spec.rb │ │ ├── redis │ │ │ └── recipes │ │ │ │ └── redis_spec.rb │ │ ├── registry │ │ │ ├── libraries │ │ │ │ └── registry_pg_helper_spec.rb │ │ │ ├── recipes │ │ │ │ ├── database_migrations_spec.rb │ │ │ │ └── registry_spec.rb │ │ │ └── resources │ │ │ │ └── database_migrations_spec.rb │ │ └── spamcheck │ │ │ └── recipes │ │ │ └── spamcheck_spec.rb │ ├── fixtures │ │ ├── cookbooks │ │ │ ├── acme │ │ │ │ ├── attributes │ │ │ │ │ └── default.rb │ │ │ │ ├── metadata.rb │ │ │ │ └── resources │ │ │ │ │ ├── certificate.rb │ │ │ │ │ └── selfsigned.rb │ │ │ ├── gitlab-jh │ │ │ │ └── metadata.rb │ │ │ ├── test_consul │ │ │ │ ├── metadata.rb │ │ │ │ └── recipes │ │ │ │ │ ├── consul_service_address_port.rb │ │ │ │ │ ├── consul_service_delete.rb │ │ │ │ │ ├── consul_service_delete_no_reload.rb │ │ │ │ │ ├── consul_service_meta.rb │ │ │ │ │ ├── consul_service_socket.rb │ │ │ │ │ └── reload_consul.rb │ │ │ ├── test_crond │ │ │ │ ├── metadata.rb │ │ │ │ └── recipes │ │ │ │ │ ├── crond_job_delete.rb │ │ │ │ │ └── crond_job_minimal.rb │ │ │ ├── test_gitlab │ │ │ │ ├── metadata.rb │ │ │ │ └── recipes │ │ │ │ │ ├── puma_config_create.rb │ │ │ │ │ ├── puma_config_custom.rb │ │ │ │ │ └── rails_migration_run.rb │ │ │ ├── test_gitlab_ee │ │ │ │ ├── metadata.rb │ │ │ │ └── recipes │ │ │ │ │ ├── pgbouncer_user_create_geo.rb │ │ │ │ │ └── pgbouncer_user_create_rails.rb │ │ │ ├── test_nginx │ │ │ │ ├── metadata.rb │ │ │ │ └── recipes │ │ │ │ │ ├── disable.rb │ │ │ │ │ └── enable.rb │ │ │ ├── test_package │ │ │ │ ├── metadata.rb │ │ │ │ ├── recipes │ │ │ │ │ ├── account_create.rb │ │ │ │ │ ├── account_remove.rb │ │ │ │ │ ├── env_dir_create.rb │ │ │ │ │ ├── gitlab_sysctl_create.rb │ │ │ │ │ ├── storage_directory_create.rb │ │ │ │ │ ├── templatesymlink_create.rb │ │ │ │ │ ├── templatesymlink_delete.rb │ │ │ │ │ └── version_file_create.rb │ │ │ │ └── templates │ │ │ │ │ └── default │ │ │ │ │ └── test-template.erb │ │ │ ├── test_pgbouncer │ │ │ │ ├── metadata.rb │ │ │ │ └── recipes │ │ │ │ │ └── pgbouncer_user_create.rb │ │ │ ├── test_postgresql │ │ │ │ ├── metadata.rb │ │ │ │ └── recipes │ │ │ │ │ ├── postgresql_config.rb │ │ │ │ │ ├── postgresql_database_create.rb │ │ │ │ │ ├── postgresql_database_create_with_options.rb │ │ │ │ │ ├── postgresql_database_objects.rb │ │ │ │ │ ├── postgresql_extension_enable.rb │ │ │ │ │ ├── postgresql_query_run.rb │ │ │ │ │ ├── postgresql_schema_create.rb │ │ │ │ │ ├── postgresql_user_create.rb │ │ │ │ │ ├── postgresql_user_options_superuser.rb │ │ │ │ │ ├── postgresql_user_options_unspecified.rb │ │ │ │ │ ├── postgresql_user_password_empty.rb │ │ │ │ │ ├── postgresql_user_password_md5.rb │ │ │ │ │ ├── postgresql_user_password_nil.rb │ │ │ │ │ └── postgresql_user_password_unspecified.rb │ │ │ └── test_registry │ │ │ │ ├── metadata.rb │ │ │ │ └── recipes │ │ │ │ └── registry_database_migrations_run.rb │ │ ├── fauxhai │ │ │ └── ubuntu │ │ │ │ ├── 16.04-docker.json │ │ │ │ ├── 16.04-more-cpus.json │ │ │ │ ├── 16.04-no-run-tmpfs.json │ │ │ │ ├── 16.04-no-total-cpus.json │ │ │ │ ├── 16.04.json │ │ │ │ └── 22.04-rpi4.json │ │ └── migration │ │ │ ├── failed-migration-status-file │ │ │ └── successful-migration-status-file │ ├── gitlab-ctl-commands-ee │ │ ├── geo_replication_spec.rb │ │ ├── geo_spec.rb │ │ ├── lib │ │ │ ├── consul_spec.rb │ │ │ ├── geo │ │ │ │ ├── pitr_file_spec.rb │ │ │ │ ├── promote_db_spec.rb │ │ │ │ ├── promote_spec.rb │ │ │ │ ├── promotion_preflight_checks_spec.rb │ │ │ │ ├── replication_process_spec.rb │ │ │ │ ├── replication_spec.rb │ │ │ │ └── replication_toggle_command_spec.rb │ │ │ ├── gitlab_ctl │ │ │ │ └── postgresql │ │ │ │ │ └── ee_spec.rb │ │ │ ├── patroni_spec.rb │ │ │ └── pgbouncer_spec.rb │ │ ├── promotion_preflight_checks_spec.rb │ │ └── replicate_geo_database_spec.rb │ ├── gitlab-ctl-commands │ │ ├── gitlab_ctl_spec.rb │ │ └── lib │ │ │ ├── gitlab_ctl │ │ │ ├── postgresql │ │ │ │ ├── decomposition_migration_spec.rb │ │ │ │ └── replication_spec.rb │ │ │ ├── postgresql_spec.rb │ │ │ └── registry │ │ │ │ ├── garbage_collect_spec.rb │ │ │ │ ├── import_spec.rb │ │ │ │ ├── migrate_spec.rb │ │ │ │ └── registry_database_spec.rb │ │ │ ├── gitlab_ctl_backup_spec.rb │ │ │ ├── gitlab_ctl_pg_upgrade_spec.rb │ │ │ ├── praefect_spec.rb │ │ │ ├── upgrade_check_spec.rb │ │ │ └── util_spec.rb │ └── support │ │ ├── shared_context │ │ ├── ctl_shared_context.rb │ │ ├── gitlab_rails_shared_context.rb │ │ ├── object_store_shared_context.rb │ │ └── recipes_shared_context.rb │ │ └── shared_examples │ │ ├── consul_service_name.rb │ │ ├── geo_promotion_command_accepts_option_shared_examples.rb │ │ ├── git_data_dirs.rb │ │ ├── gitlab_geo_promotion_commands_shared_examples.rb │ │ ├── gitlab_yml_object_storage_shared_examples.rb │ │ ├── logged_service.rb │ │ ├── logrotate_config.rb │ │ ├── registry_service.rb │ │ ├── runit_service.rb │ │ └── yaml_check.rb ├── chef_helper.rb ├── lib │ ├── gitlab │ │ ├── build │ │ │ ├── check_spec.rb │ │ │ ├── facts_spec.rb │ │ │ ├── gitlab_image_spec.rb │ │ │ ├── image_spec.rb │ │ │ ├── info │ │ │ │ ├── components_spec.rb │ │ │ │ ├── deploy_spec.rb │ │ │ │ ├── docker_spec.rb │ │ │ │ ├── git_spec.rb │ │ │ │ └── package_spec.rb │ │ │ ├── qa_image_spec.rb │ │ │ └── qa_spec.rb │ │ ├── build_iteration_spec.rb │ │ ├── build_spec.rb │ │ ├── deployer_helper_spec.rb │ │ ├── docker_helper_spec.rb │ │ ├── docker_operations_spec.rb │ │ ├── gcloud_helper_spec.rb │ │ ├── linker_helper_spec.rb │ │ ├── package_repository │ │ │ ├── base_spec.rb │ │ │ ├── package_cloud_repository_spec.rb │ │ │ ├── package_type_spec.rb │ │ │ └── pulp_repository_spec.rb │ │ ├── package_repository_spec.rb │ │ ├── skopeo_helper_spec.rb │ │ ├── tasks │ │ │ ├── aws_spec.rb │ │ │ ├── docker_tasks_spec.rb │ │ │ ├── gitlab_com_spec.rb │ │ │ ├── license_spec.rb │ │ │ └── qa_spec.rb │ │ ├── util_spec.rb │ │ └── version_spec.rb │ └── rubocop │ │ └── cop │ │ ├── avoid_using_env_spec.rb │ │ └── specify_default_version_spec.rb ├── spec_helper.rb └── support │ ├── expectations.rb │ ├── macros.rb │ └── retriable.rb └── support ├── dependency_decisions.yml ├── fetch_assets ├── gitlab_yml_converter.rb ├── import_gpg_secrets.sh ├── is_gitlab_ee.sh ├── known_hosts ├── license_check.sh ├── merge-reports ├── notify_slack.sh ├── packer ├── ami-startup-script.sh ├── ce-arm64.pkr.hcl ├── ce.pkr.hcl ├── ee-arm64.pkr.hcl ├── ee-premium.pkr.hcl ├── ee-ultimate.pkr.hcl ├── ee.pkr.hcl ├── packer_ami.sh ├── update-script-ce.sh ├── update-script-ee-premium.sh ├── update-script-ee-ultimate.sh └── update-script-ee.sh ├── set-revisions └── webpages ├── script.js ├── style.css └── upgrade-metrics.html /.custom_sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.custom_sources.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | CHANGELOG.md merge=union 2 | *.rb.template gitlab-language=ruby 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.gitlab/CODEOWNERS -------------------------------------------------------------------------------- /.gitlab/changelog_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.gitlab/changelog_config.yml -------------------------------------------------------------------------------- /.gitlab/issue_templates/Bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.gitlab/issue_templates/Bug.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/Feature Proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.gitlab/issue_templates/Feature Proposal.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/Remove Deprecation Message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.gitlab/issue_templates/Remove Deprecation Message.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/Security developer workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.gitlab/issue_templates/Security developer workflow.md -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/Component upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.gitlab/merge_request_templates/Component upgrade.md -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/Default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.gitlab/merge_request_templates/Default.md -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/Security Release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.gitlab/merge_request_templates/Security Release.md -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/Stable Branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.gitlab/merge_request_templates/Stable Branch.md -------------------------------------------------------------------------------- /.gitlab/route-map.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.gitlab/route-map.yml -------------------------------------------------------------------------------- /.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /.projections.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.projections.json.example -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.8 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.tool-versions -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.vale.ini -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/.yardopts -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- 1 | site :opscode 2 | 3 | cookbook "omnibus" 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/Dangerfile -------------------------------------------------------------------------------- /GITALY_SERVER_VERSION: -------------------------------------------------------------------------------- 1 | master 2 | -------------------------------------------------------------------------------- /GITLAB_ELASTICSEARCH_INDEXER_VERSION: -------------------------------------------------------------------------------- 1 | main 2 | -------------------------------------------------------------------------------- /GITLAB_KAS_VERSION: -------------------------------------------------------------------------------- 1 | master 2 | -------------------------------------------------------------------------------- /GITLAB_PAGES_VERSION: -------------------------------------------------------------------------------- 1 | master 2 | -------------------------------------------------------------------------------- /GITLAB_SHELL_VERSION: -------------------------------------------------------------------------------- 1 | main 2 | -------------------------------------------------------------------------------- /GITLAB_WORKHORSE_VERSION: -------------------------------------------------------------------------------- 1 | master 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/LICENSE -------------------------------------------------------------------------------- /OMNIBUS_GEM_VERSION: -------------------------------------------------------------------------------- 1 | 9.0.19.4 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | master 2 | -------------------------------------------------------------------------------- /argo_translation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/argo_translation.yml -------------------------------------------------------------------------------- /config/patches/bzip2/makefile_take_env_vars.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/bzip2/makefile_take_env_vars.patch -------------------------------------------------------------------------------- /config/patches/chef-gem/drop-eol-warning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/chef-gem/drop-eol-warning.patch -------------------------------------------------------------------------------- /config/patches/chef-gem/drop-net-http-warning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/chef-gem/drop-net-http-warning.patch -------------------------------------------------------------------------------- /config/patches/chef-gem/license/add-license-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/chef-gem/license/add-license-file.patch -------------------------------------------------------------------------------- /config/patches/chef-gem/license/add-notice-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/chef-gem/license/add-notice-file.patch -------------------------------------------------------------------------------- /config/patches/chef-gem/utf8-locale-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/chef-gem/utf8-locale-support.patch -------------------------------------------------------------------------------- /config/patches/config_guess/add-license-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/config_guess/add-license-file.patch -------------------------------------------------------------------------------- /config/patches/exiftool/allowlist-types.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/exiftool/allowlist-types.patch -------------------------------------------------------------------------------- /config/patches/exiftool/lib-location.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/exiftool/lib-location.patch -------------------------------------------------------------------------------- /config/patches/exiftool/license.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/exiftool/license.patch -------------------------------------------------------------------------------- /config/patches/gitlab-exporter/add-license-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/gitlab-exporter/add-license-file.patch -------------------------------------------------------------------------------- /config/patches/gitlab-rails/backup_restore_hooks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/gitlab-rails/backup_restore_hooks.patch -------------------------------------------------------------------------------- /config/patches/gitlab-rails/security-patch-13.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/gitlab-rails/security-patch-13.12.patch -------------------------------------------------------------------------------- /config/patches/gitlab-rails/security-patch-14.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/gitlab-rails/security-patch-14.0.patch -------------------------------------------------------------------------------- /config/patches/gitlab-rails/security-patch-14.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/gitlab-rails/security-patch-14.1.patch -------------------------------------------------------------------------------- /config/patches/gitlab-rails/security-patch-14.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/gitlab-rails/security-patch-14.2.patch -------------------------------------------------------------------------------- /config/patches/gitlab-rails/security-patch-14.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/gitlab-rails/security-patch-14.3.patch -------------------------------------------------------------------------------- /config/patches/gitlab-rails/security-patch-14.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/gitlab-rails/security-patch-14.4.patch -------------------------------------------------------------------------------- /config/patches/gitlab-rails/security-patch-14.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/gitlab-rails/security-patch-14.5.patch -------------------------------------------------------------------------------- /config/patches/go-crond/lock-dependencies.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/go-crond/lock-dependencies.patch -------------------------------------------------------------------------------- /config/patches/mail_room/add-license-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/mail_room/add-license-file.patch -------------------------------------------------------------------------------- /config/patches/patroni/add-license-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/patroni/add-license-file.patch -------------------------------------------------------------------------------- /config/patches/postgresql/no_docs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/postgresql/no_docs.patch -------------------------------------------------------------------------------- /config/patches/prometheus/rpi-correct-platform.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/prometheus/rpi-correct-platform.patch -------------------------------------------------------------------------------- /config/patches/python3/custom-openssl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/python3/custom-openssl.patch -------------------------------------------------------------------------------- /config/patches/python3/readline-3-9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/python3/readline-3-9.patch -------------------------------------------------------------------------------- /config/patches/python3/skip-nis-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/python3/skip-nis-build.patch -------------------------------------------------------------------------------- /config/patches/ruby-grpc/grpc-system-ssl-1.42.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/ruby-grpc/grpc-system-ssl-1.42.0.patch -------------------------------------------------------------------------------- /config/patches/ruby-grpc/grpc-system-ssl-1.48.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/ruby-grpc/grpc-system-ssl-1.48.0.patch -------------------------------------------------------------------------------- /config/patches/ruby/fiddle-closure-3.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/ruby/fiddle-closure-3.1.patch -------------------------------------------------------------------------------- /config/patches/ruby/fix-ruby-fips-symbols.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/ruby/fix-ruby-fips-symbols.patch -------------------------------------------------------------------------------- /config/patches/ruby/patch-configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/ruby/patch-configure -------------------------------------------------------------------------------- /config/patches/ruby/ruby-disable-copy-file-range.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/ruby/ruby-disable-copy-file-range.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-mkmf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/ruby/ruby-mkmf.patch -------------------------------------------------------------------------------- /config/patches/rubygems/license/add-license-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/rubygems/license/add-license-file.patch -------------------------------------------------------------------------------- /config/patches/runit/log-status.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/runit/log-status.patch -------------------------------------------------------------------------------- /config/patches/runit/permissive-gcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/runit/permissive-gcc.patch -------------------------------------------------------------------------------- /config/patches/unzip/0-gitlab-source.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/unzip/0-gitlab-source.patch -------------------------------------------------------------------------------- /config/patches/unzip/05-fix-uid-gid-handling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/unzip/05-fix-uid-gid-handling.patch -------------------------------------------------------------------------------- /config/patches/unzip/13-remove-build-date.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/unzip/13-remove-build-date.patch -------------------------------------------------------------------------------- /config/patches/unzip/14-cve-2015-7696.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/unzip/14-cve-2015-7696.patch -------------------------------------------------------------------------------- /config/patches/unzip/15-cve-2015-7697.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/unzip/15-cve-2015-7697.patch -------------------------------------------------------------------------------- /config/patches/unzip/31-fix-zipgrep.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/patches/unzip/31-fix-zipgrep.patch -------------------------------------------------------------------------------- /config/projects/gitlab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/projects/gitlab.rb -------------------------------------------------------------------------------- /config/projects/gitlab/gitlab-ce.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/projects/gitlab/gitlab-ce.rb -------------------------------------------------------------------------------- /config/projects/gitlab/gitlab-ee.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/projects/gitlab/gitlab-ee.rb -------------------------------------------------------------------------------- /config/projects/gitlab/gitlab-fips.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/projects/gitlab/gitlab-fips.rb -------------------------------------------------------------------------------- /config/software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/README.md -------------------------------------------------------------------------------- /config/software/alertmanager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/alertmanager.rb -------------------------------------------------------------------------------- /config/software/bzip2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/bzip2.rb -------------------------------------------------------------------------------- /config/software/cacerts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/cacerts.rb -------------------------------------------------------------------------------- /config/software/chef-acme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/chef-acme.rb -------------------------------------------------------------------------------- /config/software/chef-gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/chef-gem.rb -------------------------------------------------------------------------------- /config/software/compat_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/compat_resource.rb -------------------------------------------------------------------------------- /config/software/config_guess.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/config_guess.rb -------------------------------------------------------------------------------- /config/software/consul.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/consul.rb -------------------------------------------------------------------------------- /config/software/cosign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/cosign.rb -------------------------------------------------------------------------------- /config/software/curl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/curl.rb -------------------------------------------------------------------------------- /config/software/exiftool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/exiftool.rb -------------------------------------------------------------------------------- /config/software/fast-stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/fast-stats.rb -------------------------------------------------------------------------------- /config/software/git-filter-repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/git-filter-repo.rb -------------------------------------------------------------------------------- /config/software/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/git.rb -------------------------------------------------------------------------------- /config/software/gitaly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitaly.rb -------------------------------------------------------------------------------- /config/software/gitlab-backup-cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-backup-cli.rb -------------------------------------------------------------------------------- /config/software/gitlab-config-template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-config-template.rb -------------------------------------------------------------------------------- /config/software/gitlab-cookbooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-cookbooks.rb -------------------------------------------------------------------------------- /config/software/gitlab-ctl-ee.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-ctl-ee.rb -------------------------------------------------------------------------------- /config/software/gitlab-ctl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-ctl.rb -------------------------------------------------------------------------------- /config/software/gitlab-elasticsearch-indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-elasticsearch-indexer.rb -------------------------------------------------------------------------------- /config/software/gitlab-exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-exporter.rb -------------------------------------------------------------------------------- /config/software/gitlab-geo-psql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-geo-psql.rb -------------------------------------------------------------------------------- /config/software/gitlab-healthcheck.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-healthcheck.rb -------------------------------------------------------------------------------- /config/software/gitlab-kas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-kas.rb -------------------------------------------------------------------------------- /config/software/gitlab-pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-pages.rb -------------------------------------------------------------------------------- /config/software/gitlab-pg-ctl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-pg-ctl.rb -------------------------------------------------------------------------------- /config/software/gitlab-psql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-psql.rb -------------------------------------------------------------------------------- /config/software/gitlab-rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-rails.rb -------------------------------------------------------------------------------- /config/software/gitlab-redis-cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-redis-cli.rb -------------------------------------------------------------------------------- /config/software/gitlab-scripts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-scripts.rb -------------------------------------------------------------------------------- /config/software/gitlab-selinux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-selinux.rb -------------------------------------------------------------------------------- /config/software/gitlab-shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlab-shell.rb -------------------------------------------------------------------------------- /config/software/gitlabsos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gitlabsos.rb -------------------------------------------------------------------------------- /config/software/gnupg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gnupg.rb -------------------------------------------------------------------------------- /config/software/go-crond.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/go-crond.rb -------------------------------------------------------------------------------- /config/software/gpgme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/gpgme.rb -------------------------------------------------------------------------------- /config/software/graphicsmagick.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/graphicsmagick.rb -------------------------------------------------------------------------------- /config/software/inspec-gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/inspec-gem.rb -------------------------------------------------------------------------------- /config/software/jemalloc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/jemalloc.rb -------------------------------------------------------------------------------- /config/software/krb5.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/krb5.rb -------------------------------------------------------------------------------- /config/software/libarchive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libarchive.rb -------------------------------------------------------------------------------- /config/software/libassuan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libassuan.rb -------------------------------------------------------------------------------- /config/software/libedit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libedit.rb -------------------------------------------------------------------------------- /config/software/libevent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libevent.rb -------------------------------------------------------------------------------- /config/software/libffi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libffi.rb -------------------------------------------------------------------------------- /config/software/libgcrypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libgcrypt.rb -------------------------------------------------------------------------------- /config/software/libgpg-error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libgpg-error.rb -------------------------------------------------------------------------------- /config/software/libiconv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libiconv.rb -------------------------------------------------------------------------------- /config/software/libicu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libicu.rb -------------------------------------------------------------------------------- /config/software/libjpeg-turbo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libjpeg-turbo.rb -------------------------------------------------------------------------------- /config/software/libksba.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libksba.rb -------------------------------------------------------------------------------- /config/software/liblzma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/liblzma.rb -------------------------------------------------------------------------------- /config/software/libossp-uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libossp-uuid.rb -------------------------------------------------------------------------------- /config/software/libpng.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libpng.rb -------------------------------------------------------------------------------- /config/software/libtensorflow_lite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libtensorflow_lite.rb -------------------------------------------------------------------------------- /config/software/libtiff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libtiff.rb -------------------------------------------------------------------------------- /config/software/libtool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libtool.rb -------------------------------------------------------------------------------- /config/software/libxml2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libxml2.rb -------------------------------------------------------------------------------- /config/software/libxslt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libxslt.rb -------------------------------------------------------------------------------- /config/software/libyaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/libyaml.rb -------------------------------------------------------------------------------- /config/software/logrotate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/logrotate.rb -------------------------------------------------------------------------------- /config/software/mattermost.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/mattermost.rb -------------------------------------------------------------------------------- /config/software/ncurses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/ncurses.rb -------------------------------------------------------------------------------- /config/software/nginx-module-vts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/nginx-module-vts.rb -------------------------------------------------------------------------------- /config/software/nginx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/nginx.rb -------------------------------------------------------------------------------- /config/software/ngx_security_headers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/ngx_security_headers.rb -------------------------------------------------------------------------------- /config/software/node-exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/node-exporter.rb -------------------------------------------------------------------------------- /config/software/npth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/npth.rb -------------------------------------------------------------------------------- /config/software/omnibus-ctl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/omnibus-ctl.rb -------------------------------------------------------------------------------- /config/software/omnibus-gitlab-gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/omnibus-gitlab-gems.rb -------------------------------------------------------------------------------- /config/software/openssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/openssl.rb -------------------------------------------------------------------------------- /config/software/openssl_1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/openssl_1.rb -------------------------------------------------------------------------------- /config/software/openssl_3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/openssl_3.rb -------------------------------------------------------------------------------- /config/software/package-scripts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/package-scripts.rb -------------------------------------------------------------------------------- /config/software/patroni.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/patroni.rb -------------------------------------------------------------------------------- /config/software/pcre2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/pcre2.rb -------------------------------------------------------------------------------- /config/software/pgbouncer-exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/pgbouncer-exporter.rb -------------------------------------------------------------------------------- /config/software/pgbouncer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/pgbouncer.rb -------------------------------------------------------------------------------- /config/software/pkg-config-lite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/pkg-config-lite.rb -------------------------------------------------------------------------------- /config/software/popt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/popt.rb -------------------------------------------------------------------------------- /config/software/postgres-exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/postgres-exporter.rb -------------------------------------------------------------------------------- /config/software/postgresql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/postgresql.rb -------------------------------------------------------------------------------- /config/software/prometheus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/prometheus.rb -------------------------------------------------------------------------------- /config/software/psycopg2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/psycopg2.rb -------------------------------------------------------------------------------- /config/software/python-docutils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/python-docutils.rb -------------------------------------------------------------------------------- /config/software/python-setuptools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/python-setuptools.rb -------------------------------------------------------------------------------- /config/software/python3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/python3.rb -------------------------------------------------------------------------------- /config/software/rb-readline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/rb-readline.rb -------------------------------------------------------------------------------- /config/software/redis-exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/redis-exporter.rb -------------------------------------------------------------------------------- /config/software/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/redis.rb -------------------------------------------------------------------------------- /config/software/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/registry.rb -------------------------------------------------------------------------------- /config/software/rsync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/rsync.rb -------------------------------------------------------------------------------- /config/software/ruby-grpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/ruby-grpc.rb -------------------------------------------------------------------------------- /config/software/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/ruby.rb -------------------------------------------------------------------------------- /config/software/rubygems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/rubygems.rb -------------------------------------------------------------------------------- /config/software/runit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/runit.rb -------------------------------------------------------------------------------- /config/software/spam-classifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/spam-classifier.rb -------------------------------------------------------------------------------- /config/software/spamcheck.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/spamcheck.rb -------------------------------------------------------------------------------- /config/software/unzip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/unzip.rb -------------------------------------------------------------------------------- /config/software/version-manifest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/version-manifest.rb -------------------------------------------------------------------------------- /config/software/zlib-ng.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/software/zlib-ng.rb -------------------------------------------------------------------------------- /config/templates/gitaly/gitlab_shell_hooks_wrapper.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/templates/gitaly/gitlab_shell_hooks_wrapper.erb -------------------------------------------------------------------------------- /config/templates/gitlab-cookbooks/dna.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/templates/gitlab-cookbooks/dna.json.erb -------------------------------------------------------------------------------- /config/templates/gitlab-rails/bundle_exec_wrapper.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/templates/gitlab-rails/bundle_exec_wrapper.erb -------------------------------------------------------------------------------- /config/templates/gitlab-rails/rake_backup_wrapper.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/templates/gitlab-rails/rake_backup_wrapper.erb -------------------------------------------------------------------------------- /config/templates/omnibus-gitlab-gems/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/templates/omnibus-gitlab-gems/Gemfile -------------------------------------------------------------------------------- /config/templates/omnibus-gitlab-gems/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/templates/omnibus-gitlab-gems/Gemfile.lock -------------------------------------------------------------------------------- /config/templates/package-scripts/external_url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/templates/package-scripts/external_url.sh -------------------------------------------------------------------------------- /config/templates/package-scripts/postinst.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/templates/package-scripts/postinst.erb -------------------------------------------------------------------------------- /config/templates/package-scripts/postrm.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/templates/package-scripts/postrm.erb -------------------------------------------------------------------------------- /config/templates/package-scripts/posttrans.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/templates/package-scripts/posttrans.erb -------------------------------------------------------------------------------- /config/templates/package-scripts/preinst.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/templates/package-scripts/preinst.erb -------------------------------------------------------------------------------- /config/templates/runit/runsvdir-start.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/config/templates/runit/runsvdir-start.erb -------------------------------------------------------------------------------- /danger/reviewers/Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/danger/reviewers/Dangerfile -------------------------------------------------------------------------------- /danger/ruby_upgrade/Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/danger/ruby_upgrade/Dangerfile -------------------------------------------------------------------------------- /danger/software/Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/danger/software/Dangerfile -------------------------------------------------------------------------------- /danger/specs/Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/danger/specs/Dangerfile -------------------------------------------------------------------------------- /danger/tag_only_jobs/Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/danger/tag_only_jobs/Dangerfile -------------------------------------------------------------------------------- /danger/template/Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/danger/template/Dangerfile -------------------------------------------------------------------------------- /doc-locale/.markdownlint/.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/.markdownlint/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /doc-locale/ja-jp/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/_index.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/build/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/build/_index.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/build/build_docker_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/build/build_docker_image.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/build/build_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/build/build_package.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/build/vault_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/build/vault_integration.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/_index.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/allure-test-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/allure-test-report.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/architecture/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/architecture/_index.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/broken_master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/broken_master.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/ci-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/ci-variables.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/creating-patches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/creating-patches.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/database_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/database_support.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/gitlab-ctl-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/gitlab-ctl-commands.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/maintainership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/maintainership.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/new-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/new-services.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/omnibus-mirror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/omnibus-mirror.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/package_version_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/package_version_format.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/pipelines.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/public-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/public-attributes.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/reconfigure_in_detail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/reconfigure_in_detail.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/s390x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/s390x.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/setup.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/test-plans/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/test-plans/_index.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/upgrading-chef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/upgrading-chef.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/development/vulnerabilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/development/vulnerabilities.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/installation/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/installation/_index.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/jihu_edition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/jihu_edition.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/maintenance/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/maintenance/_index.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/release/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/release/_index.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/roles/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/roles/_index.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/_index.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/actioncable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/actioncable.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/backups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/backups.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/configuration.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/database.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/dns.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/environment-variables.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/gitlab.yml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/gitlab.yml.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/image_scaling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/image_scaling.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/logs.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/memory_constrained_envs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/memory_constrained_envs.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/nginx.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/nginx_troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/nginx_troubleshooting.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/praefect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/praefect.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/prometheus.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/redis.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/rpi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/rpi.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/smtp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/smtp.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/ssl/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/ssl/_index.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/ssl/openssl_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/ssl/openssl_3.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/settings/ssl/ssl_troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/settings/ssl/ssl_troubleshooting.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/troubleshooting.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/update/convert_to_omnibus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/update/convert_to_omnibus.md -------------------------------------------------------------------------------- /doc-locale/ja-jp/update/package_signatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc-locale/ja-jp/update/package_signatures.md -------------------------------------------------------------------------------- /doc/.markdownlint/.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.markdownlint/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /doc/.markdownlint/rules/unnecessary_traversal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.markdownlint/rules/unnecessary_traversal.js -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/Ability.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/Ability.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/BadPlurals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/BadPlurals.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/British.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/British.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/CIConfigFile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/CIConfigFile.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/CodeblockFences.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/CodeblockFences.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/CommandStringsQuoted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/CommandStringsQuoted.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/CurrentStatus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/CurrentStatus.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/DefaultBranch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/DefaultBranch.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/Dropdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/Dropdown.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/EOLWhitespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/EOLWhitespace.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/ElementDescriptors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/ElementDescriptors.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/FutureTense.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/FutureTense.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/GitLabFlavoredMarkdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/GitLabFlavoredMarkdown.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/HeadingContent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/HeadingContent.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/HeadingDepth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/HeadingDepth.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/HeadingLink.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/HeadingLink.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/InclusiveLanguage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/InclusiveLanguage.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/LatinTerms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/LatinTerms.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/Level.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/Level.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/ListIndentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/ListIndentation.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/MeaningfulLinkWords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/MeaningfulLinkWords.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/MergeConflictMarkers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/MergeConflictMarkers.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/MultiLineLinks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/MultiLineLinks.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/NonStandardHyphens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/NonStandardHyphens.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/NonStandardListDashes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/NonStandardListDashes.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/NonStandardQuotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/NonStandardQuotes.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/NonStandardSpaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/NonStandardSpaces.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/Offerings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/Offerings.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/OutdatedVersions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/OutdatedVersions.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/OxfordComma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/OxfordComma.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/Possessive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/Possessive.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/PossessiveProperNouns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/PossessiveProperNouns.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/Prerequisites.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/Prerequisites.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/ReadingLevel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/ReadingLevel.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/Repetition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/Repetition.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/SelfReferential.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/SelfReferential.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/SentenceLength.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/SentenceLength.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/SentenceSpacing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/SentenceSpacing.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/Simplicity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/Simplicity.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/Spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/Spelling.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/SubstitutionWarning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/SubstitutionWarning.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/Substitutions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/Substitutions.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/TableDelimiterRows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/TableDelimiterRows.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/ToDo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/ToDo.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/UnclearAntecedent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/UnclearAntecedent.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/Units.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/Units.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/Uppercase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/Uppercase.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/WordSlashWord.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/WordSlashWord.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/Wordy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/Wordy.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/Zip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/Zip.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_base/spelling-exceptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_base/spelling-exceptions.txt -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/AlertBoxStyle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/AlertBoxStyle.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/Badges-Offerings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/Badges-Offerings.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/Badges-Tiers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/Badges-Tiers.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/FrontMatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/FrontMatter.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/HistoryItems.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/HistoryItems.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/HistoryItemsOrder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/HistoryItemsOrder.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/ImagesOld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/ImagesOld.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/InternalLinkCase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/InternalLinkCase.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/InternalLinkExtension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/InternalLinkExtension.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/InternalLinkFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/InternalLinkFormat.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/InternalLinksCode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/InternalLinksCode.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/NonStandardListDashes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/NonStandardListDashes.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/ReferenceLinks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/ReferenceLinks.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/RelativeLinks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/RelativeLinks.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/ShortCodeFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/ShortCodeFormat.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/TablePipes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/TablePipes.yml -------------------------------------------------------------------------------- /doc/.vale/gitlab_docs/TabsLinks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/.vale/gitlab_docs/TabsLinks.yml -------------------------------------------------------------------------------- /doc/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/_index.md -------------------------------------------------------------------------------- /doc/build/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/build/_index.md -------------------------------------------------------------------------------- /doc/build/build_docker_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/build/build_docker_image.md -------------------------------------------------------------------------------- /doc/build/build_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/build/build_package.md -------------------------------------------------------------------------------- /doc/build/vault_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/build/vault_integration.md -------------------------------------------------------------------------------- /doc/development/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/_index.md -------------------------------------------------------------------------------- /doc/development/add-remove-configuration-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/add-remove-configuration-options.md -------------------------------------------------------------------------------- /doc/development/adding-deprecation-messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/adding-deprecation-messages.md -------------------------------------------------------------------------------- /doc/development/allure-test-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/allure-test-report.md -------------------------------------------------------------------------------- /doc/development/architecture/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/architecture/_index.md -------------------------------------------------------------------------------- /doc/development/architecture/img/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/architecture/img/components.png -------------------------------------------------------------------------------- /doc/development/aws_amis_and_marketplace_listings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/aws_amis_and_marketplace_listings.md -------------------------------------------------------------------------------- /doc/development/broken_master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/broken_master.md -------------------------------------------------------------------------------- /doc/development/change-package-behavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/change-package-behavior.md -------------------------------------------------------------------------------- /doc/development/ci-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/ci-variables.md -------------------------------------------------------------------------------- /doc/development/contribute-to-omnibus-gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/contribute-to-omnibus-gitlab.md -------------------------------------------------------------------------------- /doc/development/creating-patches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/creating-patches.md -------------------------------------------------------------------------------- /doc/development/database_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/database_support.md -------------------------------------------------------------------------------- /doc/development/examples/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/examples/simple.rb -------------------------------------------------------------------------------- /doc/development/gitlab-ctl-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/gitlab-ctl-commands.md -------------------------------------------------------------------------------- /doc/development/maintainership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/maintainership.md -------------------------------------------------------------------------------- /doc/development/managing-postgresql-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/managing-postgresql-versions.md -------------------------------------------------------------------------------- /doc/development/new-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/new-services.md -------------------------------------------------------------------------------- /doc/development/new-software-definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/new-software-definition.md -------------------------------------------------------------------------------- /doc/development/omnibus-mirror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/omnibus-mirror.md -------------------------------------------------------------------------------- /doc/development/package_version_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/package_version_format.md -------------------------------------------------------------------------------- /doc/development/pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/pipelines.md -------------------------------------------------------------------------------- /doc/development/public-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/public-attributes.md -------------------------------------------------------------------------------- /doc/development/reconfigure_in_detail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/reconfigure_in_detail.md -------------------------------------------------------------------------------- /doc/development/s390x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/s390x.md -------------------------------------------------------------------------------- /doc/development/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/setup.md -------------------------------------------------------------------------------- /doc/development/team_members.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/team_members.md -------------------------------------------------------------------------------- /doc/development/test-plans/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/test-plans/_index.md -------------------------------------------------------------------------------- /doc/development/test-plans/upgrade-curl-testplan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/test-plans/upgrade-curl-testplan.md -------------------------------------------------------------------------------- /doc/development/test-plans/upgrade-golang-testplan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/test-plans/upgrade-golang-testplan.md -------------------------------------------------------------------------------- /doc/development/test-plans/upgrade-gpg-testplan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/test-plans/upgrade-gpg-testplan.md -------------------------------------------------------------------------------- /doc/development/test-plans/upgrade-libtiff-testplan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/test-plans/upgrade-libtiff-testplan.md -------------------------------------------------------------------------------- /doc/development/test-plans/upgrade-libxml2-testplan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/test-plans/upgrade-libxml2-testplan.md -------------------------------------------------------------------------------- /doc/development/test-plans/upgrade-nginx-testplan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/test-plans/upgrade-nginx-testplan.md -------------------------------------------------------------------------------- /doc/development/test-plans/upgrade-redis-testplan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/test-plans/upgrade-redis-testplan.md -------------------------------------------------------------------------------- /doc/development/upgrading-chef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/upgrading-chef.md -------------------------------------------------------------------------------- /doc/development/upgrading-software-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/upgrading-software-components.md -------------------------------------------------------------------------------- /doc/development/vulnerabilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/development/vulnerabilities.md -------------------------------------------------------------------------------- /doc/installation/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/installation/_index.md -------------------------------------------------------------------------------- /doc/jihu_edition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/jihu_edition.md -------------------------------------------------------------------------------- /doc/maintenance/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/maintenance/_index.md -------------------------------------------------------------------------------- /doc/release/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/release/_index.md -------------------------------------------------------------------------------- /doc/roles/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/roles/_index.md -------------------------------------------------------------------------------- /doc/settings/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/_index.md -------------------------------------------------------------------------------- /doc/settings/actioncable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/actioncable.md -------------------------------------------------------------------------------- /doc/settings/backups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/backups.md -------------------------------------------------------------------------------- /doc/settings/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/configuration.md -------------------------------------------------------------------------------- /doc/settings/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/database.md -------------------------------------------------------------------------------- /doc/settings/dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/dns.md -------------------------------------------------------------------------------- /doc/settings/environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/environment-variables.md -------------------------------------------------------------------------------- /doc/settings/gitlab.yml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/gitlab.yml.md -------------------------------------------------------------------------------- /doc/settings/image_scaling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/image_scaling.md -------------------------------------------------------------------------------- /doc/settings/img/error_page_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/img/error_page_example.png -------------------------------------------------------------------------------- /doc/settings/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/logs.md -------------------------------------------------------------------------------- /doc/settings/memory_constrained_envs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/memory_constrained_envs.md -------------------------------------------------------------------------------- /doc/settings/microsoft_graph_mailer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/microsoft_graph_mailer.md -------------------------------------------------------------------------------- /doc/settings/nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/nginx.md -------------------------------------------------------------------------------- /doc/settings/nginx_troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/nginx_troubleshooting.md -------------------------------------------------------------------------------- /doc/settings/praefect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/praefect.md -------------------------------------------------------------------------------- /doc/settings/prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/prometheus.md -------------------------------------------------------------------------------- /doc/settings/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/redis.md -------------------------------------------------------------------------------- /doc/settings/rpi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/rpi.md -------------------------------------------------------------------------------- /doc/settings/smtp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/smtp.md -------------------------------------------------------------------------------- /doc/settings/ssl/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/ssl/_index.md -------------------------------------------------------------------------------- /doc/settings/ssl/openssl_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/ssl/openssl_3.md -------------------------------------------------------------------------------- /doc/settings/ssl/ssl_troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/settings/ssl/ssl_troubleshooting.md -------------------------------------------------------------------------------- /doc/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/troubleshooting.md -------------------------------------------------------------------------------- /doc/update/convert_to_omnibus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/update/convert_to_omnibus.md -------------------------------------------------------------------------------- /doc/update/package_signatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/doc/update/package_signatures.md -------------------------------------------------------------------------------- /docker/.dockerignore: -------------------------------------------------------------------------------- 1 | *.md 2 | -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/assets/download-package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/docker/assets/download-package -------------------------------------------------------------------------------- /docker/assets/gitlab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/docker/assets/gitlab.rb -------------------------------------------------------------------------------- /docker/assets/init-container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/docker/assets/init-container -------------------------------------------------------------------------------- /docker/assets/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/docker/assets/setup -------------------------------------------------------------------------------- /docker/assets/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/docker/assets/sshd_config -------------------------------------------------------------------------------- /docker/assets/update-permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/docker/assets/update-permissions -------------------------------------------------------------------------------- /docker/locale.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/docker/locale.gen -------------------------------------------------------------------------------- /docker/marathon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/docker/marathon.json -------------------------------------------------------------------------------- /files/gitlab-config-template/gitlab.rb.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-config-template/gitlab.rb.template -------------------------------------------------------------------------------- /files/gitlab-cookbooks/consul/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/consul/attributes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/consul/attributes/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/consul/attributes/services.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/consul/attributes/watchers.rb: -------------------------------------------------------------------------------- 1 | default['consul']['watchers'] = [] 2 | -------------------------------------------------------------------------------- /files/gitlab-cookbooks/consul/libraries/consul.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/consul/libraries/consul.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/consul/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/consul/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/consul/recipes/disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/consul/recipes/disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/consul/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/consul/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/consul/recipes/enable_daemon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/consul/recipes/enable_daemon.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/consul/recipes/watchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/consul/recipes/watchers.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/crond/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/crond/attributes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/crond/libraries/crond_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/crond/libraries/crond_helper.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/crond/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/crond/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/crond/recipes/disable.rb: -------------------------------------------------------------------------------- 1 | runit_service "crond" do 2 | action :disable 3 | end 4 | -------------------------------------------------------------------------------- /files/gitlab-cookbooks/crond/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/crond/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/crond/resources/job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/crond/resources/job.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitaly/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitaly/attributes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitaly/libraries/gitaly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitaly/libraries/gitaly.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitaly/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitaly/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitaly/recipes/disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitaly/recipes/disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitaly/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitaly/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitaly/recipes/git_data_dirs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitaly/recipes/git_data_dirs.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-base/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab-base/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-base/recipes/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab-base/recipes/config.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-base/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab-base/recipes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-ee/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab-ee/attributes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-ee/libraries/sentinel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab-ee/libraries/sentinel.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-ee/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab-ee/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-ee/recipes/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab-ee/recipes/config.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-ee/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab-ee/recipes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-ee/recipes/sentinel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab-ee/recipes/sentinel.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-kas/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab-kas/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-kas/recipes/disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab-kas/recipes/disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-kas/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab-kas/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-pages/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab-pages/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-pages/recipes/disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab-pages/recipes/disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-pages/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab-pages/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab-pages/templates/default/secret_token.erb: -------------------------------------------------------------------------------- 1 | <%= @secret_token %> 2 | -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/README.md -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/attributes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/libraries/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/libraries/helper.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/libraries/logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/libraries/logging.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/libraries/nginx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/libraries/nginx.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/libraries/patroni.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/libraries/patroni.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/libraries/pg_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/libraries/pg_version.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/libraries/postgresql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/libraries/postgresql.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/libraries/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/libraries/puma.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/libraries/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/libraries/redis.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/libraries/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/libraries/registry.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/libraries/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/libraries/sidekiq.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/libraries/smtp_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/libraries/smtp_helper.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/recipes/bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/recipes/bootstrap.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/recipes/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/recipes/config.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/recipes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/recipes/gitlab-rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/recipes/gitlab-rails.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/recipes/gitlab-shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/recipes/gitlab-shell.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/recipes/mailroom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/recipes/mailroom.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/recipes/nginx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/recipes/nginx.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/recipes/nginx_disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/recipes/nginx_disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/recipes/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/recipes/puma.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/recipes/puma_disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/recipes/puma_disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/recipes/remote-syslog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/recipes/remote-syslog.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/recipes/selinux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/recipes/selinux.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/recipes/show_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/recipes/show_config.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/recipes/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/recipes/sidekiq.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/recipes/storage-check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/recipes/storage-check.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/resources/puma_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/gitlab/resources/puma_config.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/templates/default/secret_token.erb: -------------------------------------------------------------------------------- 1 | <%= @secret_token %> 2 | -------------------------------------------------------------------------------- /files/gitlab-cookbooks/gitlab/templates/default/sv-gitlab-sshd-log-run.erb: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec svlogd <%= @options[:log_directory] %> 3 | -------------------------------------------------------------------------------- /files/gitlab-cookbooks/letsencrypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/letsencrypt/README.md -------------------------------------------------------------------------------- /files/gitlab-cookbooks/letsencrypt/libraries/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/letsencrypt/libraries/helper.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/letsencrypt/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/letsencrypt/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/letsencrypt/recipes/disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/letsencrypt/recipes/disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/letsencrypt/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/letsencrypt/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/logrotate/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/logrotate/attributes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/logrotate/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/logrotate/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/logrotate/recipes/disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/logrotate/recipes/disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/logrotate/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/logrotate/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/mattermost/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/mattermost/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/mattermost/recipes/disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/mattermost/recipes/disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/mattermost/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/mattermost/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/monitoring/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/monitoring/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/monitoring/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/monitoring/recipes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/monitoring/recipes/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/monitoring/recipes/user.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/nginx/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/nginx/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/nginx/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/nginx/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/package/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/package/attributes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/package/libraries/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/package/libraries/helper.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/package/libraries/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/package/libraries/package.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/package/libraries/redis_uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/package/libraries/redis_uri.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/package/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/package/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/package/recipes/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/package/recipes/config.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/package/recipes/runit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/package/recipes/runit.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/package/recipes/show_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/package/recipes/show_config.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/package/recipes/sysctl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/package/recipes/sysctl.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/package/recipes/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/package/recipes/users.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/package/recipes/web-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/package/recipes/web-server.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/package/resources/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/package/resources/account.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/package/resources/env_dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/package/resources/env_dir.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/patroni/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/patroni/attributes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/patroni/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/patroni/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/patroni/recipes/disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/patroni/recipes/disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/patroni/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/patroni/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/pgbouncer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/pgbouncer/README.md -------------------------------------------------------------------------------- /files/gitlab-cookbooks/pgbouncer/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/pgbouncer/attributes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/pgbouncer/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/pgbouncer/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/pgbouncer/recipes/disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/pgbouncer/recipes/disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/pgbouncer/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/pgbouncer/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/pgbouncer/recipes/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/pgbouncer/recipes/user.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/pgbouncer/templates/default/peers.ini.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/gitlab-cookbooks/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/postgresql/README.md -------------------------------------------------------------------------------- /files/gitlab-cookbooks/postgresql/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/postgresql/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/postgresql/recipes/bin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/postgresql/recipes/bin.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/postgresql/recipes/disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/postgresql/recipes/disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/postgresql/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/postgresql/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/postgresql/recipes/sysctl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/postgresql/recipes/sysctl.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/postgresql/recipes/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/postgresql/recipes/user.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/postgresql/resources/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/postgresql/resources/config.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/postgresql/resources/query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/postgresql/resources/query.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/postgresql/resources/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/postgresql/resources/schema.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/postgresql/resources/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/postgresql/resources/user.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/praefect/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/praefect/attributes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/praefect/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/praefect/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/praefect/recipes/disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/praefect/recipes/disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/praefect/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/praefect/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/redis/attributes/attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/redis/attributes/attributes.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/redis/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/redis/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/redis/recipes/disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/redis/recipes/disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/redis/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/redis/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/redis/resources/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/redis/resources/service.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/registry/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/registry/attributes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/registry/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/registry/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/registry/recipes/disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/registry/recipes/disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/registry/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/registry/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/renew-letsencrypt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/renew-letsencrypt.json -------------------------------------------------------------------------------- /files/gitlab-cookbooks/runit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/runit/LICENSE -------------------------------------------------------------------------------- /files/gitlab-cookbooks/runit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/runit/README.md -------------------------------------------------------------------------------- /files/gitlab-cookbooks/runit/libraries/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/runit/libraries/helpers.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/runit/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/runit/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/show-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "run_list": [ "recipe[package::show_config]" ] 3 | } 4 | -------------------------------------------------------------------------------- /files/gitlab-cookbooks/solo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/solo.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/spamcheck/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/spamcheck/attributes/default.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/spamcheck/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/spamcheck/metadata.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/spamcheck/recipes/disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/spamcheck/recipes/disable.rb -------------------------------------------------------------------------------- /files/gitlab-cookbooks/spamcheck/recipes/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-cookbooks/spamcheck/recipes/enable.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/consul.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/consul.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/geo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/geo.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/geo_replication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/geo_replication.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/get_postgresql_primary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/get_postgresql_primary.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/lib/consul.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/lib/consul.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/lib/consul_download.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/lib/consul_download.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/lib/geo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/lib/geo.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/lib/geo/pitr_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/lib/geo/pitr_file.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/lib/geo/promote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/lib/geo/promote.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/lib/geo/promote_db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/lib/geo/promote_db.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/lib/geo/replication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/lib/geo/replication.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/lib/patroni.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/lib/patroni.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/lib/pgbouncer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/lib/pgbouncer.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/patroni.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/patroni.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/pgbouncer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/pgbouncer.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/replicate_geo_database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/replicate_geo_database.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands-ee/set_geo_primary_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands-ee/set_geo_primary_node.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/backup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/backup.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/check_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/check_config.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/deploy_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/deploy_page.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/diff_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/diff_config.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/generate_secrets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/generate_secrets.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/get_redis_master.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/get_redis_master.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/letsencrypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/letsencrypt.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/lib/gitlab_ctl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/lib/gitlab_ctl.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/lib/gitlab_ctl/backup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/lib/gitlab_ctl/backup.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/lib/gitlab_ctl/pg_upgrade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/lib/gitlab_ctl/pg_upgrade.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/lib/gitlab_ctl/postgresql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/lib/gitlab_ctl/postgresql.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/lib/gitlab_ctl/selinux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/lib/gitlab_ctl/selinux.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/lib/gitlab_ctl/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/lib/gitlab_ctl/util.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/lib/praefect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/lib/praefect.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/pg-upgrade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/pg-upgrade.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/praefect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/praefect.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/registry_database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/registry_database.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/remove_accounts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/remove_accounts.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/restart_except.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/restart_except.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/selinux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/selinux.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/upgrade-check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/upgrade-check.rb -------------------------------------------------------------------------------- /files/gitlab-ctl-commands/upgrade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-ctl-commands/upgrade.rb -------------------------------------------------------------------------------- /files/gitlab-scripts/gitlab-logrotate-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-scripts/gitlab-logrotate-wrapper -------------------------------------------------------------------------------- /files/gitlab-scripts/symlink_ctl_cmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-scripts/symlink_ctl_cmds -------------------------------------------------------------------------------- /files/gitlab-selinux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-selinux/README.md -------------------------------------------------------------------------------- /files/gitlab-selinux/gitlab-13.5.0-gitlab-shell.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-selinux/gitlab-13.5.0-gitlab-shell.te -------------------------------------------------------------------------------- /files/gitlab-selinux/gitlab-7.2.0-ssh-keygen.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-selinux/gitlab-7.2.0-ssh-keygen.te -------------------------------------------------------------------------------- /files/gitlab-selinux/gitlab.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/files/gitlab-selinux/gitlab.te -------------------------------------------------------------------------------- /gitlab-ci-config/check-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/gitlab-ci-config/check-packages.yml -------------------------------------------------------------------------------- /gitlab-ci-config/dev-gitlab-org.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/gitlab-ci-config/dev-gitlab-org.yml -------------------------------------------------------------------------------- /gitlab-ci-config/dind-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/gitlab-ci-config/dind-config.yml -------------------------------------------------------------------------------- /gitlab-ci-config/gitlab-com.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/gitlab-ci-config/gitlab-com.yml -------------------------------------------------------------------------------- /gitlab-ci-config/rat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/gitlab-ci-config/rat.yml -------------------------------------------------------------------------------- /gitlab-ci-config/variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/gitlab-ci-config/variables.yml -------------------------------------------------------------------------------- /gitlab-ci-config/vault-public-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/gitlab-ci-config/vault-public-secrets.yml -------------------------------------------------------------------------------- /gitlab-ci-config/vault-security-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/gitlab-ci-config/vault-security-secrets.yml -------------------------------------------------------------------------------- /gitlab-ci-config/workflow-rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/gitlab-ci-config/workflow-rules.yml -------------------------------------------------------------------------------- /letsencrypt-test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/letsencrypt-test/docker-compose.yml -------------------------------------------------------------------------------- /letsencrypt-test/pebble-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/letsencrypt-test/pebble-config.json -------------------------------------------------------------------------------- /letsencrypt-test/pebble-data/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/letsencrypt-test/pebble-data/LICENSE -------------------------------------------------------------------------------- /letsencrypt-test/pebble-data/pebble.minica.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/letsencrypt-test/pebble-data/pebble.minica.pem -------------------------------------------------------------------------------- /letsencrypt-test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/letsencrypt-test/test.sh -------------------------------------------------------------------------------- /lib/gitlab/api_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/api_client.rb -------------------------------------------------------------------------------- /lib/gitlab/aws_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/aws_helper.rb -------------------------------------------------------------------------------- /lib/gitlab/build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build.rb -------------------------------------------------------------------------------- /lib/gitlab/build/check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/check.rb -------------------------------------------------------------------------------- /lib/gitlab/build/facts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/facts.rb -------------------------------------------------------------------------------- /lib/gitlab/build/gitlab_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/gitlab_image.rb -------------------------------------------------------------------------------- /lib/gitlab/build/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/image.rb -------------------------------------------------------------------------------- /lib/gitlab/build/info/ci.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/info/ci.rb -------------------------------------------------------------------------------- /lib/gitlab/build/info/components.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/info/components.rb -------------------------------------------------------------------------------- /lib/gitlab/build/info/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/info/deploy.rb -------------------------------------------------------------------------------- /lib/gitlab/build/info/docker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/info/docker.rb -------------------------------------------------------------------------------- /lib/gitlab/build/info/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/info/git.rb -------------------------------------------------------------------------------- /lib/gitlab/build/info/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/info/package.rb -------------------------------------------------------------------------------- /lib/gitlab/build/info/qa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/info/qa.rb -------------------------------------------------------------------------------- /lib/gitlab/build/info/secrets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/info/secrets.rb -------------------------------------------------------------------------------- /lib/gitlab/build/qa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/qa.rb -------------------------------------------------------------------------------- /lib/gitlab/build/qa_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/qa_image.rb -------------------------------------------------------------------------------- /lib/gitlab/build/trigger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/trigger.rb -------------------------------------------------------------------------------- /lib/gitlab/build/ubt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build/ubt.rb -------------------------------------------------------------------------------- /lib/gitlab/build_iteration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/build_iteration.rb -------------------------------------------------------------------------------- /lib/gitlab/deployer_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/deployer_helper.rb -------------------------------------------------------------------------------- /lib/gitlab/docker_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/docker_helper.rb -------------------------------------------------------------------------------- /lib/gitlab/docker_operations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/docker_operations.rb -------------------------------------------------------------------------------- /lib/gitlab/gcloud_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/gcloud_helper.rb -------------------------------------------------------------------------------- /lib/gitlab/gitlab_release_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/gitlab_release_helper.rb -------------------------------------------------------------------------------- /lib/gitlab/license/analyzer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/license/analyzer.rb -------------------------------------------------------------------------------- /lib/gitlab/license/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/license/base.rb -------------------------------------------------------------------------------- /lib/gitlab/license/collector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/license/collector.rb -------------------------------------------------------------------------------- /lib/gitlab/license/licenses.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/license/licenses.html.erb -------------------------------------------------------------------------------- /lib/gitlab/license/package.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/license/package.html.erb -------------------------------------------------------------------------------- /lib/gitlab/license/uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/license/uploader.rb -------------------------------------------------------------------------------- /lib/gitlab/linker_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/linker_helper.rb -------------------------------------------------------------------------------- /lib/gitlab/manifest/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/manifest/base.rb -------------------------------------------------------------------------------- /lib/gitlab/manifest/collector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/manifest/collector.rb -------------------------------------------------------------------------------- /lib/gitlab/manifest/manifests.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/manifest/manifests.html.erb -------------------------------------------------------------------------------- /lib/gitlab/manifest/uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/manifest/uploader.rb -------------------------------------------------------------------------------- /lib/gitlab/ohai_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/ohai_helper.rb -------------------------------------------------------------------------------- /lib/gitlab/openssl_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/openssl_helper.rb -------------------------------------------------------------------------------- /lib/gitlab/package_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/package_repository.rb -------------------------------------------------------------------------------- /lib/gitlab/package_repository/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/package_repository/base.rb -------------------------------------------------------------------------------- /lib/gitlab/package_repository/package_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/package_repository/package_type.rb -------------------------------------------------------------------------------- /lib/gitlab/package_repository/pulp_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/package_repository/pulp_repository.rb -------------------------------------------------------------------------------- /lib/gitlab/package_size.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/package_size.rb -------------------------------------------------------------------------------- /lib/gitlab/prometheus_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/prometheus_helper.rb -------------------------------------------------------------------------------- /lib/gitlab/retriable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/retriable.rb -------------------------------------------------------------------------------- /lib/gitlab/skopeo_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/skopeo_helper.rb -------------------------------------------------------------------------------- /lib/gitlab/tasks/aws.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/tasks/aws.rake -------------------------------------------------------------------------------- /lib/gitlab/tasks/build.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/tasks/build.rake -------------------------------------------------------------------------------- /lib/gitlab/tasks/cache.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/tasks/cache.rake -------------------------------------------------------------------------------- /lib/gitlab/tasks/check.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/tasks/check.rake -------------------------------------------------------------------------------- /lib/gitlab/tasks/docker_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/tasks/docker_tasks.rake -------------------------------------------------------------------------------- /lib/gitlab/tasks/docs.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/tasks/docs.rake -------------------------------------------------------------------------------- /lib/gitlab/tasks/gitlab_com.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/tasks/gitlab_com.rake -------------------------------------------------------------------------------- /lib/gitlab/tasks/infrastructure.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/tasks/infrastructure.rake -------------------------------------------------------------------------------- /lib/gitlab/tasks/license.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/tasks/license.rake -------------------------------------------------------------------------------- /lib/gitlab/tasks/manifest.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/tasks/manifest.rake -------------------------------------------------------------------------------- /lib/gitlab/tasks/qa.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/tasks/qa.rake -------------------------------------------------------------------------------- /lib/gitlab/tasks/release.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/tasks/release.rake -------------------------------------------------------------------------------- /lib/gitlab/tasks/repository.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/tasks/repository.rake -------------------------------------------------------------------------------- /lib/gitlab/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/util.rb -------------------------------------------------------------------------------- /lib/gitlab/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/gitlab/version.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/avoid_using_env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/rubocop/cop/avoid_using_env.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/specify_default_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/rubocop/cop/specify_default_version.rb -------------------------------------------------------------------------------- /lib/rubocop/rubocop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/lib/rubocop/rubocop.rb -------------------------------------------------------------------------------- /omnibus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/omnibus.rb -------------------------------------------------------------------------------- /omnibus.rb.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/omnibus.rb.example -------------------------------------------------------------------------------- /resources/rpm/signing.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/resources/rpm/signing.erb -------------------------------------------------------------------------------- /scripts/ci/deploy_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/scripts/ci/deploy_docker.sh -------------------------------------------------------------------------------- /scripts/ci/deploy_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/scripts/ci/deploy_package.sh -------------------------------------------------------------------------------- /scripts/ci/install_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/scripts/ci/install_package.sh -------------------------------------------------------------------------------- /scripts/ci/prepare_bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/scripts/ci/prepare_bundle.sh -------------------------------------------------------------------------------- /scripts/docs_i18n_verify_paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/scripts/docs_i18n_verify_paths.sh -------------------------------------------------------------------------------- /scripts/gitlab-debsigs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/scripts/gitlab-debsigs.sh -------------------------------------------------------------------------------- /scripts/renovate/checksums/software/libarchive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/scripts/renovate/checksums/software/libarchive.sh -------------------------------------------------------------------------------- /scripts/renovate/checksums/software/libxml2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/scripts/renovate/checksums/software/libxml2.sh -------------------------------------------------------------------------------- /scripts/renovate/checksums/software/python3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/scripts/renovate/checksums/software/python3.sh -------------------------------------------------------------------------------- /scripts/renovate/checksums/software/rsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/scripts/renovate/checksums/software/rsync.sh -------------------------------------------------------------------------------- /scripts/renovate/checksums/software/shared.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/scripts/renovate/checksums/software/shared.sh -------------------------------------------------------------------------------- /scripts/renovate/checksums/update_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/scripts/renovate/checksums/update_all.sh -------------------------------------------------------------------------------- /scripts/renovate/update-bundler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/scripts/renovate/update-bundler.sh -------------------------------------------------------------------------------- /scripts/repack-deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/scripts/repack-deb -------------------------------------------------------------------------------- /scripts/security-harness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/scripts/security-harness -------------------------------------------------------------------------------- /spec/chef/cookbooks/consul/recipes/consul_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/consul/recipes/consul_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/gitaly/libraries/gitaly_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/gitaly/libraries/gitaly_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/gitaly/recipes/gitaly_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/gitaly/recipes/gitaly_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/gitlab-ee/recipes/geo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/gitlab-ee/recipes/geo_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/gitlab/libraries/redis_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/gitlab/libraries/redis_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/gitlab/recipes/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/gitlab/recipes/config_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/gitlab/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/gitlab/recipes/default_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/gitlab/recipes/mailroom_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/gitlab/recipes/mailroom_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/gitlab/recipes/nginx_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/gitlab/recipes/nginx_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/gitlab/recipes/puma_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/gitlab/recipes/puma_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/gitlab/recipes/selinux_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/gitlab/recipes/selinux_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/gitlab/recipes/sidekiq_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/gitlab/recipes/sidekiq_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/package/recipes/runit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/package/recipes/runit_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/package/recipes/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/package/recipes/users_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/patroni/recipes/patroni_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/patroni/recipes/patroni_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/postgresql/recipes/bin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/postgresql/recipes/bin_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/postgresql/recipes/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/postgresql/recipes/user_spec.rb -------------------------------------------------------------------------------- /spec/chef/cookbooks/redis/recipes/redis_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/cookbooks/redis/recipes/redis_spec.rb -------------------------------------------------------------------------------- /spec/chef/fixtures/cookbooks/acme/attributes/default.rb: -------------------------------------------------------------------------------- 1 | default['acme']['key_size'] = 2048 2 | -------------------------------------------------------------------------------- /spec/chef/fixtures/cookbooks/acme/metadata.rb: -------------------------------------------------------------------------------- 1 | name 'acme' 2 | -------------------------------------------------------------------------------- /spec/chef/fixtures/cookbooks/gitlab-jh/metadata.rb: -------------------------------------------------------------------------------- 1 | name 'gitlab-jh' 2 | -------------------------------------------------------------------------------- /spec/chef/fixtures/cookbooks/test_consul/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/fixtures/cookbooks/test_consul/metadata.rb -------------------------------------------------------------------------------- /spec/chef/fixtures/cookbooks/test_crond/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/fixtures/cookbooks/test_crond/metadata.rb -------------------------------------------------------------------------------- /spec/chef/fixtures/cookbooks/test_gitlab/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/fixtures/cookbooks/test_gitlab/metadata.rb -------------------------------------------------------------------------------- /spec/chef/fixtures/cookbooks/test_nginx/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/fixtures/cookbooks/test_nginx/metadata.rb -------------------------------------------------------------------------------- /spec/chef/fixtures/cookbooks/test_package/recipes/gitlab_sysctl_create.rb: -------------------------------------------------------------------------------- 1 | gitlab_sysctl 'foo' do 2 | value 15000 3 | end 4 | -------------------------------------------------------------------------------- /spec/chef/fixtures/cookbooks/test_postgresql/recipes/postgresql_database_create.rb: -------------------------------------------------------------------------------- 1 | postgresql_database 'example' do 2 | end 3 | -------------------------------------------------------------------------------- /spec/chef/fixtures/cookbooks/test_postgresql/recipes/postgresql_user_create.rb: -------------------------------------------------------------------------------- 1 | postgresql_user 'example' do 2 | end 3 | -------------------------------------------------------------------------------- /spec/chef/fixtures/cookbooks/test_postgresql/recipes/postgresql_user_options_superuser.rb: -------------------------------------------------------------------------------- 1 | postgresql_user 'example' do 2 | options ['SUPERUSER'] 3 | end 4 | -------------------------------------------------------------------------------- /spec/chef/fixtures/cookbooks/test_postgresql/recipes/postgresql_user_options_unspecified.rb: -------------------------------------------------------------------------------- 1 | postgresql_user 'example' do 2 | end 3 | -------------------------------------------------------------------------------- /spec/chef/fixtures/cookbooks/test_postgresql/recipes/postgresql_user_password_unspecified.rb: -------------------------------------------------------------------------------- 1 | postgresql_user 'no_password' do 2 | end 3 | -------------------------------------------------------------------------------- /spec/chef/fixtures/cookbooks/test_registry/recipes/registry_database_migrations_run.rb: -------------------------------------------------------------------------------- 1 | registry_database_migrations 'up' do 2 | action :run 3 | end 4 | -------------------------------------------------------------------------------- /spec/chef/fixtures/fauxhai/ubuntu/16.04-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/fixtures/fauxhai/ubuntu/16.04-docker.json -------------------------------------------------------------------------------- /spec/chef/fixtures/fauxhai/ubuntu/16.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/fixtures/fauxhai/ubuntu/16.04.json -------------------------------------------------------------------------------- /spec/chef/fixtures/fauxhai/ubuntu/22.04-rpi4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/fixtures/fauxhai/ubuntu/22.04-rpi4.json -------------------------------------------------------------------------------- /spec/chef/fixtures/migration/failed-migration-status-file: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /spec/chef/fixtures/migration/successful-migration-status-file: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /spec/chef/gitlab-ctl-commands-ee/geo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/gitlab-ctl-commands-ee/geo_spec.rb -------------------------------------------------------------------------------- /spec/chef/gitlab-ctl-commands-ee/lib/consul_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/gitlab-ctl-commands-ee/lib/consul_spec.rb -------------------------------------------------------------------------------- /spec/chef/gitlab-ctl-commands-ee/lib/patroni_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/gitlab-ctl-commands-ee/lib/patroni_spec.rb -------------------------------------------------------------------------------- /spec/chef/gitlab-ctl-commands/gitlab_ctl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/gitlab-ctl-commands/gitlab_ctl_spec.rb -------------------------------------------------------------------------------- /spec/chef/gitlab-ctl-commands/lib/praefect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/gitlab-ctl-commands/lib/praefect_spec.rb -------------------------------------------------------------------------------- /spec/chef/gitlab-ctl-commands/lib/util_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/gitlab-ctl-commands/lib/util_spec.rb -------------------------------------------------------------------------------- /spec/chef/support/shared_examples/git_data_dirs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/support/shared_examples/git_data_dirs.rb -------------------------------------------------------------------------------- /spec/chef/support/shared_examples/logged_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/support/shared_examples/logged_service.rb -------------------------------------------------------------------------------- /spec/chef/support/shared_examples/runit_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/support/shared_examples/runit_service.rb -------------------------------------------------------------------------------- /spec/chef/support/shared_examples/yaml_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef/support/shared_examples/yaml_check.rb -------------------------------------------------------------------------------- /spec/chef_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/chef_helper.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/build/check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/build/check_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/build/facts_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/build/facts_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/build/gitlab_image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/build/gitlab_image_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/build/image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/build/image_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/build/info/components_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/build/info/components_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/build/info/deploy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/build/info/deploy_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/build/info/docker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/build/info/docker_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/build/info/git_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/build/info/git_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/build/info/package_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/build/info/package_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/build/qa_image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/build/qa_image_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/build/qa_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/build/qa_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/build_iteration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/build_iteration_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/build_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/build_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/deployer_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/deployer_helper_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/docker_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/docker_helper_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/docker_operations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/docker_operations_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/gcloud_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/gcloud_helper_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/linker_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/linker_helper_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/package_repository/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/package_repository/base_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/package_repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/package_repository_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/skopeo_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/skopeo_helper_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/tasks/aws_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/tasks/aws_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/tasks/docker_tasks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/tasks/docker_tasks_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/tasks/gitlab_com_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/tasks/gitlab_com_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/tasks/license_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/tasks/license_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/tasks/qa_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/tasks/qa_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/util_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/util_spec.rb -------------------------------------------------------------------------------- /spec/lib/gitlab/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/gitlab/version_spec.rb -------------------------------------------------------------------------------- /spec/lib/rubocop/cop/avoid_using_env_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/rubocop/cop/avoid_using_env_spec.rb -------------------------------------------------------------------------------- /spec/lib/rubocop/cop/specify_default_version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/lib/rubocop/cop/specify_default_version_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/expectations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/support/expectations.rb -------------------------------------------------------------------------------- /spec/support/macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/support/macros.rb -------------------------------------------------------------------------------- /spec/support/retriable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/spec/support/retriable.rb -------------------------------------------------------------------------------- /support/dependency_decisions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/dependency_decisions.yml -------------------------------------------------------------------------------- /support/fetch_assets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/fetch_assets -------------------------------------------------------------------------------- /support/gitlab_yml_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/gitlab_yml_converter.rb -------------------------------------------------------------------------------- /support/import_gpg_secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/import_gpg_secrets.sh -------------------------------------------------------------------------------- /support/is_gitlab_ee.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/is_gitlab_ee.sh -------------------------------------------------------------------------------- /support/known_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/known_hosts -------------------------------------------------------------------------------- /support/license_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/license_check.sh -------------------------------------------------------------------------------- /support/merge-reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/merge-reports -------------------------------------------------------------------------------- /support/notify_slack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/notify_slack.sh -------------------------------------------------------------------------------- /support/packer/ami-startup-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/packer/ami-startup-script.sh -------------------------------------------------------------------------------- /support/packer/ce-arm64.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/packer/ce-arm64.pkr.hcl -------------------------------------------------------------------------------- /support/packer/ce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/packer/ce.pkr.hcl -------------------------------------------------------------------------------- /support/packer/ee-arm64.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/packer/ee-arm64.pkr.hcl -------------------------------------------------------------------------------- /support/packer/ee-premium.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/packer/ee-premium.pkr.hcl -------------------------------------------------------------------------------- /support/packer/ee-ultimate.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/packer/ee-ultimate.pkr.hcl -------------------------------------------------------------------------------- /support/packer/ee.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/packer/ee.pkr.hcl -------------------------------------------------------------------------------- /support/packer/packer_ami.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/packer/packer_ami.sh -------------------------------------------------------------------------------- /support/packer/update-script-ce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/packer/update-script-ce.sh -------------------------------------------------------------------------------- /support/packer/update-script-ee-premium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/packer/update-script-ee-premium.sh -------------------------------------------------------------------------------- /support/packer/update-script-ee-ultimate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/packer/update-script-ee-ultimate.sh -------------------------------------------------------------------------------- /support/packer/update-script-ee.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/packer/update-script-ee.sh -------------------------------------------------------------------------------- /support/set-revisions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/set-revisions -------------------------------------------------------------------------------- /support/webpages/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/webpages/script.js -------------------------------------------------------------------------------- /support/webpages/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/webpages/style.css -------------------------------------------------------------------------------- /support/webpages/upgrade-metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitlabhq/omnibus-gitlab/HEAD/support/webpages/upgrade-metrics.html --------------------------------------------------------------------------------