You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by as...@apache.org on 2021/01/13 15:40:00 UTC

[camel-k] branch master updated: fix: Do not filter Camel catalogs by runtime provider label

This is an automated email from the ASF dual-hosted git repository.

astefanutti pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/master by this push:
     new 045149f  fix: Do not filter Camel catalogs by runtime provider label
045149f is described below

commit 045149f70d4c01fa94118b831f4cc34f62dae6d2
Author: Antonin Stefanutti <an...@stefanutti.fr>
AuthorDate: Tue Jan 12 12:26:53 2021 +0100

    fix: Do not filter Camel catalogs by runtime provider label
---
 pkg/util/camel/camel_runtime.go | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/pkg/util/camel/camel_runtime.go b/pkg/util/camel/camel_runtime.go
index 2d6a345..2bd59d0 100644
--- a/pkg/util/camel/camel_runtime.go
+++ b/pkg/util/camel/camel_runtime.go
@@ -30,9 +30,6 @@ import (
 func LoadCatalog(ctx context.Context, client client.Client, namespace string, runtime v1.RuntimeSpec) (*RuntimeCatalog, error) {
 	options := []k8sclient.ListOption{
 		k8sclient.InNamespace(namespace),
-		k8sclient.MatchingLabels{
-			"camel.apache.org/runtime.provider": string(runtime.Provider),
-		},
 	}
 
 	list := v1.NewCamelCatalogList()