Skip to content

Commit

Permalink
Add Hoistfield action
Browse files Browse the repository at this point in the history
  • Loading branch information
oscerd committed May 10, 2021
1 parent 234c2f6 commit 72583b7
Show file tree
Hide file tree
Showing 2 changed files with 126 additions and 0 deletions.
59 changes: 59 additions & 0 deletions docs/modules/ROOT/assets/images/kamelets/hoist-field-action.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
67 changes: 67 additions & 0 deletions docs/modules/ROOT/pages/hoist-field-action.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
// THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT
= image:kamelets/hoist-field-action.svg[] Hoist Field Action

*Provided by: "Apache Software Foundation"*

Wrap data in a single field

== Configuration Options

The following table summarizes the configuration options available for the `hoist-field-action` Kamelet:
[width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
|===
| Property| Name| Description| Type| Default| Example
| *field {empty}* *| Field| The name of the field that will contain the event| string| |
|===

NOTE: Fields marked with ({empty}*) are mandatory.

== Usage

This section summarizes how the `hoist-field-action` can be used in various contexts.

=== Knative Action

The `hoist-field-action` Kamelet can be used as intermediate step in a binding.

.hoist-field-action-binding.yaml
[source,yaml]
----
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: hoist-field-action-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: timer-source
properties:
message: "Hello"
steps:
- ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: hoist-field-action
properties:
field: "The Field"
sink:
ref:
kind: InMemoryChannel
apiVersion: messaging.knative.dev/v1
name: mychannel
----

Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to.

Save the `hoist-field-action-binding.yaml` file into your hard drive, then configure it according to your needs.

You can run the action using the following command:

[source,shell]
----
kubectl apply -f hoist-field-action-binding.yaml
----
// THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT

0 comments on commit 72583b7

Please sign in to comment.