├── .gitignore ├── .travis.yml ├── CHANGES.rst ├── COPYRIGHT ├── LICENSE ├── README.md ├── defaults └── main.yml ├── docs ├── changelog.rst ├── copyright.rst ├── getting-started.rst ├── includes │ └── all.rst ├── index.rst ├── introduction.rst ├── playbooks │ └── gitlab.yml └── remote_db.rst ├── env ├── defaults └── tasks │ └── main.yml ├── handlers └── main.yml ├── meta ├── ansigenome.yml └── main.yml ├── tasks ├── configure_gitaly.yml ├── configure_gitlab-pages.yml ├── configure_gitlab-shell.yml ├── configure_gitlab-workhorse.yml ├── configure_gitlab_ce.yml ├── gitlab_ce_pre_upgrade.yml ├── ldap_account.yml ├── main.yml └── start_gitlab_ce.yml └── templates ├── etc ├── ansible │ └── facts.d │ │ └── gitlab.fact.j2 ├── default │ └── gitlab.j2 ├── logrotate.d │ └── gitlab.j2 └── systemd │ └── system │ ├── gitlab-gitaly.service.j2 │ ├── gitlab-mailroom.service.j2 │ ├── gitlab-pages.service.j2 │ ├── gitlab-sidekiq.service.j2 │ ├── gitlab-unicorn.service.j2 │ ├── gitlab-workhorse.service.j2 │ └── gitlab.slice.j2 └── var └── local └── git ├── gitaly └── config.toml.j2 ├── gitconfig.j2 ├── gitlab-shell └── config.yml.j2 └── gitlab └── config ├── database.postgresql.yml.j2 ├── gitlab.yml.j2 ├── initializers └── rack_attack.rb.j2 └── unicorn.rb.j2 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGES.rst 2 | -------------------------------------------------------------------------------- /docs/copyright.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/docs/copyright.rst -------------------------------------------------------------------------------- /docs/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/docs/getting-started.rst -------------------------------------------------------------------------------- /docs/includes/all.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/docs/includes/all.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/docs/introduction.rst -------------------------------------------------------------------------------- /docs/playbooks/gitlab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/docs/playbooks/gitlab.yml -------------------------------------------------------------------------------- /docs/remote_db.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/docs/remote_db.rst -------------------------------------------------------------------------------- /env/defaults: -------------------------------------------------------------------------------- 1 | ../defaults -------------------------------------------------------------------------------- /env/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/env/tasks/main.yml -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /meta/ansigenome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/meta/ansigenome.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/meta/main.yml -------------------------------------------------------------------------------- /tasks/configure_gitaly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/tasks/configure_gitaly.yml -------------------------------------------------------------------------------- /tasks/configure_gitlab-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/tasks/configure_gitlab-pages.yml -------------------------------------------------------------------------------- /tasks/configure_gitlab-shell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/tasks/configure_gitlab-shell.yml -------------------------------------------------------------------------------- /tasks/configure_gitlab-workhorse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/tasks/configure_gitlab-workhorse.yml -------------------------------------------------------------------------------- /tasks/configure_gitlab_ce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/tasks/configure_gitlab_ce.yml -------------------------------------------------------------------------------- /tasks/gitlab_ce_pre_upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/tasks/gitlab_ce_pre_upgrade.yml -------------------------------------------------------------------------------- /tasks/ldap_account.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/tasks/ldap_account.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/start_gitlab_ce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/tasks/start_gitlab_ce.yml -------------------------------------------------------------------------------- /templates/etc/ansible/facts.d/gitlab.fact.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/etc/ansible/facts.d/gitlab.fact.j2 -------------------------------------------------------------------------------- /templates/etc/default/gitlab.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/etc/default/gitlab.j2 -------------------------------------------------------------------------------- /templates/etc/logrotate.d/gitlab.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/etc/logrotate.d/gitlab.j2 -------------------------------------------------------------------------------- /templates/etc/systemd/system/gitlab-gitaly.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/etc/systemd/system/gitlab-gitaly.service.j2 -------------------------------------------------------------------------------- /templates/etc/systemd/system/gitlab-mailroom.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/etc/systemd/system/gitlab-mailroom.service.j2 -------------------------------------------------------------------------------- /templates/etc/systemd/system/gitlab-pages.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/etc/systemd/system/gitlab-pages.service.j2 -------------------------------------------------------------------------------- /templates/etc/systemd/system/gitlab-sidekiq.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/etc/systemd/system/gitlab-sidekiq.service.j2 -------------------------------------------------------------------------------- /templates/etc/systemd/system/gitlab-unicorn.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/etc/systemd/system/gitlab-unicorn.service.j2 -------------------------------------------------------------------------------- /templates/etc/systemd/system/gitlab-workhorse.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/etc/systemd/system/gitlab-workhorse.service.j2 -------------------------------------------------------------------------------- /templates/etc/systemd/system/gitlab.slice.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/etc/systemd/system/gitlab.slice.j2 -------------------------------------------------------------------------------- /templates/var/local/git/gitaly/config.toml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/var/local/git/gitaly/config.toml.j2 -------------------------------------------------------------------------------- /templates/var/local/git/gitconfig.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/var/local/git/gitconfig.j2 -------------------------------------------------------------------------------- /templates/var/local/git/gitlab-shell/config.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/var/local/git/gitlab-shell/config.yml.j2 -------------------------------------------------------------------------------- /templates/var/local/git/gitlab/config/database.postgresql.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/var/local/git/gitlab/config/database.postgresql.yml.j2 -------------------------------------------------------------------------------- /templates/var/local/git/gitlab/config/gitlab.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/var/local/git/gitlab/config/gitlab.yml.j2 -------------------------------------------------------------------------------- /templates/var/local/git/gitlab/config/initializers/rack_attack.rb.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/var/local/git/gitlab/config/initializers/rack_attack.rb.j2 -------------------------------------------------------------------------------- /templates/var/local/git/gitlab/config/unicorn.rb.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debops/ansible-gitlab/HEAD/templates/var/local/git/gitlab/config/unicorn.rb.j2 --------------------------------------------------------------------------------