You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on gitlab documentation and feedback from support, I realized that the boolean values passed to the gitlab.rb file are not being parsed properly due to a misplaced quotes. Gitlab expects bool values to be passed as is, without any quotation.
Usage examples:
postgres['enabled'] = 'false' -> Service still running visible via gitlab-ctl status
postgres['enabled'] = false -> Expected behaviour.
Based on gitlab documentation and feedback from support, I realized that the boolean values passed to the gitlab.rb file are not being parsed properly due to a misplaced quotes. Gitlab expects bool values to be passed as is, without any quotation.
Usage examples:
postgres['enabled'] = 'false' -> Service still running visible via gitlab-ctl status
postgres['enabled'] = false -> Expected behaviour.
Main reason: https://ruby-doc.org/core-2.3.0/String.html#method-i-inspect
puppet-gitlab/templates/gitlab.rb.erb
Line 34 in 1a1cc1e
The text was updated successfully, but these errors were encountered: