Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: fix kamel bind command syntax and use Channel instead of InMemoryChannel #521

Merged
merged 2 commits into from
Sep 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/modules/ROOT/kamelet.adoc.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The `{{ .Kamelet.ObjectMeta.Name }}` Kamelet can be used as intermediate step in
{{ else -}}
The `{{ .Kamelet.ObjectMeta.Name }}` Kamelet can be used as Knative {{ index .Kamelet.ObjectMeta.Labels "camel.apache.org/kamelet.type" }} by binding it to a Knative object.
{{ end }}
{{- .SetVal "RefApiVersion" "messaging.knative.dev/v1" -}}{{- .SetVal "RefKind" "InMemoryChannel" -}}{{- .SetVal "RefName" "mychannel" }}
{{- .SetVal "RefApiVersion" "messaging.knative.dev/v1" -}}{{- .SetVal "RefKind" "Channel" -}}{{- .SetVal "RefName" "mychannel" }}
.{{ .Kamelet.ObjectMeta.Name }}-binding.yaml
[source,yaml]
----
Expand Down Expand Up @@ -55,7 +55,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
{{ .ExampleKamelBindCommand "channel/mychannel" }}
{{ .ExampleKamelBindCommand "channel:mychannel" }}
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/avro-deserialize-action.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
schema: "{\"type\": \"record\", \"namespace\": \"com.example\", \"name\": \"FullName\", \"fields\": [{\"name\": \"first\", \"type\": \"string\"},{\"name\": \"last\", \"type\": \"string\"}]}"
sink:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel

Expand Down Expand Up @@ -82,7 +82,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind timer-source?message=Hello --step avro-deserialize-action -p "step-0.schema={\"type\": \"record\", \"namespace\": \"com.example\", \"name\": \"FullName\", \"fields\": [{\"name\": \"first\", \"type\": \"string\"},{\"name\": \"last\", \"type\": \"string\"}]}" channel/mychannel
kamel bind timer-source?message=Hello --step avro-deserialize-action -p "step-0.schema={\"type\": \"record\", \"namespace\": \"com.example\", \"name\": \"FullName\", \"fields\": [{\"name\": \"first\", \"type\": \"string\"},{\"name\": \"last\", \"type\": \"string\"}]}" channel:mychannel
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/avro-serialize-action.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
schema: "{\"type\": \"record\", \"namespace\": \"com.example\", \"name\": \"FullName\", \"fields\": [{\"name\": \"first\", \"type\": \"string\"},{\"name\": \"last\", \"type\": \"string\"}]}"
sink:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel

Expand Down Expand Up @@ -82,7 +82,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind timer-source?message=Hello --step avro-serialize-action -p "step-0.schema={\"type\": \"record\", \"namespace\": \"com.example\", \"name\": \"FullName\", \"fields\": [{\"name\": \"first\", \"type\": \"string\"},{\"name\": \"last\", \"type\": \"string\"}]}" channel/mychannel
kamel bind timer-source?message=Hello --step avro-serialize-action -p "step-0.schema={\"type\": \"record\", \"namespace\": \"com.example\", \"name\": \"FullName\", \"fields\": [{\"name\": \"first\", \"type\": \"string\"},{\"name\": \"last\", \"type\": \"string\"}]}" channel:mychannel
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-cloudwatch-sink.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ metadata:
spec:
source:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
sink:
Expand Down Expand Up @@ -87,7 +87,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind channel/mychannel aws-cloudwatch-sink -p "sink.accessKey=The Access Key" -p "sink.cw_namespace=The Cloud Watch Namespace" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
kamel bind channel:mychannel aws-cloudwatch-sink -p "sink.accessKey=The Access Key" -p "sink.cw_namespace=The Cloud Watch Namespace" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-ddb-streams-source.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
table: "The Table"
sink:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel

Expand Down Expand Up @@ -81,7 +81,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind aws-ddb-streams-source -p "source.accessKey=The Access Key" -p "source.region=eu-west-1" -p "source.secretKey=The Secret Key" -p "source.table=The Table" channel/mychannel
kamel bind aws-ddb-streams-source -p "source.accessKey=The Access Key" -p "source.region=eu-west-1" -p "source.secretKey=The Secret Key" -p "source.table=The Table" channel:mychannel
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-ec2-sink.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ metadata:
spec:
source:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
sink:
Expand Down Expand Up @@ -80,7 +80,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind channel/mychannel aws-ec2-sink -p "sink.accessKey=The Access Key" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
kamel bind channel:mychannel aws-ec2-sink -p "sink.accessKey=The Access Key" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-kinesis-firehose-sink.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ metadata:
spec:
source:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
sink:
Expand Down Expand Up @@ -78,7 +78,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind channel/mychannel aws-kinesis-firehose-sink -p "sink.accessKey=The Access Key" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key" -p "sink.streamName=The Stream Name"
kamel bind channel:mychannel aws-kinesis-firehose-sink -p "sink.accessKey=The Access Key" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key" -p "sink.streamName=The Stream Name"
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-kinesis-sink.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ metadata:
spec:
source:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
sink:
Expand Down Expand Up @@ -90,7 +90,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind channel/mychannel aws-kinesis-sink -p "sink.accessKey=The Access Key" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key" -p "sink.stream=The Stream Name"
kamel bind channel:mychannel aws-kinesis-sink -p "sink.accessKey=The Access Key" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key" -p "sink.stream=The Stream Name"
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-kinesis-source.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
stream: "The Stream Name"
sink:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel

Expand Down Expand Up @@ -79,7 +79,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind aws-kinesis-source -p "source.accessKey=The Access Key" -p "source.region=eu-west-1" -p "source.secretKey=The Secret Key" -p "source.stream=The Stream Name" channel/mychannel
kamel bind aws-kinesis-source -p "source.accessKey=The Access Key" -p "source.region=eu-west-1" -p "source.secretKey=The Secret Key" -p "source.stream=The Stream Name" channel:mychannel
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-lambda-sink.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ metadata:
spec:
source:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
sink:
Expand Down Expand Up @@ -78,7 +78,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind channel/mychannel aws-lambda-sink -p "sink.accessKey=The Access Key" -p "sink.function=The Function Name" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
kamel bind channel:mychannel aws-lambda-sink -p "sink.accessKey=The Access Key" -p "sink.function=The Function Name" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-s3-sink.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ metadata:
spec:
source:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
sink:
Expand Down Expand Up @@ -85,7 +85,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind channel/mychannel aws-s3-sink -p "sink.accessKey=The Access Key" -p "sink.bucketNameOrArn=The Bucket Name" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
kamel bind channel:mychannel aws-s3-sink -p "sink.accessKey=The Access Key" -p "sink.bucketNameOrArn=The Bucket Name" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-s3-source.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ spec:
secretKey: "The Secret Key"
sink:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel

Expand Down Expand Up @@ -83,7 +83,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind aws-s3-source -p "source.accessKey=The Access Key" -p "source.bucketNameOrArn=The Bucket Name" -p "source.region=eu-west-1" -p "source.secretKey=The Secret Key" channel/mychannel
kamel bind aws-s3-source -p "source.accessKey=The Access Key" -p "source.bucketNameOrArn=The Bucket Name" -p "source.region=eu-west-1" -p "source.secretKey=The Secret Key" channel:mychannel
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-s3-streaming-upload-sink.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ metadata:
spec:
source:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
sink:
Expand Down Expand Up @@ -87,7 +87,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind channel/mychannel aws-s3-streaming-upload-sink -p "sink.accessKey=The Access Key" -p "sink.bucketNameOrArn=The Bucket Name" -p "sink.keyName=The Key Name" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
kamel bind channel:mychannel aws-s3-streaming-upload-sink -p "sink.accessKey=The Access Key" -p "sink.bucketNameOrArn=The Bucket Name" -p "sink.keyName=The Key Name" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-sns-fifo-sink.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ metadata:
spec:
source:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
sink:
Expand Down Expand Up @@ -85,7 +85,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind channel/mychannel aws-sns-fifo-sink -p "sink.accessKey=The Access Key" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key" -p "sink.topicNameOrArn=The Topic Name"
kamel bind channel:mychannel aws-sns-fifo-sink -p "sink.accessKey=The Access Key" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key" -p "sink.topicNameOrArn=The Topic Name"
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-sns-sink.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ metadata:
spec:
source:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
sink:
Expand Down Expand Up @@ -83,7 +83,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind channel/mychannel aws-sns-sink -p "sink.accessKey=The Access Key" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key" -p "sink.topicNameOrArn=The Topic Name"
kamel bind channel:mychannel aws-sns-sink -p "sink.accessKey=The Access Key" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key" -p "sink.topicNameOrArn=The Topic Name"
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-sqs-batch-sink.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ metadata:
spec:
source:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
sink:
Expand Down Expand Up @@ -83,7 +83,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind channel/mychannel aws-sqs-batch-sink -p "sink.accessKey=The Access Key" -p "sink.batchSeparator=," -p "sink.queueNameOrArn=The Queue Name" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
kamel bind channel:mychannel aws-sqs-batch-sink -p "sink.accessKey=The Access Key" -p "sink.batchSeparator=," -p "sink.queueNameOrArn=The Queue Name" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-sqs-fifo-sink.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ metadata:
spec:
source:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
sink:
Expand Down Expand Up @@ -83,7 +83,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind channel/mychannel aws-sqs-fifo-sink -p "sink.accessKey=The Access Key" -p "sink.queueNameOrArn=The Queue Name" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
kamel bind channel:mychannel aws-sqs-fifo-sink -p "sink.accessKey=The Access Key" -p "sink.queueNameOrArn=The Queue Name" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-sqs-sink.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ metadata:
spec:
source:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
sink:
Expand Down Expand Up @@ -81,7 +81,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind channel/mychannel aws-sqs-sink -p "sink.accessKey=The Access Key" -p "sink.queueNameOrArn=The Queue Name" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
kamel bind channel:mychannel aws-sqs-sink -p "sink.accessKey=The Access Key" -p "sink.queueNameOrArn=The Queue Name" -p "sink.region=eu-west-1" -p "sink.secretKey=The Secret Key"
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-sqs-source.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ spec:
secretKey: "The Secret Key"
sink:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel

Expand Down Expand Up @@ -82,7 +82,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind aws-sqs-source -p "source.accessKey=The Access Key" -p "source.queueNameOrArn=The Queue Name" -p "source.region=eu-west-1" -p "source.secretKey=The Secret Key" channel/mychannel
kamel bind aws-sqs-source -p "source.accessKey=The Access Key" -p "source.queueNameOrArn=The Queue Name" -p "source.region=eu-west-1" -p "source.secretKey=The Secret Key" channel:mychannel
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/aws-translate-action.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ spec:
targetLanguage: "en"
sink:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel

Expand Down Expand Up @@ -88,7 +88,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind timer-source?message=Hello --step aws-translate-action -p "step-0.accessKey=The Access Key" -p "step-0.region=eu-west-1" -p "step-0.secretKey=The Secret Key" -p "step-0.sourceLanguage=it" -p "step-0.targetLanguage=en" channel/mychannel
kamel bind timer-source?message=Hello --step aws-translate-action -p "step-0.accessKey=The Access Key" -p "step-0.region=eu-west-1" -p "step-0.secretKey=The Secret Key" -p "step-0.sourceLanguage=it" -p "step-0.targetLanguage=en" channel:mychannel
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/azure-cosmosdb-source.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ spec:
databaseName: "The Database Name"
sink:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel

Expand Down Expand Up @@ -83,7 +83,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind azure-cosmosdb-source -p "source.accountKey=The Account Key" -p "source.containerName=The Container Name" -p "source.databaseEndpoint=The Database Endpoint" -p "source.databaseName=The Database Name" channel/mychannel
kamel bind azure-cosmosdb-source -p "source.accountKey=The Account Key" -p "source.containerName=The Container Name" -p "source.databaseEndpoint=The Database Endpoint" -p "source.databaseName=The Database Name" channel:mychannel
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/azure-eventhubs-sink.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ metadata:
spec:
source:
ref:
kind: InMemoryChannel
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
sink:
Expand Down Expand Up @@ -88,7 +88,7 @@ The procedure described above can be simplified into a single execution of the `

[source,shell]
----
kamel bind channel/mychannel azure-eventhubs-sink -p "sink.eventhubName=The Eventhubs Name" -p "sink.namespaceName=The Eventhubs Namespace" -p "sink.sharedAccessKey=The Share Access Key" -p "sink.sharedAccessName=The Share Access Name"
kamel bind channel:mychannel azure-eventhubs-sink -p "sink.eventhubName=The Eventhubs Name" -p "sink.namespaceName=The Eventhubs Namespace" -p "sink.sharedAccessKey=The Share Access Key" -p "sink.sharedAccessName=The Share Access Name"
----

This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
Expand Down