This is an automated email from the ASF dual-hosted git repository. astefanutti pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 67f100dac895829d54f3f57233cbf03e930e8e33 Author: phantomjinx <[email protected]> AuthorDate: Fri Nov 26 18:34:41 2021 +0000 Fix: Renaming of operator to camel-k requires modifying default operator name * Operations like uninstall fail to remove the CSV due to the name change --- pkg/util/olm/operator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/olm/operator.go b/pkg/util/olm/operator.go index a54a8a7..295e988 100644 --- a/pkg/util/olm/operator.go +++ b/pkg/util/olm/operator.go @@ -42,7 +42,7 @@ import ( // The following properties can be overridden at build time via ldflags // DefaultOperatorName is the Camel K operator name in OLM. -var DefaultOperatorName = "camel-k-operator" +var DefaultOperatorName = "camel-k" // DefaultPackage is the Camel K package in OLM. var DefaultPackage = "camel-k"
