2020-12-14 20:57:09 +00:00
|
|
|
---
|
2020-12-18 07:39:37 +00:00
|
|
|
gitlab_config_template: "etc/gitlab/rocky_gitlab.rb"
|
2020-12-17 21:47:46 +00:00
|
|
|
gitlab_domain: git.rockylinux.org
|
2020-12-18 06:40:14 +00:00
|
|
|
gitlab_external_url: "https://{{ gitlab_domain }}/"
|
2020-12-14 20:57:09 +00:00
|
|
|
|
|
|
|
# Location where all the git repositories will be stored.
|
|
|
|
gitlab_git_data_dir: "/var/opt/gitlab/git-data"
|
|
|
|
|
|
|
|
gitlab_backup_path: "/var/opt/gitlab/backups"
|
|
|
|
gitlab_edition: "gitlab-ee"
|
|
|
|
gitlab_redirect_http_to_https: "true"
|
|
|
|
|
|
|
|
# SSL Self-signed Certificate Configuration.
|
2020-12-18 06:40:14 +00:00
|
|
|
# Eventually we will have legitimate certificates to use, such as LetsEncrypt
|
2020-12-14 20:57:09 +00:00
|
|
|
gitlab_create_self_signed_cert: "true"
|
|
|
|
gitlab_self_signed_cert_subj: "/C=US/ST=Missouri/L=Saint Louis/O=IT/CN={{ gitlab_domain }}"
|
2020-12-18 06:40:14 +00:00
|
|
|
gitlab_ssl_certificate: "/etc/gitlab/ssl/{{ gitlab_domain }}.crt"
|
|
|
|
gitlab_ssl_certificate_key: "/etc/gitlab/ssl/{{ gitlab_domain }}.key"
|
2021-07-18 22:06:02 +00:00
|
|
|
gitlab_ssl_cert: "/etc/pki/tls/certs/{{ gitlab_domain }}.crt"
|
|
|
|
gitlab_ssl_key: "/etc/pki/tls/private/{{ gitlab_domain }}.key"
|
2021-07-18 22:17:49 +00:00
|
|
|
gitlab_ipa_cert: "true"
|
|
|
|
gitlab_certbot: "false"
|
2020-12-14 20:57:09 +00:00
|
|
|
|
2020-12-17 21:47:46 +00:00
|
|
|
# LDAP Configuration
|
|
|
|
gitlab_ldap_enabled: "true"
|
2021-01-18 01:49:28 +00:00
|
|
|
gitlab_ldap_host: "{{ rocky_ipaserver_lb }}"
|
2020-12-14 20:57:09 +00:00
|
|
|
gitlab_ldap_port: "389"
|
2020-12-17 21:47:46 +00:00
|
|
|
gitlab_ldap_uid: "uid"
|
|
|
|
gitlab_ldap_method: "start_tls"
|
2020-12-30 09:22:58 +00:00
|
|
|
gitlab_ldap_bind_dn: "{{ rocky_ldap_bind_dn }}"
|
|
|
|
gitlab_ldap_password: "{{ rocky_ldap_bind_pw }}"
|
|
|
|
gitlab_ldap_base: "{{ rocky_ldap_user_basedn }}"
|
|
|
|
gitlab_ldap_group_dn: "{{ rocky_ldap_group_basedn }}"
|
2021-01-24 02:45:58 +00:00
|
|
|
gitlab_ldap_admin_group: "gitadm"
|
2020-12-30 09:22:58 +00:00
|
|
|
gitlab_ldap_user_filter: "(&(objectClass=posixAccount)(memberOf=cn=gitusers,cn=groups,cn=accounts,dc=rockylinux,dc=org))"
|
2020-12-14 20:57:09 +00:00
|
|
|
|
|
|
|
gitlab_time_zone: "UTC"
|
|
|
|
|
|
|
|
# Validates Certifications when downloading Gitlab Installation repo
|
|
|
|
gitlab_download_validate_certs: true
|
|
|
|
|
|
|
|
# Email and SMTP configuration (For the future)
|
|
|
|
# Email configuration.
|
2021-07-09 19:29:19 +00:00
|
|
|
gitlab_email_enabled: "true"
|
|
|
|
gitlab_email_from: "git@rockylinux.org"
|
2020-12-14 20:57:09 +00:00
|
|
|
gitlab_email_display_name: "Gitlab"
|
2021-07-09 19:29:19 +00:00
|
|
|
gitlab_email_reply_to: "noreply@rockylinux.org"
|
2020-12-14 20:57:09 +00:00
|
|
|
# SMTP configuration
|
|
|
|
gitlab_smtp_enable: "false"
|
2020-12-18 06:40:14 +00:00
|
|
|
gitlab_smtp_address: "smtp.gmail.com"
|
|
|
|
gitlab_smtp_port: "587"
|
|
|
|
gitlab_smtp_user_name: "username@gmail.com"
|
|
|
|
gitlab_smtp_password: "whateverThisIs"
|
|
|
|
gitlab_smtp_domain: "gmail.com"
|
2020-12-14 20:57:09 +00:00
|
|
|
gitlab_smtp_authentication: "login"
|
|
|
|
gitlab_smtp_enable_starttls_auto: "true"
|
2020-12-18 06:40:14 +00:00
|
|
|
gitlab_smtp_tls: "true"
|
2020-12-14 20:57:09 +00:00
|
|
|
gitlab_smtp_openssl_verify_mode: "none"
|
2020-12-18 06:40:14 +00:00
|
|
|
gitlab_smtp_ca_path: "/etc/pki/tls/certs"
|
|
|
|
gitlab_smtp_ca_file: "/etc/pki/tls/certs/ca-bundle.crt"
|
2020-12-14 20:57:09 +00:00
|
|
|
|
|
|
|
# In case of reverse proxy
|
2021-07-18 22:02:50 +00:00
|
|
|
gitlab_nginx_listen_https: "true"
|
2020-12-14 20:57:09 +00:00
|
|
|
|
|
|
|
gitlab_default_theme: 2
|
2020-12-29 03:43:17 +00:00
|
|
|
|
2021-01-04 19:01:44 +00:00
|
|
|
gitlab_external_db: true
|
2020-12-29 03:43:17 +00:00
|
|
|
gitlab_external_db_host: db.rockylinux.org
|
|
|
|
gitlab_external_db_user: gitlab
|
2021-01-04 19:01:44 +00:00
|
|
|
gitlab_external_db_password: "{{ gitlab_db_pass }}"
|
2021-01-24 07:03:53 +00:00
|
|
|
|
2021-07-18 20:50:50 +00:00
|
|
|
gitlab_registry_enable: "true"
|
2021-07-18 19:15:10 +00:00
|
|
|
gitlab_registry_external_url: "https://git.rockylinux.org:5050"
|
|
|
|
gitlab_registry_nginx_ssl_certificate: "{{ gitlab_ssl_certificate }}"
|
2021-07-18 22:02:50 +00:00
|
|
|
gitlab_registry_nginx_ssl_certificate_key: "{{ gitlab_ssl_certificate_key }}"
|
2021-01-24 07:03:53 +00:00
|
|
|
gitlab_trusted_proxies:
|
|
|
|
- 10.100.20.20/32
|
2021-07-18 19:15:10 +00:00
|
|
|
|
|
|
|
ipa_getcert_requested_hostnames:
|
|
|
|
- name: "{{ ansible_fqdn }}"
|
|
|
|
owner: nginx
|
|
|
|
key_location: "{{ gitlab_ssl_key }}"
|
|
|
|
cert_location: "{{ gitlab_ssl_cert }}"
|
2021-07-18 22:02:50 +00:00
|
|
|
postcmd: "/usr/local/bin/fix_gitlab_certs.sh"
|
2021-07-18 19:15:10 +00:00
|
|
|
cnames:
|
|
|
|
- "git.rockylinux.org"
|
2021-08-30 05:02:24 +00:00
|
|
|
...
|