Skip to content
Snippets Groups Projects
Commit b36c536b authored by Marin Jankovski's avatar Marin Jankovski
Browse files

Merge branch '2987-deprecate-mattermost' into 'master'

Add notice for deprecated Mattermost settings

Closes #2987

See merge request gitlab-org/omnibus-gitlab!2127
parents 6c236550 50db2b31
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,7 @@
module GitlabMattermost
class << self
def parse_variables
detect_deprecated_settings
parse_mattermost_external_url
parse_gitlab_mattermost
end
......@@ -83,5 +84,50 @@
Gitlab['mattermost_nginx']['enable'] = true if Gitlab['mattermost_nginx']['enable'].nil?
end
def supported_configuration
# List of necessary settings that are supported
%w(enable
username
group
uid
gid
home
database_name
env
host
port
service_site_url
service_address
service_port
service_use_ssl
team_site_name
sql_driver_name
sql_data_source
sql_data_source_replicas
sql_at_rest_encrypt_key
log_file_directory
file_directory
gitlab_enable
gitlab_secret
gitlab_id
gitlab_scope
gitlab_auth_endpoint
gitlab_token_endpoint
gitlab_user_api_endpoint
email_invite_salt
file_public_link_salt)
end
def detect_deprecated_settings
deprecated_list = Gitlab['mattermost'].keys - supported_configuration
deprecated_list = deprecated_list.map { |n| "mattermost['#{n}']" }
unless deprecated_list.empty? # rubocop:disable Style/GuardClause
LoggingHelper.deprecation "* Mattermost\n" \
"\tDetected deprecated Mattermost settings. Starting with GitLab 11.0, these settings are no longer supported.\n" \
"\tCheck http://docs.gitlab.com/omnibus/gitlab-mattermost/#upgrading-gitlab-mattermost-from-versions-prior-to-11-0 for details. \n\n\t* " +
deprecated_list.join("\n\t* ")
end
end
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