Commit 4488b592 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Merge branch 'knative-update' into 'master'

Knative version bump 0.2.2 -> 0.3.0

See merge request gitlab-org/gitlab-ce!26459
parents 335c925d ae49284b
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module Clusters module Clusters
module Applications module Applications
class Knative < ActiveRecord::Base class Knative < ActiveRecord::Base
VERSION = '0.2.2'.freeze VERSION = '0.3.0'.freeze
REPOSITORY = 'https://storage.googleapis.com/triggermesh-charts'.freeze REPOSITORY = 'https://storage.googleapis.com/triggermesh-charts'.freeze
METRICS_CONFIG = 'https://storage.googleapis.com/triggermesh-charts/istio-metrics.yaml'.freeze METRICS_CONFIG = 'https://storage.googleapis.com/triggermesh-charts/istio-metrics.yaml'.freeze
FETCH_IP_ADDRESS_DELAY = 30.seconds FETCH_IP_ADDRESS_DELAY = 30.seconds
...@@ -86,7 +86,7 @@ module Clusters ...@@ -86,7 +86,7 @@ module Clusters
end end
def ingress_service def ingress_service
cluster.kubeclient.get_service('knative-ingressgateway', 'istio-system') cluster.kubeclient.get_service('istio-ingressgateway', 'istio-system')
end end
def services_for(ns: namespace) def services_for(ns: namespace)
......
---
title: Knative version bump 0.2.2 -> 0.3.0
merge_request: 26459
author: Chris Baumbauer
type: changed
...@@ -107,7 +107,7 @@ describe Clusters::Applications::Knative do ...@@ -107,7 +107,7 @@ describe Clusters::Applications::Knative do
subject { knative.install_command } subject { knative.install_command }
it 'should be initialized with latest version' do it 'should be initialized with latest version' do
expect(subject.version).to eq('0.2.2') expect(subject.version).to eq('0.3.0')
end end
it_behaves_like 'a command' it_behaves_like 'a command'
......
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