diff options
author | Grzegorz Bizon <grzegorz@gitlab.com> | 2019-06-19 13:12:54 +0000 |
---|---|---|
committer | Grzegorz Bizon <grzegorz@gitlab.com> | 2019-06-19 13:12:54 +0000 |
commit | 7fa94651f3ac5e9548091eaa59f44c74ebd58473 (patch) | |
tree | 66498af905e0a75eac9b4b0789b78a25f19d33fa | |
parent | 22755a4aa2d2884629ef9050227ef461574d9d94 (diff) | |
parent | d3db5d1b67250055a08254d1895190a7817a7e3e (diff) | |
download | gitlab-ce-7fa94651f3ac5e9548091eaa59f44c74ebd58473.tar.gz |
Merge branch 'knative-0.6' into 'master'
Knative version bump 0.5 -> 0.6
See merge request gitlab-org/gitlab-ce!28798
-rw-r--r-- | app/models/clusters/applications/knative.rb | 2 | ||||
-rw-r--r-- | changelogs/unreleased/knative-0-6.yml | 5 | ||||
-rw-r--r-- | spec/models/clusters/applications/knative_spec.rb | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/app/models/clusters/applications/knative.rb b/app/models/clusters/applications/knative.rb index d5a3bd62e3d..5df4812bd25 100644 --- a/app/models/clusters/applications/knative.rb +++ b/app/models/clusters/applications/knative.rb @@ -3,7 +3,7 @@ module Clusters module Applications class Knative < ApplicationRecord - VERSION = '0.5.0'.freeze + VERSION = '0.6.0'.freeze REPOSITORY = 'https://storage.googleapis.com/triggermesh-charts'.freeze METRICS_CONFIG = 'https://storage.googleapis.com/triggermesh-charts/istio-metrics.yaml'.freeze FETCH_IP_ADDRESS_DELAY = 30.seconds diff --git a/changelogs/unreleased/knative-0-6.yml b/changelogs/unreleased/knative-0-6.yml new file mode 100644 index 00000000000..66c5c7f343d --- /dev/null +++ b/changelogs/unreleased/knative-0-6.yml @@ -0,0 +1,5 @@ +--- +title: Knative version bump 0.5 -> 0.6 +merge_request: 28798 +author: Chris Baumbauer +type: changed diff --git a/spec/models/clusters/applications/knative_spec.rb b/spec/models/clusters/applications/knative_spec.rb index b38cf96de7e..7f4819cbb9a 100644 --- a/spec/models/clusters/applications/knative_spec.rb +++ b/spec/models/clusters/applications/knative_spec.rb @@ -112,7 +112,7 @@ describe Clusters::Applications::Knative do subject { knative.install_command } it 'is initialized with latest version' do - expect(subject.version).to eq('0.5.0') + expect(subject.version).to eq('0.6.0') end it_behaves_like 'a command' |