Skip to content

Commit

Permalink
Merge branch 'lewer-gitlab-ssl-mode'
Browse files Browse the repository at this point in the history
  • Loading branch information
drybjed committed Apr 22, 2024
2 parents c654fc6 + 932de95 commit 904b3ed
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,16 @@ Updates of upstream application versions
which needs to be synchronized with the Elasticsearch configuration via
Ansible inventory (Kibana can be installed separately from Elasticsearch).

Fixed
~~~~~

:ref:`debops.gitlab` role
'''''''''''''''''''''''''

- Fixed an issue with the :file:`/etc/gitlab/ssl/` directory changing its mode
from 0775 set by the role to 0755 set by the :command:`gitlab-ctl
reconfigure` command, making the role not idempotent.

Removed
~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/gitlab/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
state: 'directory'
mode: '{{ item.mode }}'
loop:
- { path: '/etc/gitlab/ssl', mode: '0775' }
- { path: '/etc/gitlab/ssl', mode: '0755' }
- { path: '/etc/gitlab/trusted-certs', mode: '0755' }

- name: Manage CA certificate symlinks in GitLab environment
Expand Down

0 comments on commit 904b3ed

Please sign in to comment.