summaryrefslogtreecommitdiff
path: root/app/models/clusters/applications
diff options
context:
space:
mode:
authorMayra Cabrera <mcabrera@gitlab.com>2018-06-20 12:10:14 +0000
committerKamil TrzciƄski (Conference till 20th) <ayufan@ayufan.eu>2018-06-20 12:10:14 +0000
commit5841e92390051065d89a5b0602fa326eda018cd9 (patch)
tree850ba8efdd97c5254dc260b1788bc872f292a5b8 /app/models/clusters/applications
parent3b38b4affb4f3525aa7f5d245008e43d33c73c41 (diff)
downloadgitlab-ce-5841e92390051065d89a5b0602fa326eda018cd9.tar.gz
Resolve "Unable to install Prometheus on Clusters: 'Error: Chart incompatible with Tiller v2.7.0'"
Diffstat (limited to 'app/models/clusters/applications')
-rw-r--r--app/models/clusters/applications/prometheus.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/models/clusters/applications/prometheus.rb b/app/models/clusters/applications/prometheus.rb
index c702c4ee807..48137c2ed68 100644
--- a/app/models/clusters/applications/prometheus.rb
+++ b/app/models/clusters/applications/prometheus.rb
@@ -3,7 +3,7 @@ module Clusters
class Prometheus < ActiveRecord::Base
include PrometheusAdapter
- VERSION = "2.0.0".freeze
+ VERSION = '6.7.3'.freeze
self.table_name = 'clusters_applications_prometheus'
@@ -37,6 +37,7 @@ module Clusters
Gitlab::Kubernetes::Helm::InstallCommand.new(
name,
chart: chart,
+ version: version,
values: values
)
end