Commit 041a498c authored by Jan Provaznik's avatar Jan Provaznik

Merge branch '213372-update-prometheus-version' into 'master'

Update Prometheus helm chart version to 10.4.1

See merge request gitlab-org/gitlab!39681
parents 78d9736b 55c10785
......@@ -5,7 +5,7 @@ module Clusters
class Prometheus < ApplicationRecord
include PrometheusAdapter
VERSION = '9.5.2'
VERSION = '10.4.1'
self.table_name = 'clusters_applications_prometheus'
......
---
title: Update Prometheus helm chart version to 10.4.1
merge_request: 39681
author:
type: changed
......@@ -150,7 +150,7 @@ RSpec.describe Clusters::Applications::Prometheus do
it 'is initialized with 3 arguments' do
expect(subject.name).to eq('prometheus')
expect(subject.chart).to eq('stable/prometheus')
expect(subject.version).to eq('9.5.2')
expect(subject.version).to eq('10.4.1')
expect(subject).to be_rbac
expect(subject.files).to eq(prometheus.files)
end
......@@ -167,7 +167,7 @@ RSpec.describe Clusters::Applications::Prometheus do
let(:prometheus) { create(:clusters_applications_prometheus, :errored, version: '2.0.0') }
it 'is initialized with the locked version' do
expect(subject.version).to eq('9.5.2')
expect(subject.version).to eq('10.4.1')
end
end
......@@ -238,7 +238,7 @@ RSpec.describe Clusters::Applications::Prometheus do
it 'is initialized with 3 arguments' do
expect(patch_command.name).to eq('prometheus')
expect(patch_command.chart).to eq('stable/prometheus')
expect(patch_command.version).to eq('9.5.2')
expect(patch_command.version).to eq('10.4.1')
expect(patch_command.files).to eq(prometheus.files)
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment