initial commit

This commit is contained in:
Riedel
2026-08-19 09:53:22 +02:00
commit 6d707eca87
23 changed files with 671 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# {{ ansible_managed }}
external_url '{{ gitlab_install_external_url }}'
letsencrypt['enable'] = {{ gitlab_install_letsencrypt_enabled | lower }}
gitlab_rails['initial_root_password'] = '{{ gitlab_root_password }}'
{% if gitlab_install_reduce_memory_footprint %}
# Reduced footprint for a single small VM
puma['worker_processes'] = {{ gitlab_install_puma_workers }}
sidekiq['max_concurrency'] = {{ gitlab_install_sidekiq_concurrency }}
prometheus_monitoring['enable'] = false
grafana['enable'] = false
{% endif %}