This is an automated email from the ASF dual-hosted git repository. pcongiusti pushed a commit to branch squakez-patch-1 in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit b5224b534dc3b06ecc7fe5ec2a012225026f7583 Author: Pasquale Congiusti <[email protected]> AuthorDate: Mon Oct 27 13:08:01 2025 +0100 chore(api): clarify scope of variables --- crds/pkg/apis/camel/v1/kamelet_types.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/crds/pkg/apis/camel/v1/kamelet_types.go b/crds/pkg/apis/camel/v1/kamelet_types.go index 3a571d462..31e46bdb4 100644 --- a/crds/pkg/apis/camel/v1/kamelet_types.go +++ b/crds/pkg/apis/camel/v1/kamelet_types.go @@ -49,8 +49,12 @@ var ( reservedKameletNames = map[string]bool{"source": true, "sink": true} // KameletIDProperty used to identify. KameletIDProperty = "id" - // KameletVersionProperty used to specify the version to use. + // KameletVersionProperty used to specify the version to use. NOTE: this parameter is exclusive use of the operator + // and should not be used by final users. KameletVersionProperty = "kameletVersion" + // KameletNamespaceProperty used to specify the namespace to use. NOTE: this parameter is exclusive use of the operator + // and should not be used by final users. + KameletNamespaceProperty = "kameletNamespace" ) // +genclient
