Commit 6859fb48 authored by Lucas Charles's avatar Lucas Charles

Bump ingress chart to 1.22.1

parent 81d60eb7
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module Clusters module Clusters
module Applications module Applications
class Ingress < ApplicationRecord class Ingress < ApplicationRecord
VERSION = '1.1.2' VERSION = '1.22.1'
self.table_name = 'clusters_applications_ingress' self.table_name = 'clusters_applications_ingress'
......
--- ---
title: Unpin ingress image version, default to installing latest title: Unpin ingress image version, upgrade chart to 1.22.1
merge_request: 18047 merge_request: 18047
author: author:
type: added type: added
...@@ -96,7 +96,7 @@ describe Clusters::Applications::Ingress do ...@@ -96,7 +96,7 @@ describe Clusters::Applications::Ingress do
it 'is initialized with ingress arguments' do it 'is initialized with ingress arguments' do
expect(subject.name).to eq('ingress') expect(subject.name).to eq('ingress')
expect(subject.chart).to eq('stable/nginx-ingress') expect(subject.chart).to eq('stable/nginx-ingress')
expect(subject.version).to eq('1.1.2') expect(subject.version).to eq('1.22.1')
expect(subject).to be_rbac expect(subject).to be_rbac
expect(subject.files).to eq(ingress.files) expect(subject.files).to eq(ingress.files)
end end
...@@ -113,7 +113,7 @@ describe Clusters::Applications::Ingress do ...@@ -113,7 +113,7 @@ describe Clusters::Applications::Ingress do
let(:ingress) { create(:clusters_applications_ingress, :errored, version: 'nginx') } let(:ingress) { create(:clusters_applications_ingress, :errored, version: 'nginx') }
it 'is initialized with the locked version' do it 'is initialized with the locked version' do
expect(subject.version).to eq('1.1.2') expect(subject.version).to eq('1.22.1')
end end
end end
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