From ed60eed89f32f77d4c1d1fa1bf3ed574c09d0ffb Mon Sep 17 00:00:00 2001 From: Otavio Rodolfo Piske Date: Fri, 30 Jul 2021 14:54:12 +0200 Subject: [PATCH 1/2] Externalize the Kamelet binding template in the Kafka Source --- .../ROOT/kamelet-binding-sink-source.tmpl | 43 ++++++ docs/modules/ROOT/kamelet.adoc.tmpl | 16 ++- docs/modules/ROOT/properties-list.tmpl | 1 + script/generator/generator.go | 133 +++++++----------- 4 files changed, 110 insertions(+), 83 deletions(-) create mode 100644 docs/modules/ROOT/kamelet-binding-sink-source.tmpl create mode 100644 docs/modules/ROOT/properties-list.tmpl diff --git a/docs/modules/ROOT/kamelet-binding-sink-source.tmpl b/docs/modules/ROOT/kamelet-binding-sink-source.tmpl new file mode 100644 index 000000000..72a052a12 --- /dev/null +++ b/docs/modules/ROOT/kamelet-binding-sink-source.tmpl @@ -0,0 +1,43 @@ +apiVersion: camel.apache.org/v1alpha1 +kind: KameletBinding +metadata: + name: {{ .Kamelet.ObjectMeta.Name }}-binding +spec: + {{ if eq (index .Kamelet.ObjectMeta.Labels "camel.apache.org/kamelet.type") "sink" }}source: + ref: + kind: {{ .GetVal "RefKind" }} + apiVersion: {{ .GetVal "RefApiVersion" }} + name: {{ .GetVal "RefName" }} + sink: + ref: + kind: Kamelet + apiVersion: camel.apache.org/v1alpha1 + name: {{ .Kamelet.ObjectMeta.Name }}{{ template "properties-list.tmpl" . }} + {{ else if eq (index .Kamelet.ObjectMeta.Labels "camel.apache.org/kamelet.type") "source" }}source: + ref: + kind: Kamelet + apiVersion: camel.apache.org/v1alpha1 + name: {{ .Kamelet.ObjectMeta.Name }}{{ template "properties-list.tmpl" . }} + sink: + ref: + kind: {{ .GetVal "RefKind" }} + apiVersion: {{ .GetVal "RefApiVersion" }} + name: {{ .GetVal "RefName" }} + {{ else if eq (index .Kamelet.ObjectMeta.Labels "camel.apache.org/kamelet.type") "action" }}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: {{ .Kamelet.ObjectMeta.Name }}{{ template "properties-list.tmpl" . }} + sink: + ref: + kind: {{ .GetVal "RefKind" }} + apiVersion: {{ .GetVal "RefApiVersion" }} + name: {{ .GetVal "RefName" }} +{{ end }} \ No newline at end of file diff --git a/docs/modules/ROOT/kamelet.adoc.tmpl b/docs/modules/ROOT/kamelet.adoc.tmpl index 260e46be6..00c3710a5 100644 --- a/docs/modules/ROOT/kamelet.adoc.tmpl +++ b/docs/modules/ROOT/kamelet.adoc.tmpl @@ -26,7 +26,12 @@ 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 }} -{{ .ExampleBinding "messaging.knative.dev/v1" "InMemoryChannel" "mychannel" }} +{{- .SetVal "RefApiVersion" "messaging.knative.dev/v1" -}}{{- .SetVal "RefKind" "InMemoryChannel" -}}{{- .SetVal "RefName" "mychannel" }} +.{{ .Kamelet.ObjectMeta.Name }}-binding.yaml +[source,yaml] +---- +{{ template "kamelet-binding-sink-source.tmpl" . }} +---- Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `{{ .Kamelet.ObjectMeta.Name }}-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -55,8 +60,13 @@ This will create the KameletBinding under the hood and apply it to the current n The `{{ .Kamelet.ObjectMeta.Name }}` Kamelet can be used as intermediate step in a Kafka binding. {{ else -}} The `{{ .Kamelet.ObjectMeta.Name }}` Kamelet can be used as Kafka {{ index .Kamelet.ObjectMeta.Labels "camel.apache.org/kamelet.type" }} by binding it to a Kafka topic. -{{ end }} -{{ .ExampleBinding "kafka.strimzi.io/v1beta1" "KafkaTopic" "my-topic" }} +{{ end }} {{- .SetVal "RefApiVersion" "kafka.strimzi.io/v1beta1" -}}{{- .SetVal "RefKind" "KafkaTopic" -}}{{- .SetVal "RefName" "my-topic" }} +.{{ .Kamelet.ObjectMeta.Name }}-binding.yaml +[source,yaml] +---- +{{ template "kamelet-binding-sink-source.tmpl" . }} +---- + Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. Make also sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. diff --git a/docs/modules/ROOT/properties-list.tmpl b/docs/modules/ROOT/properties-list.tmpl new file mode 100644 index 000000000..fe58e1611 --- /dev/null +++ b/docs/modules/ROOT/properties-list.tmpl @@ -0,0 +1 @@ +{{ if .HasRequiredProperties }}{{ .PropertyList }}{{ end }} \ No newline at end of file diff --git a/script/generator/generator.go b/script/generator/generator.go index f857544af..b9ce6625a 100644 --- a/script/generator/generator.go +++ b/script/generator/generator.go @@ -35,7 +35,10 @@ func main() { } templateFile := path.Join(out, "kamelet.adoc.tmpl") - t, err := template.New("kamelet.adoc.tmpl").Funcs(funcMap).ParseFiles(templateFile) + kameletBindingFile := path.Join(out, "kamelet-binding-sink-source.tmpl") + propertiesListFile := path.Join(out, "properties-list.tmpl") + + t, err := template.New("kamelet.adoc.tmpl").Funcs(funcMap).ParseFiles(templateFile, kameletBindingFile, propertiesListFile) handleGeneralError(fmt.Sprintf("cannot load template file from %s", templateFile), err) kamelets := listKamelets(dir) @@ -61,12 +64,14 @@ func main() { type TemplateContext struct { Kamelet camel.Kamelet Image string + TemplateProperties map[string]string } func NewTemplateContext(kamelet camel.Kamelet, image string) TemplateContext { return TemplateContext{ Kamelet: kamelet, Image: image, + TemplateProperties: map[string]string{}, } } @@ -129,6 +134,53 @@ func (ctx *TemplateContext) HasProperties() bool { return len(ctx.Kamelet.Spec.Definition.Properties) > 0 } +func (ctx *TemplateContext) HasRequiredProperties() bool { + propDefs := getSortedProps(ctx.Kamelet) + + for _, propDef := range propDefs { + if propDef.Required { + return true + } + } + + return false +} + +func (ctx *TemplateContext) PropertyList() string { + propDefs := getSortedProps(ctx.Kamelet) + + sampleConfig := make([]string, 0) + for _, propDef := range propDefs { + if !propDef.Required { + continue + } + key := propDef.Name + if propDef.Default == nil { + ex := propDef.GetSampleValue() + sampleConfig = append(sampleConfig, fmt.Sprintf("%s: %s", key, ex)) + } + } + + /* + Creates the properties list in the YAML format. + */ + props := "" + if len(sampleConfig) > 0 { + props = fmt.Sprintf("\n %s:\n %s", "properties", strings.Join(sampleConfig, "\n ")) + } + + return props +} + +func (ctx *TemplateContext) SetVal(key, val string) string { + ctx.TemplateProperties[key] = val + return "" +} + +func (ctx *TemplateContext) GetVal(key string) string { + return ctx.TemplateProperties[key] +} + func (ctx *TemplateContext) Properties() string { content := "" if len(ctx.Kamelet.Spec.Definition.Properties) > 0 { @@ -161,85 +213,6 @@ func (ctx *TemplateContext) Properties() string { return content } -func (ctx *TemplateContext) ExampleBinding(apiVersion, kind, name string) string { - content := "" - propDefs := getSortedProps(ctx.Kamelet) - tp := ctx.Kamelet.ObjectMeta.Labels["camel.apache.org/kamelet.type"] - if tp != "" { - sampleConfig := make([]string, 0) - for _, propDef := range propDefs { - if !propDef.Required { - continue - } - key := propDef.Name - if propDef.Default == nil { - ex := propDef.GetSampleValue() - sampleConfig = append(sampleConfig, fmt.Sprintf("%s: %s", key, ex)) - } - } - props := "" - if len(sampleConfig) > 0 { - props += " properties:\n" - for _, p := range sampleConfig { - props += fmt.Sprintf(" %s\n", p) - } - } - - kameletRef := fmt.Sprintf(` ref: - kind: Kamelet - apiVersion: camel.apache.org/v1alpha1 - name: %s -%s`, ctx.Kamelet.Name, props) - - boundToRef := fmt.Sprintf(` ref: - kind: %s - apiVersion: %s - name: %s -`, kind, apiVersion, name) - var sourceRef string - var sinkRef string - var steps string - - switch tp { - case "source": - sourceRef = kameletRef - sinkRef = boundToRef - case "sink": - sourceRef = boundToRef - sinkRef = kameletRef - case "action": - sourceRef = ` ref: - kind: Kamelet - apiVersion: camel.apache.org/v1alpha1 - name: timer-source - properties: - message: "Hello"` - sinkRef = boundToRef - steps = fmt.Sprintf(` - steps: - -%s`, kameletRef[3:]) - } - - binding := fmt.Sprintf(`apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding -metadata: - name: %s-binding -spec: - source: -%s%s sink: -%s -`, ctx.Kamelet.Name, sourceRef, steps, sinkRef) - - content += fmt.Sprintf(".%s-binding.yaml\n", ctx.Kamelet.Name) - content += "[source,yaml]\n" - content += "----\n" - content += binding - content += "----\n" - - } - return content -} - func (ctx *TemplateContext) ExampleKamelBindCommand(ref string) string { tp := ctx.Kamelet.ObjectMeta.Labels["camel.apache.org/kamelet.type"] var prefix string From 5cd34ef04a92507c11df6e737bc00d1402629801 Mon Sep 17 00:00:00 2001 From: Otavio Rodolfo Piske Date: Tue, 3 Aug 2021 12:06:26 +0200 Subject: [PATCH 2/2] Refreshed the documentation using the externalized templates --- docs/modules/ROOT/pages/avro-deserialize-action.adoc | 1 - docs/modules/ROOT/pages/avro-serialize-action.adoc | 1 - docs/modules/ROOT/pages/aws-cloudwatch-sink.adoc | 5 ++--- docs/modules/ROOT/pages/aws-ddb-streams-source.adoc | 5 ++--- docs/modules/ROOT/pages/aws-ec2-sink.adoc | 5 ++--- docs/modules/ROOT/pages/aws-kinesis-firehose-sink.adoc | 5 ++--- docs/modules/ROOT/pages/aws-kinesis-sink.adoc | 5 ++--- docs/modules/ROOT/pages/aws-kinesis-source.adoc | 5 ++--- docs/modules/ROOT/pages/aws-lambda-sink.adoc | 5 ++--- docs/modules/ROOT/pages/aws-s3-sink.adoc | 5 ++--- docs/modules/ROOT/pages/aws-s3-source.adoc | 5 ++--- docs/modules/ROOT/pages/aws-s3-streaming-upload-sink.adoc | 5 ++--- docs/modules/ROOT/pages/aws-sns-fifo-sink.adoc | 5 ++--- docs/modules/ROOT/pages/aws-sns-sink.adoc | 5 ++--- docs/modules/ROOT/pages/aws-sqs-batch-sink.adoc | 5 ++--- docs/modules/ROOT/pages/aws-sqs-fifo-sink.adoc | 5 ++--- docs/modules/ROOT/pages/aws-sqs-sink.adoc | 5 ++--- docs/modules/ROOT/pages/aws-sqs-source.adoc | 5 ++--- docs/modules/ROOT/pages/aws-translate-action.adoc | 1 - docs/modules/ROOT/pages/azure-cosmosdb-source.adoc | 5 ++--- docs/modules/ROOT/pages/azure-eventhubs-sink.adoc | 5 ++--- docs/modules/ROOT/pages/azure-eventhubs-source.adoc | 5 ++--- docs/modules/ROOT/pages/azure-storage-blob-sink.adoc | 5 ++--- docs/modules/ROOT/pages/azure-storage-blob-source.adoc | 5 ++--- docs/modules/ROOT/pages/azure-storage-queue-sink.adoc | 5 ++--- docs/modules/ROOT/pages/azure-storage-queue-source.adoc | 5 ++--- docs/modules/ROOT/pages/bitcoin-source.adoc | 5 ++--- docs/modules/ROOT/pages/caffeine-action.adoc | 1 - docs/modules/ROOT/pages/cassandra-sink.adoc | 5 ++--- docs/modules/ROOT/pages/cassandra-source.adoc | 5 ++--- docs/modules/ROOT/pages/chuck-norris-source.adoc | 5 ++--- docs/modules/ROOT/pages/chunk-template-action.adoc | 1 - docs/modules/ROOT/pages/cron-source.adoc | 5 ++--- docs/modules/ROOT/pages/dns-dig-action.adoc | 1 - docs/modules/ROOT/pages/dns-ip-action.adoc | 1 - docs/modules/ROOT/pages/dns-lookup-action.adoc | 1 - docs/modules/ROOT/pages/dropbox-sink.adoc | 5 ++--- docs/modules/ROOT/pages/dropbox-source.adoc | 5 ++--- docs/modules/ROOT/pages/earthquake-source.adoc | 5 ++--- docs/modules/ROOT/pages/elasticsearch-index-sink.adoc | 5 ++--- docs/modules/ROOT/pages/elasticsearch-search-source.adoc | 5 ++--- docs/modules/ROOT/pages/exec-sink.adoc | 5 ++--- docs/modules/ROOT/pages/extract-field-action.adoc | 1 - docs/modules/ROOT/pages/fhir-source.adoc | 5 ++--- docs/modules/ROOT/pages/file-watch-source.adoc | 5 ++--- docs/modules/ROOT/pages/freemarker-template-action.adoc | 1 - docs/modules/ROOT/pages/ftp-sink.adoc | 5 ++--- docs/modules/ROOT/pages/ftp-source.adoc | 5 ++--- docs/modules/ROOT/pages/ftps-sink.adoc | 5 ++--- docs/modules/ROOT/pages/ftps-source.adoc | 5 ++--- docs/modules/ROOT/pages/github-source.adoc | 5 ++--- docs/modules/ROOT/pages/google-calendar-source.adoc | 5 ++--- docs/modules/ROOT/pages/google-mail-source.adoc | 5 ++--- docs/modules/ROOT/pages/google-sheets-source.adoc | 5 ++--- docs/modules/ROOT/pages/has-header-filter-action.adoc | 1 - docs/modules/ROOT/pages/header-matches-filter-action.adoc | 1 - docs/modules/ROOT/pages/hoist-field-action.adoc | 1 - docs/modules/ROOT/pages/http-secured-sink.adoc | 5 ++--- docs/modules/ROOT/pages/http-secured-source.adoc | 5 ++--- docs/modules/ROOT/pages/http-sink.adoc | 5 ++--- docs/modules/ROOT/pages/http-source.adoc | 5 ++--- docs/modules/ROOT/pages/infinispan-source.adoc | 5 ++--- docs/modules/ROOT/pages/insert-field-action.adoc | 1 - docs/modules/ROOT/pages/insert-header-action.adoc | 1 - docs/modules/ROOT/pages/is-tombstone-filter-action.adoc | 1 - docs/modules/ROOT/pages/jira-source.adoc | 5 ++--- docs/modules/ROOT/pages/jms-amqp-10-sink.adoc | 5 ++--- docs/modules/ROOT/pages/jms-amqp-10-source.adoc | 5 ++--- docs/modules/ROOT/pages/jms-apache-artemis-sink.adoc | 5 ++--- docs/modules/ROOT/pages/jms-apache-artemis-source.adoc | 5 ++--- docs/modules/ROOT/pages/json-deserialize-action.adoc | 1 - docs/modules/ROOT/pages/json-schema-validator-action.adoc | 1 - docs/modules/ROOT/pages/json-serialize-action.adoc | 1 - docs/modules/ROOT/pages/jsonata-action.adoc | 1 - docs/modules/ROOT/pages/kafka-manual-commit-action.adoc | 1 - docs/modules/ROOT/pages/kafka-not-secured-sink.adoc | 5 ++--- docs/modules/ROOT/pages/kafka-not-secured-source.adoc | 5 ++--- docs/modules/ROOT/pages/kafka-sink.adoc | 5 ++--- docs/modules/ROOT/pages/kafka-source.adoc | 5 ++--- docs/modules/ROOT/pages/log-sink.adoc | 5 ++--- docs/modules/ROOT/pages/mail-imap-source.adoc | 5 ++--- docs/modules/ROOT/pages/mariadb-sink.adoc | 5 ++--- docs/modules/ROOT/pages/mariadb-source.adoc | 5 ++--- docs/modules/ROOT/pages/mask-field-action.adoc | 1 - docs/modules/ROOT/pages/message-timestamp-router-action.adoc | 1 - docs/modules/ROOT/pages/minio-sink.adoc | 5 ++--- docs/modules/ROOT/pages/minio-source.adoc | 5 ++--- docs/modules/ROOT/pages/mongodb-sink.adoc | 5 ++--- docs/modules/ROOT/pages/mongodb-source.adoc | 5 ++--- docs/modules/ROOT/pages/mqtt-source.adoc | 5 ++--- docs/modules/ROOT/pages/mustache-template-action.adoc | 1 - docs/modules/ROOT/pages/mvel-template-action.adoc | 1 - docs/modules/ROOT/pages/mysql-sink.adoc | 5 ++--- docs/modules/ROOT/pages/mysql-source.adoc | 5 ++--- docs/modules/ROOT/pages/nats-sink.adoc | 5 ++--- docs/modules/ROOT/pages/nats-source.adoc | 5 ++--- docs/modules/ROOT/pages/openai-classification-action.adoc | 1 - docs/modules/ROOT/pages/openai-completion-action.adoc | 1 - docs/modules/ROOT/pages/pdf-action.adoc | 1 - docs/modules/ROOT/pages/postgresql-sink.adoc | 5 ++--- docs/modules/ROOT/pages/postgresql-source.adoc | 5 ++--- docs/modules/ROOT/pages/predicate-filter-action.adoc | 1 - docs/modules/ROOT/pages/protobuf-deserialize-action.adoc | 1 - docs/modules/ROOT/pages/protobuf-serialize-action.adoc | 1 - docs/modules/ROOT/pages/rabbitmq-source.adoc | 5 ++--- docs/modules/ROOT/pages/regex-router-action.adoc | 1 - docs/modules/ROOT/pages/replace-field-action.adoc | 1 - docs/modules/ROOT/pages/salesforce-source.adoc | 5 ++--- docs/modules/ROOT/pages/sftp-sink.adoc | 5 ++--- docs/modules/ROOT/pages/sftp-source.adoc | 5 ++--- docs/modules/ROOT/pages/slack-sink.adoc | 5 ++--- docs/modules/ROOT/pages/slack-source.adoc | 5 ++--- docs/modules/ROOT/pages/sqlserver-sink.adoc | 5 ++--- docs/modules/ROOT/pages/sqlserver-source.adoc | 5 ++--- docs/modules/ROOT/pages/ssh-source.adoc | 5 ++--- docs/modules/ROOT/pages/string-template-action.adoc | 1 - docs/modules/ROOT/pages/telegram-sink.adoc | 5 ++--- docs/modules/ROOT/pages/telegram-source.adoc | 5 ++--- docs/modules/ROOT/pages/timer-source.adoc | 5 ++--- docs/modules/ROOT/pages/timestamp-router-action.adoc | 1 - .../modules/ROOT/pages/topic-name-matches-filter-action.adoc | 1 - docs/modules/ROOT/pages/twitter-directmessage-source.adoc | 5 ++--- docs/modules/ROOT/pages/twitter-search-source.adoc | 5 ++--- docs/modules/ROOT/pages/twitter-timeline-source.adoc | 5 ++--- docs/modules/ROOT/pages/value-to-key-action.adoc | 1 - docs/modules/ROOT/pages/velocity-template-action.adoc | 1 - docs/modules/ROOT/pages/webhook-source.adoc | 5 ++--- 127 files changed, 178 insertions(+), 305 deletions(-) diff --git a/docs/modules/ROOT/pages/avro-deserialize-action.adoc b/docs/modules/ROOT/pages/avro-deserialize-action.adoc index 5ed8b7673..d87e85c43 100644 --- a/docs/modules/ROOT/pages/avro-deserialize-action.adoc +++ b/docs/modules/ROOT/pages/avro-deserialize-action.adoc @@ -56,7 +56,6 @@ spec: 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 `avro-deserialize-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/avro-serialize-action.adoc b/docs/modules/ROOT/pages/avro-serialize-action.adoc index 8f56cadb2..c0c99bb18 100644 --- a/docs/modules/ROOT/pages/avro-serialize-action.adoc +++ b/docs/modules/ROOT/pages/avro-serialize-action.adoc @@ -56,7 +56,6 @@ spec: 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 `avro-serialize-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/aws-cloudwatch-sink.adoc b/docs/modules/ROOT/pages/aws-cloudwatch-sink.adoc index badfdc736..74c3bad03 100644 --- a/docs/modules/ROOT/pages/aws-cloudwatch-sink.adoc +++ b/docs/modules/ROOT/pages/aws-cloudwatch-sink.adoc @@ -61,9 +61,8 @@ spec: cw_namespace: "The Cloud Watch Namespace" region: "eu-west-1" secretKey: "The Secret Key" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `aws-cloudwatch-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -113,7 +112,7 @@ spec: cw_namespace: "The Cloud Watch Namespace" region: "eu-west-1" secretKey: "The Secret Key" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-ddb-streams-source.adoc b/docs/modules/ROOT/pages/aws-ddb-streams-source.adoc index 3151ee27d..25aac5f6f 100644 --- a/docs/modules/ROOT/pages/aws-ddb-streams-source.adoc +++ b/docs/modules/ROOT/pages/aws-ddb-streams-source.adoc @@ -54,9 +54,8 @@ spec: 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 `aws-ddb-streams-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -106,7 +105,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-ec2-sink.adoc b/docs/modules/ROOT/pages/aws-ec2-sink.adoc index f27b2e8e1..cad371933 100644 --- a/docs/modules/ROOT/pages/aws-ec2-sink.adoc +++ b/docs/modules/ROOT/pages/aws-ec2-sink.adoc @@ -54,9 +54,8 @@ spec: accessKey: "The Access Key" region: "eu-west-1" secretKey: "The Secret Key" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `aws-ec2-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -105,7 +104,7 @@ spec: accessKey: "The Access Key" region: "eu-west-1" secretKey: "The Secret Key" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-kinesis-firehose-sink.adoc b/docs/modules/ROOT/pages/aws-kinesis-firehose-sink.adoc index 3d7608354..d5f9c360d 100644 --- a/docs/modules/ROOT/pages/aws-kinesis-firehose-sink.adoc +++ b/docs/modules/ROOT/pages/aws-kinesis-firehose-sink.adoc @@ -52,9 +52,8 @@ spec: region: "eu-west-1" secretKey: "The Secret Key" streamName: "The Stream Name" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `aws-kinesis-firehose-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -104,7 +103,7 @@ spec: region: "eu-west-1" secretKey: "The Secret Key" streamName: "The Stream Name" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-kinesis-sink.adoc b/docs/modules/ROOT/pages/aws-kinesis-sink.adoc index 9ec529cba..81394cb64 100644 --- a/docs/modules/ROOT/pages/aws-kinesis-sink.adoc +++ b/docs/modules/ROOT/pages/aws-kinesis-sink.adoc @@ -64,9 +64,8 @@ spec: region: "eu-west-1" secretKey: "The Secret Key" stream: "The Stream Name" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `aws-kinesis-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -116,7 +115,7 @@ spec: region: "eu-west-1" secretKey: "The Secret Key" stream: "The Stream Name" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-kinesis-source.adoc b/docs/modules/ROOT/pages/aws-kinesis-source.adoc index f48bf19ab..ce9a9af56 100644 --- a/docs/modules/ROOT/pages/aws-kinesis-source.adoc +++ b/docs/modules/ROOT/pages/aws-kinesis-source.adoc @@ -52,9 +52,8 @@ spec: 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 `aws-kinesis-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -104,7 +103,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-lambda-sink.adoc b/docs/modules/ROOT/pages/aws-lambda-sink.adoc index 123458a48..f64244d8d 100644 --- a/docs/modules/ROOT/pages/aws-lambda-sink.adoc +++ b/docs/modules/ROOT/pages/aws-lambda-sink.adoc @@ -52,9 +52,8 @@ spec: function: "The Function Name" region: "eu-west-1" secretKey: "The Secret Key" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `aws-lambda-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -104,7 +103,7 @@ spec: function: "The Function Name" region: "eu-west-1" secretKey: "The Secret Key" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-s3-sink.adoc b/docs/modules/ROOT/pages/aws-s3-sink.adoc index 8495c5ac3..28ca60df7 100644 --- a/docs/modules/ROOT/pages/aws-s3-sink.adoc +++ b/docs/modules/ROOT/pages/aws-s3-sink.adoc @@ -59,9 +59,8 @@ spec: bucketNameOrArn: "The Bucket Name" region: "eu-west-1" secretKey: "The Secret Key" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `aws-s3-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -111,7 +110,7 @@ spec: bucketNameOrArn: "The Bucket Name" region: "eu-west-1" secretKey: "The Secret Key" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-s3-source.adoc b/docs/modules/ROOT/pages/aws-s3-source.adoc index d08ad617a..1efa71ed9 100644 --- a/docs/modules/ROOT/pages/aws-s3-source.adoc +++ b/docs/modules/ROOT/pages/aws-s3-source.adoc @@ -57,9 +57,8 @@ spec: 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 `aws-s3-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -109,7 +108,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-s3-streaming-upload-sink.adoc b/docs/modules/ROOT/pages/aws-s3-streaming-upload-sink.adoc index 6ac056a15..319a9cfe4 100644 --- a/docs/modules/ROOT/pages/aws-s3-streaming-upload-sink.adoc +++ b/docs/modules/ROOT/pages/aws-s3-streaming-upload-sink.adoc @@ -60,9 +60,8 @@ spec: keyName: "The Key Name" region: "eu-west-1" secretKey: "The Secret Key" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `aws-s3-streaming-upload-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -113,7 +112,7 @@ spec: keyName: "The Key Name" region: "eu-west-1" secretKey: "The Secret Key" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-sns-fifo-sink.adoc b/docs/modules/ROOT/pages/aws-sns-fifo-sink.adoc index ccec18442..a95c69239 100644 --- a/docs/modules/ROOT/pages/aws-sns-fifo-sink.adoc +++ b/docs/modules/ROOT/pages/aws-sns-fifo-sink.adoc @@ -54,9 +54,8 @@ spec: region: "eu-west-1" secretKey: "The Secret Key" topicNameOrArn: "The Topic Name" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `aws-sns-fifo-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -106,7 +105,7 @@ spec: region: "eu-west-1" secretKey: "The Secret Key" topicNameOrArn: "The Topic Name" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-sns-sink.adoc b/docs/modules/ROOT/pages/aws-sns-sink.adoc index 48e312229..7975b879c 100644 --- a/docs/modules/ROOT/pages/aws-sns-sink.adoc +++ b/docs/modules/ROOT/pages/aws-sns-sink.adoc @@ -53,9 +53,8 @@ spec: region: "eu-west-1" secretKey: "The Secret Key" topicNameOrArn: "The Topic Name" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `aws-sns-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -105,7 +104,7 @@ spec: region: "eu-west-1" secretKey: "The Secret Key" topicNameOrArn: "The Topic Name" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-sqs-batch-sink.adoc b/docs/modules/ROOT/pages/aws-sqs-batch-sink.adoc index 53277e6d0..618f033ca 100644 --- a/docs/modules/ROOT/pages/aws-sqs-batch-sink.adoc +++ b/docs/modules/ROOT/pages/aws-sqs-batch-sink.adoc @@ -55,9 +55,8 @@ spec: queueNameOrArn: "The Queue Name" region: "eu-west-1" secretKey: "The Secret Key" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `aws-sqs-batch-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -108,7 +107,7 @@ spec: queueNameOrArn: "The Queue Name" region: "eu-west-1" secretKey: "The Secret Key" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-sqs-fifo-sink.adoc b/docs/modules/ROOT/pages/aws-sqs-fifo-sink.adoc index 7a1bc33a1..7f93b3b51 100644 --- a/docs/modules/ROOT/pages/aws-sqs-fifo-sink.adoc +++ b/docs/modules/ROOT/pages/aws-sqs-fifo-sink.adoc @@ -54,9 +54,8 @@ spec: queueNameOrArn: "The Queue Name" region: "eu-west-1" secretKey: "The Secret Key" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `aws-sqs-fifo-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -106,7 +105,7 @@ spec: queueNameOrArn: "The Queue Name" region: "eu-west-1" secretKey: "The Secret Key" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-sqs-sink.adoc b/docs/modules/ROOT/pages/aws-sqs-sink.adoc index 4a3ed7b60..398a05af4 100644 --- a/docs/modules/ROOT/pages/aws-sqs-sink.adoc +++ b/docs/modules/ROOT/pages/aws-sqs-sink.adoc @@ -53,9 +53,8 @@ spec: queueNameOrArn: "The Queue Name" region: "eu-west-1" secretKey: "The Secret Key" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `aws-sqs-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -105,7 +104,7 @@ spec: queueNameOrArn: "The Queue Name" region: "eu-west-1" secretKey: "The Secret Key" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-sqs-source.adoc b/docs/modules/ROOT/pages/aws-sqs-source.adoc index 51177f5f6..2a6522551 100644 --- a/docs/modules/ROOT/pages/aws-sqs-source.adoc +++ b/docs/modules/ROOT/pages/aws-sqs-source.adoc @@ -54,9 +54,8 @@ spec: 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 `aws-sqs-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -106,7 +105,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/aws-translate-action.adoc b/docs/modules/ROOT/pages/aws-translate-action.adoc index 3abe5a895..57c54a5f3 100644 --- a/docs/modules/ROOT/pages/aws-translate-action.adoc +++ b/docs/modules/ROOT/pages/aws-translate-action.adoc @@ -63,7 +63,6 @@ spec: 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 `aws-translate-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/azure-cosmosdb-source.adoc b/docs/modules/ROOT/pages/azure-cosmosdb-source.adoc index 8c2cc31c6..15cc2f694 100644 --- a/docs/modules/ROOT/pages/azure-cosmosdb-source.adoc +++ b/docs/modules/ROOT/pages/azure-cosmosdb-source.adoc @@ -56,9 +56,8 @@ spec: 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 `azure-cosmosdb-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -108,7 +107,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/azure-eventhubs-sink.adoc b/docs/modules/ROOT/pages/azure-eventhubs-sink.adoc index 6a330fe6e..5720587ea 100644 --- a/docs/modules/ROOT/pages/azure-eventhubs-sink.adoc +++ b/docs/modules/ROOT/pages/azure-eventhubs-sink.adoc @@ -58,9 +58,8 @@ spec: namespaceName: "The Eventhubs Namespace" sharedAccessKey: "The Share Access Key" sharedAccessName: "The Share Access Name" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `azure-eventhubs-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -110,7 +109,7 @@ spec: namespaceName: "The Eventhubs Namespace" sharedAccessKey: "The Share Access Key" sharedAccessName: "The Share Access Name" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/azure-eventhubs-source.adoc b/docs/modules/ROOT/pages/azure-eventhubs-source.adoc index cdcd70681..1dc1a68ee 100644 --- a/docs/modules/ROOT/pages/azure-eventhubs-source.adoc +++ b/docs/modules/ROOT/pages/azure-eventhubs-source.adoc @@ -58,9 +58,8 @@ spec: 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 `azure-eventhubs-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -113,7 +112,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/azure-storage-blob-sink.adoc b/docs/modules/ROOT/pages/azure-storage-blob-sink.adoc index 2b5c76a6d..f0f26fde1 100644 --- a/docs/modules/ROOT/pages/azure-storage-blob-sink.adoc +++ b/docs/modules/ROOT/pages/azure-storage-blob-sink.adoc @@ -57,9 +57,8 @@ spec: accessKey: "The Access Key" accountName: "The Account Name" containerName: "The Container Name" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `azure-storage-blob-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -108,7 +107,7 @@ spec: accessKey: "The Access Key" accountName: "The Account Name" containerName: "The Container Name" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/azure-storage-blob-source.adoc b/docs/modules/ROOT/pages/azure-storage-blob-source.adoc index 9a198d4a9..87ae2ba11 100644 --- a/docs/modules/ROOT/pages/azure-storage-blob-source.adoc +++ b/docs/modules/ROOT/pages/azure-storage-blob-source.adoc @@ -51,9 +51,8 @@ spec: 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 `azure-storage-blob-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -102,7 +101,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/azure-storage-queue-sink.adoc b/docs/modules/ROOT/pages/azure-storage-queue-sink.adoc index 7def719ac..938195a80 100644 --- a/docs/modules/ROOT/pages/azure-storage-queue-sink.adoc +++ b/docs/modules/ROOT/pages/azure-storage-queue-sink.adoc @@ -58,9 +58,8 @@ spec: accessKey: "The Access Key" accountName: "The Account Name" queueName: "The Queue Name" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `azure-storage-queue-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -109,7 +108,7 @@ spec: accessKey: "The Access Key" accountName: "The Account Name" queueName: "The Queue Name" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/azure-storage-queue-source.adoc b/docs/modules/ROOT/pages/azure-storage-queue-source.adoc index 28b9cd2c8..ad0940dee 100644 --- a/docs/modules/ROOT/pages/azure-storage-queue-source.adoc +++ b/docs/modules/ROOT/pages/azure-storage-queue-source.adoc @@ -51,9 +51,8 @@ spec: 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 `azure-storage-queue-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -102,7 +101,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/bitcoin-source.adoc b/docs/modules/ROOT/pages/bitcoin-source.adoc index 3105925c3..67bac5c6a 100644 --- a/docs/modules/ROOT/pages/bitcoin-source.adoc +++ b/docs/modules/ROOT/pages/bitcoin-source.adoc @@ -44,9 +44,8 @@ spec: 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 `bitcoin-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -91,7 +90,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/caffeine-action.adoc b/docs/modules/ROOT/pages/caffeine-action.adoc index b60fa984c..d0ca0b655 100644 --- a/docs/modules/ROOT/pages/caffeine-action.adoc +++ b/docs/modules/ROOT/pages/caffeine-action.adoc @@ -63,7 +63,6 @@ spec: 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 `caffeine-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/cassandra-sink.adoc b/docs/modules/ROOT/pages/cassandra-sink.adoc index c35b9e463..6718d3d80 100644 --- a/docs/modules/ROOT/pages/cassandra-sink.adoc +++ b/docs/modules/ROOT/pages/cassandra-sink.adoc @@ -59,9 +59,8 @@ spec: password: "The Password" preparedStatement: "The Prepared Statement" username: "The Username" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `cassandra-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -113,7 +112,7 @@ spec: password: "The Password" preparedStatement: "The Prepared Statement" username: "The Username" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/cassandra-source.adoc b/docs/modules/ROOT/pages/cassandra-source.adoc index 04494888d..213bdfe6c 100644 --- a/docs/modules/ROOT/pages/cassandra-source.adoc +++ b/docs/modules/ROOT/pages/cassandra-source.adoc @@ -58,9 +58,8 @@ spec: 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 `cassandra-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -112,7 +111,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/chuck-norris-source.adoc b/docs/modules/ROOT/pages/chuck-norris-source.adoc index 488ea9f8e..24082a03d 100644 --- a/docs/modules/ROOT/pages/chuck-norris-source.adoc +++ b/docs/modules/ROOT/pages/chuck-norris-source.adoc @@ -44,9 +44,8 @@ spec: 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 `chuck-norris-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -91,7 +90,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/chunk-template-action.adoc b/docs/modules/ROOT/pages/chunk-template-action.adoc index c841ad1a1..8c23e5377 100644 --- a/docs/modules/ROOT/pages/chunk-template-action.adoc +++ b/docs/modules/ROOT/pages/chunk-template-action.adoc @@ -57,7 +57,6 @@ spec: 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 `chunk-template-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/cron-source.adoc b/docs/modules/ROOT/pages/cron-source.adoc index d18520eb0..4d5077659 100644 --- a/docs/modules/ROOT/pages/cron-source.adoc +++ b/docs/modules/ROOT/pages/cron-source.adoc @@ -48,9 +48,8 @@ spec: 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 `cron-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -98,7 +97,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/dns-dig-action.adoc b/docs/modules/ROOT/pages/dns-dig-action.adoc index 05d8d4538..8eb227b17 100644 --- a/docs/modules/ROOT/pages/dns-dig-action.adoc +++ b/docs/modules/ROOT/pages/dns-dig-action.adoc @@ -56,7 +56,6 @@ spec: 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 `dns-dig-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/dns-ip-action.adoc b/docs/modules/ROOT/pages/dns-ip-action.adoc index 36640244c..cd4408468 100644 --- a/docs/modules/ROOT/pages/dns-ip-action.adoc +++ b/docs/modules/ROOT/pages/dns-ip-action.adoc @@ -52,7 +52,6 @@ spec: 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 `dns-ip-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/dns-lookup-action.adoc b/docs/modules/ROOT/pages/dns-lookup-action.adoc index b55fbedd6..a71ecf005 100644 --- a/docs/modules/ROOT/pages/dns-lookup-action.adoc +++ b/docs/modules/ROOT/pages/dns-lookup-action.adoc @@ -52,7 +52,6 @@ spec: 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 `dns-lookup-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/dropbox-sink.adoc b/docs/modules/ROOT/pages/dropbox-sink.adoc index 8786b3e07..7152a2da1 100644 --- a/docs/modules/ROOT/pages/dropbox-sink.adoc +++ b/docs/modules/ROOT/pages/dropbox-sink.adoc @@ -57,9 +57,8 @@ spec: accessToken: "The Dropbox Access Token" clientIdentifier: "The Client Identifier" remotePath: "The Remote Path" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `dropbox-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -108,7 +107,7 @@ spec: accessToken: "The Dropbox Access Token" clientIdentifier: "The Client Identifier" remotePath: "The Remote Path" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/dropbox-source.adoc b/docs/modules/ROOT/pages/dropbox-source.adoc index 1e0a21b19..56ec6ce27 100644 --- a/docs/modules/ROOT/pages/dropbox-source.adoc +++ b/docs/modules/ROOT/pages/dropbox-source.adoc @@ -53,9 +53,8 @@ spec: 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 `dropbox-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -105,7 +104,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/earthquake-source.adoc b/docs/modules/ROOT/pages/earthquake-source.adoc index 17ee3f718..5600d5ed8 100644 --- a/docs/modules/ROOT/pages/earthquake-source.adoc +++ b/docs/modules/ROOT/pages/earthquake-source.adoc @@ -45,9 +45,8 @@ spec: 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 `earthquake-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -92,7 +91,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc b/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc index e6389000f..f4aed5a8b 100644 --- a/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc +++ b/docs/modules/ROOT/pages/elasticsearch-index-sink.adoc @@ -62,9 +62,8 @@ spec: properties: clusterName: "quickstart" hostAddresses: "quickstart-es-http:9200" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `elasticsearch-index-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -112,7 +111,7 @@ spec: properties: clusterName: "quickstart" hostAddresses: "quickstart-es-http:9200" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/elasticsearch-search-source.adoc b/docs/modules/ROOT/pages/elasticsearch-search-source.adoc index 1eac213ee..c9d070664 100644 --- a/docs/modules/ROOT/pages/elasticsearch-search-source.adoc +++ b/docs/modules/ROOT/pages/elasticsearch-search-source.adoc @@ -56,9 +56,8 @@ spec: 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 `elasticsearch-search-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -108,7 +107,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/exec-sink.adoc b/docs/modules/ROOT/pages/exec-sink.adoc index db6d73b1f..e278ff24e 100644 --- a/docs/modules/ROOT/pages/exec-sink.adoc +++ b/docs/modules/ROOT/pages/exec-sink.adoc @@ -52,9 +52,8 @@ spec: name: exec-sink properties: executable: "The Executable Command" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `exec-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -101,7 +100,7 @@ spec: name: exec-sink properties: executable: "The Executable Command" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/extract-field-action.adoc b/docs/modules/ROOT/pages/extract-field-action.adoc index 65a73aec3..189275fd1 100644 --- a/docs/modules/ROOT/pages/extract-field-action.adoc +++ b/docs/modules/ROOT/pages/extract-field-action.adoc @@ -55,7 +55,6 @@ spec: 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 `extract-field-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/fhir-source.adoc b/docs/modules/ROOT/pages/fhir-source.adoc index 4eec9bc14..ad37fcfe8 100644 --- a/docs/modules/ROOT/pages/fhir-source.adoc +++ b/docs/modules/ROOT/pages/fhir-source.adoc @@ -54,9 +54,8 @@ spec: 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 `fhir-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -105,7 +104,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/file-watch-source.adoc b/docs/modules/ROOT/pages/file-watch-source.adoc index ec643dd00..f32882959 100644 --- a/docs/modules/ROOT/pages/file-watch-source.adoc +++ b/docs/modules/ROOT/pages/file-watch-source.adoc @@ -47,9 +47,8 @@ spec: 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 `file-watch-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -96,7 +95,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/freemarker-template-action.adoc b/docs/modules/ROOT/pages/freemarker-template-action.adoc index 3010f10b6..a8ca2a08a 100644 --- a/docs/modules/ROOT/pages/freemarker-template-action.adoc +++ b/docs/modules/ROOT/pages/freemarker-template-action.adoc @@ -57,7 +57,6 @@ spec: 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 `freemarker-template-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/ftp-sink.adoc b/docs/modules/ROOT/pages/ftp-sink.adoc index dcbb4d2e3..66cf84633 100644 --- a/docs/modules/ROOT/pages/ftp-sink.adoc +++ b/docs/modules/ROOT/pages/ftp-sink.adoc @@ -61,9 +61,8 @@ spec: directoryName: "The Directory Name" password: "The Password" username: "The Username" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `ftp-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -113,7 +112,7 @@ spec: directoryName: "The Directory Name" password: "The Password" username: "The Username" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/ftp-source.adoc b/docs/modules/ROOT/pages/ftp-source.adoc index e26d5b529..3fbbb0a5b 100644 --- a/docs/modules/ROOT/pages/ftp-source.adoc +++ b/docs/modules/ROOT/pages/ftp-source.adoc @@ -56,9 +56,8 @@ spec: 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 `ftp-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -108,7 +107,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/ftps-sink.adoc b/docs/modules/ROOT/pages/ftps-sink.adoc index 329869c33..a620c4ade 100644 --- a/docs/modules/ROOT/pages/ftps-sink.adoc +++ b/docs/modules/ROOT/pages/ftps-sink.adoc @@ -61,9 +61,8 @@ spec: directoryName: "The Directory Name" password: "The Password" username: "The Username" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `ftps-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -113,7 +112,7 @@ spec: directoryName: "The Directory Name" password: "The Password" username: "The Username" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/ftps-source.adoc b/docs/modules/ROOT/pages/ftps-source.adoc index e7d7dd502..f59b57da2 100644 --- a/docs/modules/ROOT/pages/ftps-source.adoc +++ b/docs/modules/ROOT/pages/ftps-source.adoc @@ -56,9 +56,8 @@ spec: 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 `ftps-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -108,7 +107,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/github-source.adoc b/docs/modules/ROOT/pages/github-source.adoc index b58ad6b0b..e92673422 100644 --- a/docs/modules/ROOT/pages/github-source.adoc +++ b/docs/modules/ROOT/pages/github-source.adoc @@ -51,9 +51,8 @@ spec: 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 `github-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -102,7 +101,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/google-calendar-source.adoc b/docs/modules/ROOT/pages/google-calendar-source.adoc index 06bf00d02..1c9630aac 100644 --- a/docs/modules/ROOT/pages/google-calendar-source.adoc +++ b/docs/modules/ROOT/pages/google-calendar-source.adoc @@ -61,9 +61,8 @@ spec: 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 `google-calendar-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -116,7 +115,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/google-mail-source.adoc b/docs/modules/ROOT/pages/google-mail-source.adoc index 2162b5cef..5eaca2be3 100644 --- a/docs/modules/ROOT/pages/google-mail-source.adoc +++ b/docs/modules/ROOT/pages/google-mail-source.adoc @@ -60,9 +60,8 @@ spec: 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 `google-mail-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -114,7 +113,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/google-sheets-source.adoc b/docs/modules/ROOT/pages/google-sheets-source.adoc index f8cee5ac1..27a15e84a 100644 --- a/docs/modules/ROOT/pages/google-sheets-source.adoc +++ b/docs/modules/ROOT/pages/google-sheets-source.adoc @@ -61,9 +61,8 @@ spec: 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 `google-sheets-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -116,7 +115,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/has-header-filter-action.adoc b/docs/modules/ROOT/pages/has-header-filter-action.adoc index d3beb5c06..7cf1775fa 100644 --- a/docs/modules/ROOT/pages/has-header-filter-action.adoc +++ b/docs/modules/ROOT/pages/has-header-filter-action.adoc @@ -55,7 +55,6 @@ spec: 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 `has-header-filter-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/header-matches-filter-action.adoc b/docs/modules/ROOT/pages/header-matches-filter-action.adoc index 9c4b4281c..a4886b9ec 100644 --- a/docs/modules/ROOT/pages/header-matches-filter-action.adoc +++ b/docs/modules/ROOT/pages/header-matches-filter-action.adoc @@ -56,7 +56,6 @@ spec: 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 `header-matches-filter-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/hoist-field-action.adoc b/docs/modules/ROOT/pages/hoist-field-action.adoc index b6f5a672f..9573363ff 100644 --- a/docs/modules/ROOT/pages/hoist-field-action.adoc +++ b/docs/modules/ROOT/pages/hoist-field-action.adoc @@ -55,7 +55,6 @@ spec: 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. diff --git a/docs/modules/ROOT/pages/http-secured-sink.adoc b/docs/modules/ROOT/pages/http-secured-sink.adoc index ec6fd1465..b1f684d2c 100644 --- a/docs/modules/ROOT/pages/http-secured-sink.adoc +++ b/docs/modules/ROOT/pages/http-secured-sink.adoc @@ -51,9 +51,8 @@ spec: name: http-secured-sink properties: url: "https://my-service/path" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `http-secured-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -100,7 +99,7 @@ spec: name: http-secured-sink properties: url: "https://my-service/path" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/http-secured-source.adoc b/docs/modules/ROOT/pages/http-secured-source.adoc index 5757c67ec..175b614b6 100644 --- a/docs/modules/ROOT/pages/http-secured-source.adoc +++ b/docs/modules/ROOT/pages/http-secured-source.adoc @@ -52,9 +52,8 @@ spec: 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 `http-secured-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -101,7 +100,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/http-sink.adoc b/docs/modules/ROOT/pages/http-sink.adoc index 8bfdafb3d..78507bd97 100644 --- a/docs/modules/ROOT/pages/http-sink.adoc +++ b/docs/modules/ROOT/pages/http-sink.adoc @@ -47,9 +47,8 @@ spec: name: http-sink properties: url: "https://my-service/path" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `http-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -96,7 +95,7 @@ spec: name: http-sink properties: url: "https://my-service/path" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/http-source.adoc b/docs/modules/ROOT/pages/http-source.adoc index ebb1b0bcb..344924344 100644 --- a/docs/modules/ROOT/pages/http-source.adoc +++ b/docs/modules/ROOT/pages/http-source.adoc @@ -48,9 +48,8 @@ spec: 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 `http-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -97,7 +96,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/infinispan-source.adoc b/docs/modules/ROOT/pages/infinispan-source.adoc index 98e13c875..da4258169 100644 --- a/docs/modules/ROOT/pages/infinispan-source.adoc +++ b/docs/modules/ROOT/pages/infinispan-source.adoc @@ -57,9 +57,8 @@ spec: 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 `infinispan-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -109,7 +108,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/insert-field-action.adoc b/docs/modules/ROOT/pages/insert-field-action.adoc index 1c5442852..21216aa4b 100644 --- a/docs/modules/ROOT/pages/insert-field-action.adoc +++ b/docs/modules/ROOT/pages/insert-field-action.adoc @@ -57,7 +57,6 @@ spec: 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 `insert-field-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/insert-header-action.adoc b/docs/modules/ROOT/pages/insert-header-action.adoc index d8ed19a5d..e75e62725 100644 --- a/docs/modules/ROOT/pages/insert-header-action.adoc +++ b/docs/modules/ROOT/pages/insert-header-action.adoc @@ -57,7 +57,6 @@ spec: 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 `insert-header-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/is-tombstone-filter-action.adoc b/docs/modules/ROOT/pages/is-tombstone-filter-action.adoc index 79b427a47..061f5400a 100644 --- a/docs/modules/ROOT/pages/is-tombstone-filter-action.adoc +++ b/docs/modules/ROOT/pages/is-tombstone-filter-action.adoc @@ -46,7 +46,6 @@ spec: 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 `is-tombstone-filter-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/jira-source.adoc b/docs/modules/ROOT/pages/jira-source.adoc index 173871672..d025334fc 100644 --- a/docs/modules/ROOT/pages/jira-source.adoc +++ b/docs/modules/ROOT/pages/jira-source.adoc @@ -51,9 +51,8 @@ spec: 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 `jira-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -102,7 +101,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/jms-amqp-10-sink.adoc b/docs/modules/ROOT/pages/jms-amqp-10-sink.adoc index af8c12897..c4ee01565 100644 --- a/docs/modules/ROOT/pages/jms-amqp-10-sink.adoc +++ b/docs/modules/ROOT/pages/jms-amqp-10-sink.adoc @@ -49,9 +49,8 @@ spec: properties: destinationName: "The Destination Name" remoteURI: "amqp://my-host:31616" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `jms-amqp-10-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -99,7 +98,7 @@ spec: properties: destinationName: "The Destination Name" remoteURI: "amqp://my-host:31616" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/jms-amqp-10-source.adoc b/docs/modules/ROOT/pages/jms-amqp-10-source.adoc index 77e0a195b..41d6012b2 100644 --- a/docs/modules/ROOT/pages/jms-amqp-10-source.adoc +++ b/docs/modules/ROOT/pages/jms-amqp-10-source.adoc @@ -49,9 +49,8 @@ spec: 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 `jms-amqp-10-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -99,7 +98,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/jms-apache-artemis-sink.adoc b/docs/modules/ROOT/pages/jms-apache-artemis-sink.adoc index 3cfe50cfc..5bc7d0261 100644 --- a/docs/modules/ROOT/pages/jms-apache-artemis-sink.adoc +++ b/docs/modules/ROOT/pages/jms-apache-artemis-sink.adoc @@ -49,9 +49,8 @@ spec: properties: brokerURL: "tcp://my-host:61616" destinationName: "person" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `jms-apache-artemis-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -99,7 +98,7 @@ spec: properties: brokerURL: "tcp://my-host:61616" destinationName: "person" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/jms-apache-artemis-source.adoc b/docs/modules/ROOT/pages/jms-apache-artemis-source.adoc index e1da2e295..0810dc71a 100644 --- a/docs/modules/ROOT/pages/jms-apache-artemis-source.adoc +++ b/docs/modules/ROOT/pages/jms-apache-artemis-source.adoc @@ -49,9 +49,8 @@ spec: 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 `jms-apache-artemis-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -99,7 +98,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/json-deserialize-action.adoc b/docs/modules/ROOT/pages/json-deserialize-action.adoc index df0136377..1aa37aa63 100644 --- a/docs/modules/ROOT/pages/json-deserialize-action.adoc +++ b/docs/modules/ROOT/pages/json-deserialize-action.adoc @@ -46,7 +46,6 @@ spec: 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-deserialize-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/json-schema-validator-action.adoc b/docs/modules/ROOT/pages/json-schema-validator-action.adoc index d51b445b8..f46d6816e 100644 --- a/docs/modules/ROOT/pages/json-schema-validator-action.adoc +++ b/docs/modules/ROOT/pages/json-schema-validator-action.adoc @@ -57,7 +57,6 @@ spec: 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-schema-validator-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/json-serialize-action.adoc b/docs/modules/ROOT/pages/json-serialize-action.adoc index 578974620..0d735046b 100644 --- a/docs/modules/ROOT/pages/json-serialize-action.adoc +++ b/docs/modules/ROOT/pages/json-serialize-action.adoc @@ -46,7 +46,6 @@ spec: 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. diff --git a/docs/modules/ROOT/pages/jsonata-action.adoc b/docs/modules/ROOT/pages/jsonata-action.adoc index 83b2dcb30..63b639ae7 100644 --- a/docs/modules/ROOT/pages/jsonata-action.adoc +++ b/docs/modules/ROOT/pages/jsonata-action.adoc @@ -57,7 +57,6 @@ spec: 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 `jsonata-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/kafka-manual-commit-action.adoc b/docs/modules/ROOT/pages/kafka-manual-commit-action.adoc index b39dd7465..2ef8db6d2 100644 --- a/docs/modules/ROOT/pages/kafka-manual-commit-action.adoc +++ b/docs/modules/ROOT/pages/kafka-manual-commit-action.adoc @@ -46,7 +46,6 @@ spec: 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 `kafka-manual-commit-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/kafka-not-secured-sink.adoc b/docs/modules/ROOT/pages/kafka-not-secured-sink.adoc index 82292d44a..9403c7f3d 100644 --- a/docs/modules/ROOT/pages/kafka-not-secured-sink.adoc +++ b/docs/modules/ROOT/pages/kafka-not-secured-sink.adoc @@ -56,9 +56,8 @@ spec: properties: brokers: "The Brokers" topic: "The Topic Names" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `kafka-not-secured-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -106,7 +105,7 @@ spec: properties: brokers: "The Brokers" topic: "The Topic Names" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/kafka-not-secured-source.adoc b/docs/modules/ROOT/pages/kafka-not-secured-source.adoc index 71049dd52..c782de8f4 100644 --- a/docs/modules/ROOT/pages/kafka-not-secured-source.adoc +++ b/docs/modules/ROOT/pages/kafka-not-secured-source.adoc @@ -52,9 +52,8 @@ spec: 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 `kafka-not-secured-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -102,7 +101,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/kafka-sink.adoc b/docs/modules/ROOT/pages/kafka-sink.adoc index 4adbd68bf..410731476 100644 --- a/docs/modules/ROOT/pages/kafka-sink.adoc +++ b/docs/modules/ROOT/pages/kafka-sink.adoc @@ -62,9 +62,8 @@ spec: password: "The Password" topic: "The Topic Names" user: "The Username" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `kafka-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -114,7 +113,7 @@ spec: password: "The Password" topic: "The Topic Names" user: "The Username" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/kafka-source.adoc b/docs/modules/ROOT/pages/kafka-source.adoc index b6c92aab4..d58652ac9 100644 --- a/docs/modules/ROOT/pages/kafka-source.adoc +++ b/docs/modules/ROOT/pages/kafka-source.adoc @@ -58,9 +58,8 @@ spec: 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 `kafka-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -110,7 +109,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/log-sink.adoc b/docs/modules/ROOT/pages/log-sink.adoc index c0d1b515b..c13e3e950 100644 --- a/docs/modules/ROOT/pages/log-sink.adoc +++ b/docs/modules/ROOT/pages/log-sink.adoc @@ -45,9 +45,8 @@ spec: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: log-sink - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `log-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -92,7 +91,7 @@ spec: kind: Kamelet apiVersion: camel.apache.org/v1alpha1 name: log-sink - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/mail-imap-source.adoc b/docs/modules/ROOT/pages/mail-imap-source.adoc index 34d9509b2..d80e096a6 100644 --- a/docs/modules/ROOT/pages/mail-imap-source.adoc +++ b/docs/modules/ROOT/pages/mail-imap-source.adoc @@ -53,9 +53,8 @@ spec: 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 `mail-imap-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -104,7 +103,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/mariadb-sink.adoc b/docs/modules/ROOT/pages/mariadb-sink.adoc index 559804f1f..8ec4c18b4 100644 --- a/docs/modules/ROOT/pages/mariadb-sink.adoc +++ b/docs/modules/ROOT/pages/mariadb-sink.adoc @@ -67,9 +67,8 @@ spec: query: "INSERT INTO accounts (username,city) VALUES (:#username,:#city)" serverName: "localhost" username: "The Username" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `mariadb-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -120,7 +119,7 @@ spec: query: "INSERT INTO accounts (username,city) VALUES (:#username,:#city)" serverName: "localhost" username: "The Username" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/mariadb-source.adoc b/docs/modules/ROOT/pages/mariadb-source.adoc index cedbbe67f..94d18382f 100644 --- a/docs/modules/ROOT/pages/mariadb-source.adoc +++ b/docs/modules/ROOT/pages/mariadb-source.adoc @@ -60,9 +60,8 @@ spec: 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 `mariadb-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -113,7 +112,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/mask-field-action.adoc b/docs/modules/ROOT/pages/mask-field-action.adoc index a348d0ab5..53b37121a 100644 --- a/docs/modules/ROOT/pages/mask-field-action.adoc +++ b/docs/modules/ROOT/pages/mask-field-action.adoc @@ -57,7 +57,6 @@ spec: 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 `mask-field-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/message-timestamp-router-action.adoc b/docs/modules/ROOT/pages/message-timestamp-router-action.adoc index 71d565ce4..688994d1b 100644 --- a/docs/modules/ROOT/pages/message-timestamp-router-action.adoc +++ b/docs/modules/ROOT/pages/message-timestamp-router-action.adoc @@ -58,7 +58,6 @@ spec: 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 `message-timestamp-router-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/minio-sink.adoc b/docs/modules/ROOT/pages/minio-sink.adoc index 8c8bedbd2..f401f6abb 100644 --- a/docs/modules/ROOT/pages/minio-sink.adoc +++ b/docs/modules/ROOT/pages/minio-sink.adoc @@ -59,9 +59,8 @@ spec: bucketName: "The Bucket Name" endpoint: "http://localhost:9000" secretKey: "The Secret Key" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `minio-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -111,7 +110,7 @@ spec: bucketName: "The Bucket Name" endpoint: "http://localhost:9000" secretKey: "The Secret Key" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/minio-source.adoc b/docs/modules/ROOT/pages/minio-source.adoc index a17347e0c..bd8427408 100644 --- a/docs/modules/ROOT/pages/minio-source.adoc +++ b/docs/modules/ROOT/pages/minio-source.adoc @@ -54,9 +54,8 @@ spec: 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 `minio-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -106,7 +105,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/mongodb-sink.adoc b/docs/modules/ROOT/pages/mongodb-sink.adoc index 6c651120f..0c1bbd55c 100644 --- a/docs/modules/ROOT/pages/mongodb-sink.adoc +++ b/docs/modules/ROOT/pages/mongodb-sink.adoc @@ -62,9 +62,8 @@ spec: hosts: "The MongoDB Hosts" password: "The MongoDB Password" username: "The MongoDB Username" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `mongodb-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -115,7 +114,7 @@ spec: hosts: "The MongoDB Hosts" password: "The MongoDB Password" username: "The MongoDB Username" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/mongodb-source.adoc b/docs/modules/ROOT/pages/mongodb-source.adoc index 358ecf5b2..8062dca88 100644 --- a/docs/modules/ROOT/pages/mongodb-source.adoc +++ b/docs/modules/ROOT/pages/mongodb-source.adoc @@ -60,9 +60,8 @@ spec: 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 `mongodb-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -113,7 +112,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/mqtt-source.adoc b/docs/modules/ROOT/pages/mqtt-source.adoc index 897e3f199..97a6c90e6 100644 --- a/docs/modules/ROOT/pages/mqtt-source.adoc +++ b/docs/modules/ROOT/pages/mqtt-source.adoc @@ -49,9 +49,8 @@ spec: 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 `mqtt-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -99,7 +98,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/mustache-template-action.adoc b/docs/modules/ROOT/pages/mustache-template-action.adoc index 8805d9684..f8daa969d 100644 --- a/docs/modules/ROOT/pages/mustache-template-action.adoc +++ b/docs/modules/ROOT/pages/mustache-template-action.adoc @@ -57,7 +57,6 @@ spec: 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 `mustache-template-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/mvel-template-action.adoc b/docs/modules/ROOT/pages/mvel-template-action.adoc index efd3b1ea4..478e0bbb6 100644 --- a/docs/modules/ROOT/pages/mvel-template-action.adoc +++ b/docs/modules/ROOT/pages/mvel-template-action.adoc @@ -57,7 +57,6 @@ spec: 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 `mvel-template-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/mysql-sink.adoc b/docs/modules/ROOT/pages/mysql-sink.adoc index 6dc5f3efd..64cd7afdd 100644 --- a/docs/modules/ROOT/pages/mysql-sink.adoc +++ b/docs/modules/ROOT/pages/mysql-sink.adoc @@ -67,9 +67,8 @@ spec: query: "INSERT INTO accounts (username,city) VALUES (:#username,:#city)" serverName: "localhost" username: "The Username" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `mysql-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -120,7 +119,7 @@ spec: query: "INSERT INTO accounts (username,city) VALUES (:#username,:#city)" serverName: "localhost" username: "The Username" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/mysql-source.adoc b/docs/modules/ROOT/pages/mysql-source.adoc index 01e577c6b..e0d135632 100644 --- a/docs/modules/ROOT/pages/mysql-source.adoc +++ b/docs/modules/ROOT/pages/mysql-source.adoc @@ -60,9 +60,8 @@ spec: 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 `mysql-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -113,7 +112,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/nats-sink.adoc b/docs/modules/ROOT/pages/nats-sink.adoc index a790bef74..4bb4fe644 100644 --- a/docs/modules/ROOT/pages/nats-sink.adoc +++ b/docs/modules/ROOT/pages/nats-sink.adoc @@ -48,9 +48,8 @@ spec: properties: servers: "The Servers" topic: "The Topic" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `nats-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -98,7 +97,7 @@ spec: properties: servers: "The Servers" topic: "The Topic" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/nats-source.adoc b/docs/modules/ROOT/pages/nats-source.adoc index 71e796024..4a5b51bd2 100644 --- a/docs/modules/ROOT/pages/nats-source.adoc +++ b/docs/modules/ROOT/pages/nats-source.adoc @@ -48,9 +48,8 @@ spec: 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 `nats-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -98,7 +97,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/openai-classification-action.adoc b/docs/modules/ROOT/pages/openai-classification-action.adoc index 15d0f1eb8..92890efaa 100644 --- a/docs/modules/ROOT/pages/openai-classification-action.adoc +++ b/docs/modules/ROOT/pages/openai-classification-action.adoc @@ -68,7 +68,6 @@ spec: 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 `openai-classification-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/openai-completion-action.adoc b/docs/modules/ROOT/pages/openai-completion-action.adoc index c9af81615..ffc7c43f7 100644 --- a/docs/modules/ROOT/pages/openai-completion-action.adoc +++ b/docs/modules/ROOT/pages/openai-completion-action.adoc @@ -65,7 +65,6 @@ spec: 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 `openai-completion-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/pdf-action.adoc b/docs/modules/ROOT/pages/pdf-action.adoc index a9a329008..ef8fe148a 100644 --- a/docs/modules/ROOT/pages/pdf-action.adoc +++ b/docs/modules/ROOT/pages/pdf-action.adoc @@ -55,7 +55,6 @@ spec: 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 `pdf-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/postgresql-sink.adoc b/docs/modules/ROOT/pages/postgresql-sink.adoc index 18c828a83..8bd796d25 100644 --- a/docs/modules/ROOT/pages/postgresql-sink.adoc +++ b/docs/modules/ROOT/pages/postgresql-sink.adoc @@ -63,9 +63,8 @@ spec: query: "INSERT INTO accounts (username,city) VALUES (:#username,:#city)" serverName: "localhost" username: "The Username" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `postgresql-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -116,7 +115,7 @@ spec: query: "INSERT INTO accounts (username,city) VALUES (:#username,:#city)" serverName: "localhost" username: "The Username" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/postgresql-source.adoc b/docs/modules/ROOT/pages/postgresql-source.adoc index c7b26585e..5bbbd6bbe 100644 --- a/docs/modules/ROOT/pages/postgresql-source.adoc +++ b/docs/modules/ROOT/pages/postgresql-source.adoc @@ -56,9 +56,8 @@ spec: 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 `postgresql-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -109,7 +108,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/predicate-filter-action.adoc b/docs/modules/ROOT/pages/predicate-filter-action.adoc index 42ef01eb0..7055741ba 100644 --- a/docs/modules/ROOT/pages/predicate-filter-action.adoc +++ b/docs/modules/ROOT/pages/predicate-filter-action.adoc @@ -55,7 +55,6 @@ spec: 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 `predicate-filter-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/protobuf-deserialize-action.adoc b/docs/modules/ROOT/pages/protobuf-deserialize-action.adoc index 0ef4fc0b4..0fae7455b 100644 --- a/docs/modules/ROOT/pages/protobuf-deserialize-action.adoc +++ b/docs/modules/ROOT/pages/protobuf-deserialize-action.adoc @@ -55,7 +55,6 @@ spec: 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 `protobuf-deserialize-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/protobuf-serialize-action.adoc b/docs/modules/ROOT/pages/protobuf-serialize-action.adoc index fca537e94..577cc6a5f 100644 --- a/docs/modules/ROOT/pages/protobuf-serialize-action.adoc +++ b/docs/modules/ROOT/pages/protobuf-serialize-action.adoc @@ -55,7 +55,6 @@ spec: 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 `protobuf-serialize-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/rabbitmq-source.adoc b/docs/modules/ROOT/pages/rabbitmq-source.adoc index b4f12240d..996a1c7e8 100644 --- a/docs/modules/ROOT/pages/rabbitmq-source.adoc +++ b/docs/modules/ROOT/pages/rabbitmq-source.adoc @@ -53,9 +53,8 @@ spec: 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 `rabbitmq-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -105,7 +104,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/regex-router-action.adoc b/docs/modules/ROOT/pages/regex-router-action.adoc index 6548df078..381c6233f 100644 --- a/docs/modules/ROOT/pages/regex-router-action.adoc +++ b/docs/modules/ROOT/pages/regex-router-action.adoc @@ -57,7 +57,6 @@ spec: 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 `regex-router-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/replace-field-action.adoc b/docs/modules/ROOT/pages/replace-field-action.adoc index be08e1c78..cf6a1fa5e 100644 --- a/docs/modules/ROOT/pages/replace-field-action.adoc +++ b/docs/modules/ROOT/pages/replace-field-action.adoc @@ -59,7 +59,6 @@ spec: 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 `replace-field-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/salesforce-source.adoc b/docs/modules/ROOT/pages/salesforce-source.adoc index 5ef886446..ece5d2b4e 100644 --- a/docs/modules/ROOT/pages/salesforce-source.adoc +++ b/docs/modules/ROOT/pages/salesforce-source.adoc @@ -57,9 +57,8 @@ spec: 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 `salesforce-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -111,7 +110,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/sftp-sink.adoc b/docs/modules/ROOT/pages/sftp-sink.adoc index 77993ca54..37fe03bb8 100644 --- a/docs/modules/ROOT/pages/sftp-sink.adoc +++ b/docs/modules/ROOT/pages/sftp-sink.adoc @@ -61,9 +61,8 @@ spec: directoryName: "The Directory Name" password: "The Password" username: "The Username" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `sftp-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -113,7 +112,7 @@ spec: directoryName: "The Directory Name" password: "The Password" username: "The Username" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/sftp-source.adoc b/docs/modules/ROOT/pages/sftp-source.adoc index 767d4a554..9af0d26a4 100644 --- a/docs/modules/ROOT/pages/sftp-source.adoc +++ b/docs/modules/ROOT/pages/sftp-source.adoc @@ -56,9 +56,8 @@ spec: 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 `sftp-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -108,7 +107,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/slack-sink.adoc b/docs/modules/ROOT/pages/slack-sink.adoc index 853f5a854..2dd9b163d 100644 --- a/docs/modules/ROOT/pages/slack-sink.adoc +++ b/docs/modules/ROOT/pages/slack-sink.adoc @@ -51,9 +51,8 @@ spec: properties: channel: "#myroom" webhookUrl: "The Webhook URL" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `slack-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -101,7 +100,7 @@ spec: properties: channel: "#myroom" webhookUrl: "The Webhook URL" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/slack-source.adoc b/docs/modules/ROOT/pages/slack-source.adoc index f3b9d982a..584e3da79 100644 --- a/docs/modules/ROOT/pages/slack-source.adoc +++ b/docs/modules/ROOT/pages/slack-source.adoc @@ -48,9 +48,8 @@ spec: 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 `slack-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -98,7 +97,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/sqlserver-sink.adoc b/docs/modules/ROOT/pages/sqlserver-sink.adoc index 69d723784..70b34c278 100644 --- a/docs/modules/ROOT/pages/sqlserver-sink.adoc +++ b/docs/modules/ROOT/pages/sqlserver-sink.adoc @@ -67,9 +67,8 @@ spec: query: "INSERT INTO accounts (username,city) VALUES (:#username,:#city)" serverName: "localhost" username: "The Username" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `sqlserver-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -120,7 +119,7 @@ spec: query: "INSERT INTO accounts (username,city) VALUES (:#username,:#city)" serverName: "localhost" username: "The Username" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/sqlserver-source.adoc b/docs/modules/ROOT/pages/sqlserver-source.adoc index ec2251fe9..04a2ddff9 100644 --- a/docs/modules/ROOT/pages/sqlserver-source.adoc +++ b/docs/modules/ROOT/pages/sqlserver-source.adoc @@ -60,9 +60,8 @@ spec: 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 `sqlserver-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -113,7 +112,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/ssh-source.adoc b/docs/modules/ROOT/pages/ssh-source.adoc index 7072fc16b..5810866f1 100644 --- a/docs/modules/ROOT/pages/ssh-source.adoc +++ b/docs/modules/ROOT/pages/ssh-source.adoc @@ -54,9 +54,8 @@ spec: 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 `ssh-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -106,7 +105,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/string-template-action.adoc b/docs/modules/ROOT/pages/string-template-action.adoc index ca5659887..99961ffaf 100644 --- a/docs/modules/ROOT/pages/string-template-action.adoc +++ b/docs/modules/ROOT/pages/string-template-action.adoc @@ -57,7 +57,6 @@ spec: 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 `string-template-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/telegram-sink.adoc b/docs/modules/ROOT/pages/telegram-sink.adoc index d2371f5ca..f0c75023d 100644 --- a/docs/modules/ROOT/pages/telegram-sink.adoc +++ b/docs/modules/ROOT/pages/telegram-sink.adoc @@ -60,9 +60,8 @@ spec: name: telegram-sink properties: authorizationToken: "The Token" - + ---- - Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. Save the `telegram-sink-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -109,7 +108,7 @@ spec: name: telegram-sink properties: authorizationToken: "The Token" - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/telegram-source.adoc b/docs/modules/ROOT/pages/telegram-source.adoc index 316b2fca9..5283d47c7 100644 --- a/docs/modules/ROOT/pages/telegram-source.adoc +++ b/docs/modules/ROOT/pages/telegram-source.adoc @@ -48,9 +48,8 @@ spec: 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 `telegram-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -97,7 +96,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/timer-source.adoc b/docs/modules/ROOT/pages/timer-source.adoc index f84f3c66e..27fa25ec7 100644 --- a/docs/modules/ROOT/pages/timer-source.adoc +++ b/docs/modules/ROOT/pages/timer-source.adoc @@ -48,9 +48,8 @@ spec: 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 `timer-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -97,7 +96,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/timestamp-router-action.adoc b/docs/modules/ROOT/pages/timestamp-router-action.adoc index ec795c4d8..e8656f369 100644 --- a/docs/modules/ROOT/pages/timestamp-router-action.adoc +++ b/docs/modules/ROOT/pages/timestamp-router-action.adoc @@ -55,7 +55,6 @@ spec: 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 `timestamp-router-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/topic-name-matches-filter-action.adoc b/docs/modules/ROOT/pages/topic-name-matches-filter-action.adoc index 34277d998..5ccfb98c8 100644 --- a/docs/modules/ROOT/pages/topic-name-matches-filter-action.adoc +++ b/docs/modules/ROOT/pages/topic-name-matches-filter-action.adoc @@ -55,7 +55,6 @@ spec: 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 `topic-name-matches-filter-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/twitter-directmessage-source.adoc b/docs/modules/ROOT/pages/twitter-directmessage-source.adoc index 5c4bf1f85..f3c45cf1d 100644 --- a/docs/modules/ROOT/pages/twitter-directmessage-source.adoc +++ b/docs/modules/ROOT/pages/twitter-directmessage-source.adoc @@ -57,9 +57,8 @@ spec: 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 `twitter-directmessage-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -110,7 +109,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/twitter-search-source.adoc b/docs/modules/ROOT/pages/twitter-search-source.adoc index 967f08868..b94c2e5b4 100644 --- a/docs/modules/ROOT/pages/twitter-search-source.adoc +++ b/docs/modules/ROOT/pages/twitter-search-source.adoc @@ -57,9 +57,8 @@ spec: 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 `twitter-search-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -110,7 +109,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/twitter-timeline-source.adoc b/docs/modules/ROOT/pages/twitter-timeline-source.adoc index 76e10378a..672555038 100644 --- a/docs/modules/ROOT/pages/twitter-timeline-source.adoc +++ b/docs/modules/ROOT/pages/twitter-timeline-source.adoc @@ -57,9 +57,8 @@ spec: 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 `twitter-timeline-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -110,7 +109,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace. diff --git a/docs/modules/ROOT/pages/value-to-key-action.adoc b/docs/modules/ROOT/pages/value-to-key-action.adoc index 744bd6703..b4f0aaf4a 100644 --- a/docs/modules/ROOT/pages/value-to-key-action.adoc +++ b/docs/modules/ROOT/pages/value-to-key-action.adoc @@ -55,7 +55,6 @@ spec: 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 `value-to-key-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/velocity-template-action.adoc b/docs/modules/ROOT/pages/velocity-template-action.adoc index a0a1b0681..068d37c39 100644 --- a/docs/modules/ROOT/pages/velocity-template-action.adoc +++ b/docs/modules/ROOT/pages/velocity-template-action.adoc @@ -57,7 +57,6 @@ spec: 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 `velocity-template-action-binding.yaml` file into your hard drive, then configure it according to your needs. diff --git a/docs/modules/ROOT/pages/webhook-source.adoc b/docs/modules/ROOT/pages/webhook-source.adoc index 33c643c4a..6ee051183 100644 --- a/docs/modules/ROOT/pages/webhook-source.adoc +++ b/docs/modules/ROOT/pages/webhook-source.adoc @@ -50,9 +50,8 @@ spec: 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 `webhook-source-binding.yaml` file into your hard drive, then configure it according to your needs. @@ -97,7 +96,7 @@ spec: kind: KafkaTopic apiVersion: kafka.strimzi.io/v1beta1 name: my-topic - + ---- Ensure that you've installed https://strimzi.io/[Strimzi] and created a topic named `my-topic` in the current namespace.