mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-22 05:01:27 +00:00
cleanup
This commit is contained in:
parent
f5afcc6d44
commit
1a0cbb75e9
@ -30,9 +30,17 @@
|
|||||||
state: present
|
state: present
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
|
- role: rockylinux.ipagetcert
|
||||||
|
state: present
|
||||||
|
when:
|
||||||
|
- "not gitlab_create_self_signed_cert|bool"
|
||||||
|
- "gitlab_ipa_cert|bool"
|
||||||
|
|
||||||
- role: geerlingguy.certbot
|
- role: geerlingguy.certbot
|
||||||
state: present
|
state: present
|
||||||
when: not gitlab_create_self_signed_cert
|
when:
|
||||||
|
- "not gitlab_create_self_signed_cert|bool"
|
||||||
|
- "gitlab_certbot|bool"
|
||||||
|
|
||||||
- role: geerlingguy.gitlab
|
- role: geerlingguy.gitlab
|
||||||
state: present
|
state: present
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
group: root
|
group: root
|
||||||
mode: '0644'
|
mode: '0644'
|
||||||
remote_src: true
|
remote_src: true
|
||||||
when: not gitlab_create_self_signed_cert
|
when: "not gitlab_create_self_signed_cert|bool"
|
||||||
|
|
||||||
- name: Copy keys from ipa-getcert directory
|
- name: Copy keys from ipa-getcert directory
|
||||||
copy:
|
copy:
|
||||||
@ -17,7 +17,7 @@
|
|||||||
group: root
|
group: root
|
||||||
mode: '0600'
|
mode: '0600'
|
||||||
remote_src: true
|
remote_src: true
|
||||||
when: not gitlab_create_self_signed_cert
|
when: "not gitlab_create_self_signed_cert|bool"
|
||||||
|
|
||||||
- name: Symlink the IPA CA
|
- name: Symlink the IPA CA
|
||||||
file:
|
file:
|
||||||
@ -43,7 +43,7 @@
|
|||||||
register: gitlab_ctl_result
|
register: gitlab_ctl_result
|
||||||
changed_when: "gitlab_ctl_result.rc == 0"
|
changed_when: "gitlab_ctl_result.rc == 0"
|
||||||
when:
|
when:
|
||||||
- gitlab_reconfigure_only
|
- "gitlab_reconfigure_only is defined and (gitlab_reconfigure_only|bool)"
|
||||||
|
|
||||||
- name: Add firewall rules - http/s
|
- name: Add firewall rules - http/s
|
||||||
ansible.posix.firewalld:
|
ansible.posix.firewalld:
|
||||||
|
@ -18,6 +18,8 @@ gitlab_ssl_certificate: "/etc/gitlab/ssl/{{ gitlab_domain }}.crt"
|
|||||||
gitlab_ssl_certificate_key: "/etc/gitlab/ssl/{{ gitlab_domain }}.key"
|
gitlab_ssl_certificate_key: "/etc/gitlab/ssl/{{ gitlab_domain }}.key"
|
||||||
gitlab_ssl_cert: "/etc/pki/tls/certs/{{ gitlab_domain }}.crt"
|
gitlab_ssl_cert: "/etc/pki/tls/certs/{{ gitlab_domain }}.crt"
|
||||||
gitlab_ssl_key: "/etc/pki/tls/private/{{ gitlab_domain }}.key"
|
gitlab_ssl_key: "/etc/pki/tls/private/{{ gitlab_domain }}.key"
|
||||||
|
gitlab_ipa_cert: "true"
|
||||||
|
gitlab_certbot: "false"
|
||||||
|
|
||||||
# LDAP Configuration
|
# LDAP Configuration
|
||||||
gitlab_ldap_enabled: "true"
|
gitlab_ldap_enabled: "true"
|
||||||
|
Loading…
Reference in New Issue
Block a user