This is an automated email from the ASF dual-hosted git repository.
pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
The following commit(s) were added to refs/heads/main by this push:
new 839752249 chore(api): clarify scope of variables
839752249 is described below
commit 839752249a687957569f8ba5e7e8c3d094f1f831
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