diff options
author | Steve Azzopardi <sazzopardi@gitlab.com> | 2019-04-19 11:26:42 +0200 |
---|---|---|
committer | Steve Azzopardi <sazzopardi@gitlab.com> | 2019-04-19 11:26:42 +0200 |
commit | e62f1e99ec9971eb9dc9de1a8c96ac3fce9e0ae4 (patch) | |
tree | fab6303fba09b04a203bd656cd9aff1186c305d5 /spec/models/clusters/applications | |
parent | 6376f78445300ee42c5a181f63e5b332d8266b0a (diff) | |
download | gitlab-ce-e62f1e99ec9971eb9dc9de1a8c96ac3fce9e0ae4.tar.gz |
Update GitLab Runner Helm Chart to 0.4.0update-gitlab-runner-helm-chart-to-0-4-0
Diffstat (limited to 'spec/models/clusters/applications')
-rw-r--r-- | spec/models/clusters/applications/runner_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/clusters/applications/runner_spec.rb b/spec/models/clusters/applications/runner_spec.rb index 399a13f82cb..de406211a5b 100644 --- a/spec/models/clusters/applications/runner_spec.rb +++ b/spec/models/clusters/applications/runner_spec.rb @@ -24,7 +24,7 @@ describe Clusters::Applications::Runner do it 'is initialized with 4 arguments' do expect(subject.name).to eq('runner') expect(subject.chart).to eq('runner/gitlab-runner') - expect(subject.version).to eq('0.3.0') + expect(subject.version).to eq('0.4.0') expect(subject).to be_rbac expect(subject.repository).to eq('https://charts.gitlab.io') expect(subject.files).to eq(gitlab_runner.files) @@ -42,7 +42,7 @@ describe Clusters::Applications::Runner do let(:gitlab_runner) { create(:clusters_applications_runner, :errored, runner: ci_runner, version: '0.1.13') } it 'is initialized with the locked version' do - expect(subject.version).to eq('0.3.0') + expect(subject.version).to eq('0.4.0') end end end |