Skip to content

Commit

Permalink
Added Json Serialize Action
Browse files Browse the repository at this point in the history
  • Loading branch information
oscerd committed May 10, 2021
1 parent 9e89417 commit a4061e0
Show file tree
Hide file tree
Showing 2 changed files with 117 additions and 0 deletions.
59 changes: 59 additions & 0 deletions docs/modules/ROOT/assets/images/kamelets/json-serialize-action.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions docs/modules/ROOT/pages/json-serialize-action.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
// THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT
= image:kamelets/json-serialize-action.svg[] Json Serialize Action

*Provided by: "Apache Software Foundation"*

Serialize payload to JSON

== Configuration Options

The Kamelet does not specify any configuration option.

== Usage

This section summarizes how the `json-serialize-action` can be used in various contexts.

=== Knative Action

The `json-serialize-action` Kamelet can be used as intermediate step in a binding.

.json-serialize-action-binding.yaml
[source,yaml]
----
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: json-serialize-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: json-serialize-action
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 `json-serialize-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 json-serialize-action-binding.yaml
----
// THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT

0 comments on commit a4061e0

Please sign in to comment.