You've already forked ansible-awx-gitlab
initial commit
This commit is contained in:
14
roles/gitlab_install/templates/gitlab.rb.j2
Normal file
14
roles/gitlab_install/templates/gitlab.rb.j2
Normal 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 %}
|
||||
Reference in New Issue
Block a user