Skip to content
Snippets Groups Projects
Commit 03c5f712 authored by Balasankar 'Balu' C's avatar Balasankar 'Balu' C
Browse files

Add role for Spamcheck


Changelog: added
Signed-off-by: default avatarBalasankar "Balu" C <balasankar@gitlab.com>
parent 6be79346
No related branches found
No related tags found
2 merge requests!67heptapod#675: making 0.31 the new stable,!66GitLab 14.9
......@@ -180,3 +180,17 @@
Configures the server with Sidekiq service.
*By default, enables no other services.*
### Spamcheck Roles
> [Introduced](https://gitlab.com/gitlab-org/omnibus-gitlab/-/merge_requests/5893) in GitLab 14.9.
Spamcheck roles are used to setup and configure Spamcheck services. For additional
information, see the
[Spamcheck documentation](https://docs.gitlab.com/ee/user/admin_area/reporting/spamcheck.html)
- **spamcheck_role** (`gitlab-ee`)
Configures the server with spamcheck and spam-classifier services.
*By default, enables no other services.*
......@@ -41,6 +41,7 @@
role('consul').use { ConsulRole }
role('pages').use { PagesRole }
role('sidekiq').use { SidekiqRole }
role('spamcheck').use { SpamcheckRole }
## Attributes directly on the node
attribute('package').use { Package }
......
# Copyright:: Copyright (c) 2020 GitLab Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
module SpamcheckRole
def self.load_role
return unless Gitlab['spamcheck_role']['enable']
# Turning off GitLab Rails unless explicitly enabled.
Gitlab['gitlab_rails']['enable'] ||= false
Services.enable_group('spamcheck_role')
end
end
......@@ -54,6 +54,6 @@
service 'pgbouncer_exporter', groups: %w(pgbouncer_role monitoring)
service 'patroni', groups: %w(postgres patroni_role)
service 'consul', groups: %w(consul_role ha pgbouncer_role patroni_role)
service 'spamcheck'
service 'spamcheck', groups: %w(spamcheck_role)
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment