Skip to content
Snippets Groups Projects
Commit 37765572 authored by Andrejs Cunskis's avatar Andrejs Cunskis
Browse files

Merge branch 'mk-metrics-server-listen-address' into 'master'

Fix metrics server network address in scenario

See merge request gitlab-org/gitlab-qa!1018
parents dc25dbd1 b575341a
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -14,15 +14,14 @@ module Gitlab
gitlab.release = release
gitlab.network = 'test'
gitlab.name = 'gitlab'
gitlab.ports = [
"#{PUMA_METRICS_SERVER_PORT}:#{PUMA_METRICS_SERVER_PORT}",
"#{SIDEKIQ_METRICS_SERVER_PORT}:#{SIDEKIQ_METRICS_SERVER_PORT}"
]
gitlab.ports = [PUMA_METRICS_SERVER_PORT, SIDEKIQ_METRICS_SERVER_PORT]
 
gitlab.omnibus_configuration << <<~RUBY
puma['exporter_enabled'] = true
puma['exporter_address'] = '0.0.0.0'
puma['exporter_port'] = #{PUMA_METRICS_SERVER_PORT}
sidekiq['metrics_enabled'] = true
sidekiq['listen_address'] = '0.0.0.0'
sidekiq['listen_port'] = #{SIDEKIQ_METRICS_SERVER_PORT}
RUBY
 
Loading
Loading
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