Skip to content
Snippets Groups Projects
Commit db48baf6 authored by Ian Baum's avatar Ian Baum
Browse files

Merge branch 'prometheus-upgrade-home-dir' into 'master'

Get prometheus home directory from node attributes for prometheus-upgrade

Closes #4468

See merge request gitlab-org/omnibus-gitlab!3395
parents 62ad50bf 1c130baa
No related branches found
No related tags found
No related merge requests found
---
title: Get prometheus home directory from node attributes
merge_request: 3395
author:
type: fixed
require 'optparse'
require 'fileutils'
require 'mixlib/shellout'
require_relative 'util'
module GitlabCtl
class PrometheusUpgrade
......@@ -63,4 +64,6 @@
class << self
def parse_options(args)
node_attributes = GitlabCtl::Util.get_node_attributes
options = {
......@@ -66,5 +69,5 @@
options = {
home_dir: "/var/opt/gitlab/prometheus",
home_dir: node_attributes.dig(:gitlab, :prometheus, :home),
skip_reconfigure: false,
wait: true,
}
......
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