Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion config/400-config-br-defaults.yaml

This file was deleted.

28 changes: 28 additions & 0 deletions config/400-config-br-defaults.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Copyright 2020 The Knative Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

apiVersion: v1
kind: ConfigMap
metadata:
name: config-br-defaults
namespace: knative-eventing
data:
# Configuration for defaulting channels that do not specify CRD implementations.
default-br-config: |
clusterDefault:
brokerClass: ChannelBasedBroker
apiVersion: v1
kind: ConfigMap
name: config-br-default-channel
namespace: knative-eventing

This file was deleted.

1 change: 0 additions & 1 deletion config/brokers/channel-broker/400-config-br-defaults.yaml

This file was deleted.

28 changes: 0 additions & 28 deletions config/brokers/channel-broker/configmaps/default-broker.yaml

This file was deleted.

This file was deleted.

This file was deleted.

23 changes: 0 additions & 23 deletions config/brokers/mt-channel-broker/configmaps/default-imc.yaml

This file was deleted.

3 changes: 1 addition & 2 deletions hack/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ readonly COMPONENTS

declare -A RELEASES
RELEASES=(
["eventing.yaml"]="eventing-core.yaml channel-broker.yaml in-memory-channel.yaml"
["eventing-mt.yaml"]="eventing-core.yaml mt-channel-broker.yaml in-memory-channel.yaml"
["eventing.yaml"]="eventing-core.yaml channel-broker.yaml mt-channel-broker.yaml in-memory-channel.yaml"
)
readonly RELEASES

Expand Down
3 changes: 3 additions & 0 deletions test/e2e-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ readonly IN_MEMORY_CHANNEL_CRD_CONFIG_DIR="config/channels/in-memory-channel"

# MT Channel Based Broker config.
readonly MT_CHANNEL_BASED_BROKER_CONFIG_DIR="config/brokers/mt-channel-broker"
# MT Channel Based Broker config.
readonly MT_CHANNEL_BASED_BROKER_DEFAULT_CONFIG="test/config/mt-channel-broker.yaml"

# Channel Based Broker Controller.
readonly CHANNEL_BASED_BROKER_CONTROLLER="config/brokers/channel-broker"
Expand All @@ -60,6 +62,7 @@ function install_broker() {
}

function install_mt_broker() {
ko apply --strict -f ${MT_CHANNEL_BASED_BROKER_DEFAULT_CONFIG} || return 1
ko apply --strict -f ${MT_CHANNEL_BASED_BROKER_CONFIG_DIR} || return 1
wait_until_pods_running knative-eventing || fail_test "Knative Eventing with MT Broker did not come up"
}
Expand Down