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
commit cd6cf55150f7dc64d9cd32530213d671dfe25d5f Author: nferraro <[email protected]> AuthorDate: Wed Sep 18 15:35:43 2019 +0200 Fix #792: add missing mapping --- pkg/client/fastmapper.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/client/fastmapper.go b/pkg/client/fastmapper.go index 71eaa65..60ee452 100644 --- a/pkg/client/fastmapper.go +++ b/pkg/client/fastmapper.go @@ -18,6 +18,7 @@ var allowedAPIGroups = map[string]bool{ "apiextensions.k8s.io": true, "apps": true, "camel.apache.org": true, + "project.openshift.io": true, // used in e2e tests "rbac.authorization.k8s.io": true, }
