-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release-1.13] fix: triggers use correct consumer group id generated …
…from template (#3779) (#3800) * fix: triggers use correct consumer group id generated from template (#3779) * add rekt test to catch trigger cg being wrong Signed-off-by: Calum Murray <[email protected]> * fix cm key name Signed-off-by: Calum Murray <[email protected]> * fix: trigger controller now watches for changes to the config-kafka-features cm Signed-off-by: Calum Murray <[email protected]> * fixed unit test Signed-off-by: Calum Murray <[email protected]> * also watch cm for namespaced triggers Signed-off-by: Calum Murray <[email protected]> * goimports Signed-off-by: Calum Murray <[email protected]> * don't use manifest.InstallYamlFS because it deletes the config-kafka-features cm after the test Signed-off-by: Calum Murray <[email protected]> --------- Signed-off-by: Calum Murray <[email protected]> * cleanup: consumergroup template test does not modify configmap now (#3782) * cleanup: consumergroup template test does not modify configmap now Signed-off-by: Calum Murray <[email protected]> * account for different possible cm keys Signed-off-by: Calum Murray <[email protected]> --------- Signed-off-by: Calum Murray <[email protected]> --------- Signed-off-by: Calum Murray <[email protected]>
- Loading branch information
Showing
11 changed files
with
197 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 2024 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-kafka-features | ||
namespace: knative-eventing | ||
data: | ||
dispatcher-rate-limiter: "disabled" | ||
dispatcher-ordered-executor-metrics: "disabled" | ||
controller-autoscaler-keda: "disabled" | ||
triggers-consumergroup-template: "test-{{ .Namespace }}-{{ .Name }}-trigger" | ||
brokers-topic-template: "knative-broker-{{ .Namespace }}-{{ .Name }}" | ||
channels-topic-template: "knative-messaging-kafka.{{ .Namespace }}.{{ .Name }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 2024 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-kafka-features | ||
namespace: knative-eventing | ||
data: | ||
dispatcher-rate-limiter: "disabled" | ||
dispatcher-ordered-executor-metrics: "disabled" | ||
controller-autoscaler-keda: "disabled" | ||
triggers-consumergroup-template: "knative-trigger-{{ .Namespace }}-{{ .Name }}" | ||
brokers-topic-template: "knative-broker-{{ .Namespace }}-{{ .Name }}" | ||
channels-topic-template: "knative-messaging-kafka.{{ .Namespace }}.{{ .Name }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters