diff --git a/.github/workflows/yaks-tests.yaml b/.github/workflows/yaks-tests.yaml index 45a9c4c95..ef78be8ad 100644 --- a/.github/workflows/yaks-tests.yaml +++ b/.github/workflows/yaks-tests.yaml @@ -42,7 +42,7 @@ concurrency: env: YAKS_VERSION: 0.16.0 - YAKS_RUN_OPTIONS: "--timeout=15m --local -e YAKS_CAMELK_MAX_ATTEMPTS=10 -e YAKS_JBANG_CAMEL_VERSION=4.0.0 -e YAKS_JBANG_KAMELETS_VERSION=4.0.0-SNAPSHOT -e YAKS_JBANG_KAMELETS_LOCAL_DIR=../../../kamelets -e YAKS_KAMELET_API_VERSION=v1alpha1" + YAKS_RUN_OPTIONS: "--timeout=15m --local -e YAKS_CAMELK_MAX_ATTEMPTS=10 -e YAKS_JBANG_CAMEL_VERSION=4.0.1 -e YAKS_JBANG_KAMELETS_VERSION=4.0.0 -e YAKS_JBANG_KAMELETS_LOCAL_DIR=../../../kamelets" jobs: test: diff --git a/README.md b/README.md index bee42a721..2a23f42fb 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This repository contains the default Kamelet catalog used by Apache Camel and its sub-projects. -Kamelets in this repository can be used natively in Camel K, Camel, Camel-Quarkus and Camel-spring-boot integrations, without additional configuration steps. Users just need to reference the Kamelets by name in the URI (e.g. `kamelet:timer-source?message=Hello`), or use them in a `KameletBinding`, for Camel K, in particular. +Kamelets in this repository can be used natively in Camel K, Camel, Camel-Quarkus and Camel-spring-boot integrations, without additional configuration steps. Users just need to reference the Kamelets by name in the URI (e.g. `kamelet:timer-source?message=Hello`), or use them in a `Pipe`, for Camel K, in particular. **NOTE**: Camel K (and other sub-projects) will only use a specific version of this Kamelet catalog. Refer to the release notes of the sub-project for more information. @@ -162,11 +162,11 @@ Kamelets submitted with tests that verify their correctness **MUST** be labeled **NOTE**: there's no way at the moment to inject credentials for external systems into the CI in order to write more advanced tests, but we can expect we'll find an usable strategy in the long run -### Kamelet Binding Examples +### Kamelet Pipe Examples -Binding examples are highly encouraged to be added under `templates/bindings/camel-k` directory for Kamelet Binding and `templates/bindings/core` for the YAML routes. +Pipe examples are highly encouraged to be added under `templates/pipes/camel-k` directory for Kamelet Pipe and `templates/pipes/core` for the YAML routes. -When the Kamelet Catalog documentation is generated, the examples in each Kamelet documentation page are automatically generated, but the generator code is not wise enough and it may generate a Kamelet Binding that doesn't work, requiring additional steps. In this case, the binding example should be added to the above mentioned directories, and add the comment marker at the first line `"# example_for_kamelet_doc"` only in the Camel K Kamelet Binding example (in `templates/bindings/camel-k`). When the documentation mechanism runs, it will source this binding example into the kamelet documentation page as example. +When the Kamelet Catalog documentation is generated, the examples in each Kamelet documentation page are automatically generated, but the generator code is not wise enough and it may generate a Kamelet Pipe that doesn't work, requiring additional steps. In this case, the pipe example should be added to the above mentioned directories, and add the comment marker at the first line `"# example_for_kamelet_doc"` only in the Camel K Kamelet Pipe example (in `templates/pipes/camel-k`). When the documentation mechanism runs, it will source this pipe example into the kamelet documentation page as example. ## Releasing diff --git a/docs/modules/ROOT/examples/js/kamelets.js b/docs/modules/ROOT/examples/js/kamelets.js index abc7c643e..c20cda6c4 100644 --- a/docs/modules/ROOT/examples/js/kamelets.js +++ b/docs/modules/ROOT/examples/js/kamelets.js @@ -28,8 +28,8 @@ const QUOTE_REPLACEMENTS = { '\\': '\\\\', } -// marker added to the first line of kamelet binding files in templates/bindings/camel-k -// generator will not generate a kamelet binding example and will source this kamelet binding file into the generated doc +// marker added to the first line of kamelet pipe files in templates/pipes/camel-k +// generator will not generate a kamelet pipe example and will source this kamelet pipe file into the generated doc const EXAMPLE_KAMELET_DOC_MARKER = "example_for_kamelet_doc" // regex to replace the sink type @@ -38,11 +38,11 @@ const regex = new RegExp(`( sink:\\n\\s*ref:\\n)(\\s*kind:)(.*)(\\n\\s*apiVersi const svgb64Prefix = 'data:image/svg+xml;base64,' module.exports = { - binding: (binding, apiVersion, kind, metadata_, spec_, refKind, refApiVersion, refName) => { + pipe: (pipe, apiVersion, kind, metadata_, spec_, refKind, refApiVersion, refName) => { const name = metadata_.name - const metadata = {name: `${name}-binding`} + const metadata = {name: `${name}-pipe`} - genExample = shouldGenerateKameletBindingExample(metadata.name) + genExample = shouldGenerateKameletPipeExample(metadata.name) if (genExample) { const kamelet = { ref: { @@ -61,19 +61,19 @@ module.exports = { } const base = { apiVersion, - kind: 'KameletBinding', + kind: 'Pipe', metadata, } - const fn = kameletBindings[binding] || (() => `unrecognized binding ${binding}`) + const fn = kameletPipes[pipe] || (() => `unrecognized pipe ${pipe}`) return fn(base, kamelet, platform) } else { - content = readKameletBindingExample(metadata.name, refApiVersion, refKind, refName) + content = readKameletPipeExample(metadata.name, refApiVersion, refKind, refName) return content } }, - bindingCommand: (binding, name, definition, topic) => { - const namePrefix = { action: 'step-0', sink: 'sink', source: 'source' }[binding] + pipeCommand: (pipe, name, definition, topic) => { + const namePrefix = { action: 'step-0', sink: 'sink', source: 'source' }[pipe] const quote = (string) => (typeof string === 'String') ? string.replace(QUOTED_CHARS, (m) => QUOTE_REPLACEMENTS[m]) : string @@ -144,25 +144,25 @@ function kameletPropertyList (definition) { ) } -// verify if the existing kamelet binding example should be automatically generated +// verify if the existing kamelet pipe example should be automatically generated // by checking if there is a comment marker in the first line -function shouldGenerateKameletBindingExample(file) { - f = "../camel-kamelets/templates/bindings/camel-k/" + file + ".yaml" +function shouldGenerateKameletPipeExample(file) { + f = "../camel-kamelets/templates/pipes/camel-k/" + file + ".yaml" try { bufContent = fs.readFileSync(f) content = bufContent.toString() line = content.split(/\r?\n/)[0] return line.indexOf(EXAMPLE_KAMELET_DOC_MARKER) < 0 } catch (err) { - // in case there is no kamelet binding example file, assume the example should be generated + // in case there is no kamelet pipe example file, assume the example should be generated return true } } -// source the kamelet binding example from the example file +// source the kamelet pipe example from the example file // skip the first line and replace the sink kind when the kind is a knative channel -function readKameletBindingExample(file, apiVersion, kind, name) { - f = "../camel-kamelets/templates/bindings/camel-k/" + file + ".yaml" +function readKameletPipeExample(file, apiVersion, kind, name) { + f = "../camel-kamelets/templates/pipes/camel-k/" + file + ".yaml" try { bufContent = fs.readFileSync(f) content = bufContent.toString() @@ -177,13 +177,13 @@ function readKameletBindingExample(file, apiVersion, kind, name) { yamlDoc = yaml.load(klbContent); return yamlDoc } catch (err) { - console.log("Error reading kamelet binding example file " + file + ": " + err) + console.log("Error reading kamelet pipe example file " + file + ": " + err) return err } } -const kameletBindings = { +const kameletPipes = { action: (base, kamelet, platform) => Object.assign(base, { spec: { source: { diff --git a/docs/modules/ROOT/examples/template/kamelet-options.adoc b/docs/modules/ROOT/examples/template/kamelet-options.adoc index 89ca59ce1..7980ab183 100644 --- a/docs/modules/ROOT/examples/template/kamelet-options.adoc +++ b/docs/modules/ROOT/examples/template/kamelet-options.adoc @@ -81,10 +81,10 @@ endif::[] :ref-kind: Channel :ref-name: mychannel -.{name}-binding.yaml +.{name}-pipe.yaml [source,yaml,subs='+attributes,macros'] ---- -jsonpathExpression::example$yaml/${basename}.kamelet.yaml[query='$', format='kamelets.binding("{type}", apiVersion, kind, metadata, spec, "{ref-kind}", "{ref-api-version}", "{ref-name}")', outputFormat=yml, requires={requires}] +jsonpathExpression::example$yaml/${basename}.kamelet.yaml[query='$', format='kamelets.pipe("{type}", apiVersion, kind, metadata, spec, "{ref-kind}", "{ref-api-version}", "{ref-name}")', outputFormat=yml, requires={requires}] ---- ==== *Prerequisite* @@ -93,13 +93,13 @@ You have xref:{camel-k-docs-version}@camel-k::installation/installation.adoc[Cam ==== *Procedure for using the cluster CLI* -. Save the \`{name}-binding.yaml\` file to your local drive, and then edit it as needed for your configuration. +. Save the \`{name}-pipe.yaml\` file to your local drive, and then edit it as needed for your configuration. . Run the {type} by using the following command: + [source,shell,subs=+attributes] ---- -kubectl apply -f {name}-binding.yaml +kubectl apply -f {name}-pipe.yaml ---- ==== *Procedure for using the Kamel CLI* @@ -108,10 +108,10 @@ Configure and run the {type} by using the following command: [source,shell,subs='+attributes,macros'] ---- -jsonpathExpression:example$yaml/${basename}.kamelet.yaml[query='$.spec', format='kamelets.bindingCommand("{type}", "{name}", definition, "channel:mychannel")', requires={requires}] +jsonpathExpression:example$yaml/${basename}.kamelet.yaml[query='$.spec', format='kamelets.pipeCommand("{type}", "{name}", definition, "channel:mychannel")', requires={requires}] ---- -This command creates the KameletBinding in the current namespace on the cluster. +This command creates the Kamelet Pipe in the current namespace on the cluster. === Kafka {type} @@ -126,10 +126,10 @@ endif::[] :ref-kind: KafkaTopic :ref-name: my-topic -.{name}-binding.yaml +.{name}-pipe.yaml [source,yaml,subs='+attributes,macros'] ---- -jsonpathExpression::example$yaml/${basename}.kamelet.yaml[query='$', format='kamelets.binding("{type}", apiVersion, kind, metadata, spec, "{ref-kind}", "{ref-api-version}", "{ref-name}")', outputFormat=yml, requires={requires}] +jsonpathExpression::example$yaml/${basename}.kamelet.yaml[query='$', format='kamelets.pipe("{type}", apiVersion, kind, metadata, spec, "{ref-kind}", "{ref-api-version}", "{ref-name}")', outputFormat=yml, requires={requires}] ---- ==== *Prerequisites* @@ -140,13 +140,13 @@ jsonpathExpression::example$yaml/${basename}.kamelet.yaml[query='$', format='kam ==== *Procedure for using the cluster CLI* -. Save the \`{name}-binding.yaml\` file to your local drive, and then edit it as needed for your configuration. +. Save the \`{name}-pipe.yaml\` file to your local drive, and then edit it as needed for your configuration. . Run the {type} by using the following command: + [source,shell,subs=+attributes] ---- -kubectl apply -f {name}-binding.yaml +kubectl apply -f {name}-pipe.yaml ---- ==== *Procedure for using the Kamel CLI* @@ -155,10 +155,10 @@ Configure and run the {type} by using the following command: [source,shell,subs='+attributes,macros'] ---- -jsonpathExpression::example$yaml/${basename}.kamelet.yaml[query='$.spec', format='kamelets.bindingCommand("{type}", "{name}", definition, "kafka.strimzi.io/v1beta1:KafkaTopic:my-topic")', requires={requires}] +jsonpathExpression::example$yaml/${basename}.kamelet.yaml[query='$.spec', format='kamelets.pipeCommand("{type}", "{name}", definition, "kafka.strimzi.io/v1beta1:KafkaTopic:my-topic")', requires={requires}] ---- -This command creates the KameletBinding in the current namespace on the cluster. +This command creates the Kamelet Pipe in the current namespace on the cluster. == Kamelet source file diff --git a/kamelets/jms-ibm-mq-sink.kamelet.yaml b/kamelets/jms-ibm-mq-sink.kamelet.yaml index b9a597f6e..759354365 100644 --- a/kamelets/jms-ibm-mq-sink.kamelet.yaml +++ b/kamelets/jms-ibm-mq-sink.kamelet.yaml @@ -34,7 +34,7 @@ spec: description: |- A Kamelet that can produce events to an IBM MQ message queue using JMS. - In your KameletBinding file, you must explicitly declare the IBM MQ Server driver dependency in spec->integration->dependencies + In your Pipe file, you must explicitly declare the IBM MQ Server driver dependency in spec->integration->dependencies - "mvn:com.ibm.mq:com.ibm.mq.allclient:" diff --git a/kamelets/jms-ibm-mq-source.kamelet.yaml b/kamelets/jms-ibm-mq-source.kamelet.yaml index 28860bb65..6a3193af3 100644 --- a/kamelets/jms-ibm-mq-source.kamelet.yaml +++ b/kamelets/jms-ibm-mq-source.kamelet.yaml @@ -34,7 +34,7 @@ spec: description: |- A Kamelet that can read events from an IBM MQ message queue using JMS. - In your KameletBinding file, you must explicitly declare the IBM MQ Server driver dependency in spec->integration->dependencies + In your Pipe file, you must explicitly declare the IBM MQ Server driver dependency in spec->integration->dependencies - "mvn:com.ibm.mq:com.ibm.mq.allclient:" diff --git a/kamelets/mariadb-sink.kamelet.yaml b/kamelets/mariadb-sink.kamelet.yaml index 0544af11d..0fa0d98a1 100644 --- a/kamelets/mariadb-sink.kamelet.yaml +++ b/kamelets/mariadb-sink.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Send data to a MariaDB Database. - In your KameletBinding file, you must explicitly declare the MariaDB Server driver dependency in spec->integration->dependencies. + In your Pipe file, you must explicitly declare the MariaDB Server driver dependency in spec->integration->dependencies. - "mvn:org.mariadb.jdbc:mariadb-java-client:" diff --git a/kamelets/mariadb-source.kamelet.yaml b/kamelets/mariadb-source.kamelet.yaml index 0a41a674f..3f02c4815 100644 --- a/kamelets/mariadb-source.kamelet.yaml +++ b/kamelets/mariadb-source.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Query data from a MariaDB Database. - In your KameletBinding file, you must explicitly declare the MariaDB Server driver dependency in spec->integration->dependencies + In your Pipe file, you must explicitly declare the MariaDB Server driver dependency in spec->integration->dependencies - "mvn:org.mariadb.jdbc:mariadb-java-client:" required: diff --git a/kamelets/mysql-sink.kamelet.yaml b/kamelets/mysql-sink.kamelet.yaml index 57897cbe8..900f601c9 100644 --- a/kamelets/mysql-sink.kamelet.yaml +++ b/kamelets/mysql-sink.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Send data to a MySQL Database. - In your KameletBinding file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies. + In your Pipe file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies. - "mvn:mysql:mysql-connector-java:" diff --git a/kamelets/mysql-source.kamelet.yaml b/kamelets/mysql-source.kamelet.yaml index 5b292b1b3..142e4b9d8 100644 --- a/kamelets/mysql-source.kamelet.yaml +++ b/kamelets/mysql-source.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Query data from a MySQL Database. - In your KameletBinding file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies. + In your Pipe file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies. - "mvn:mysql:mysql-connector-java:" required: diff --git a/kamelets/oracle-database-sink.kamelet.yaml b/kamelets/oracle-database-sink.kamelet.yaml index 299fd8b0e..7a9ea9902 100644 --- a/kamelets/oracle-database-sink.kamelet.yaml +++ b/kamelets/oracle-database-sink.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Send data to an Oracle Database. - In your KameletBinding file, you must explicitly declare the Oracle Database driver dependency in spec->integration->dependencies. + In your Pipe file, you must explicitly declare the Oracle Database driver dependency in spec->integration->dependencies. - "mvn:com.oracle.database.jdbc:ojdbc11:" diff --git a/kamelets/oracle-database-source.kamelet.yaml b/kamelets/oracle-database-source.kamelet.yaml index 6239df181..86afa248d 100644 --- a/kamelets/oracle-database-source.kamelet.yaml +++ b/kamelets/oracle-database-source.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Query data from an Oracle Database. - In your KameletBinding file, you must explicitly declare the Oracle Database driver dependency in spec->integration->dependencies. + In your Pipe file, you must explicitly declare the Oracle Database driver dependency in spec->integration->dependencies. - "mvn:com.oracle.database.jdbc:ojdbc11:" required: diff --git a/kamelets/sqlserver-sink.kamelet.yaml b/kamelets/sqlserver-sink.kamelet.yaml index 63758d9aa..edb901707 100644 --- a/kamelets/sqlserver-sink.kamelet.yaml +++ b/kamelets/sqlserver-sink.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Send data to a Microsoft SQL Server Database. - In your KameletBinding file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies + In your Pipe file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies - "mvn:com.microsoft.sqlserver:mssql-jdbc:" diff --git a/kamelets/sqlserver-source.kamelet.yaml b/kamelets/sqlserver-source.kamelet.yaml index 29b1c77e3..02a0a80c8 100644 --- a/kamelets/sqlserver-source.kamelet.yaml +++ b/kamelets/sqlserver-source.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Query data from a Microsoft SQL Server Database. - In your KameletBinding file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies + In your Pipe file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies - "mvn:com.microsoft.sqlserver:mssql-jdbc:" required: diff --git a/library/camel-kamelets/src/main/resources/kamelets/jms-ibm-mq-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/jms-ibm-mq-sink.kamelet.yaml index b9a597f6e..759354365 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/jms-ibm-mq-sink.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/jms-ibm-mq-sink.kamelet.yaml @@ -34,7 +34,7 @@ spec: description: |- A Kamelet that can produce events to an IBM MQ message queue using JMS. - In your KameletBinding file, you must explicitly declare the IBM MQ Server driver dependency in spec->integration->dependencies + In your Pipe file, you must explicitly declare the IBM MQ Server driver dependency in spec->integration->dependencies - "mvn:com.ibm.mq:com.ibm.mq.allclient:" diff --git a/library/camel-kamelets/src/main/resources/kamelets/jms-ibm-mq-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/jms-ibm-mq-source.kamelet.yaml index 28860bb65..6a3193af3 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/jms-ibm-mq-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/jms-ibm-mq-source.kamelet.yaml @@ -34,7 +34,7 @@ spec: description: |- A Kamelet that can read events from an IBM MQ message queue using JMS. - In your KameletBinding file, you must explicitly declare the IBM MQ Server driver dependency in spec->integration->dependencies + In your Pipe file, you must explicitly declare the IBM MQ Server driver dependency in spec->integration->dependencies - "mvn:com.ibm.mq:com.ibm.mq.allclient:" diff --git a/library/camel-kamelets/src/main/resources/kamelets/mariadb-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/mariadb-sink.kamelet.yaml index 0544af11d..0fa0d98a1 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/mariadb-sink.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/mariadb-sink.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Send data to a MariaDB Database. - In your KameletBinding file, you must explicitly declare the MariaDB Server driver dependency in spec->integration->dependencies. + In your Pipe file, you must explicitly declare the MariaDB Server driver dependency in spec->integration->dependencies. - "mvn:org.mariadb.jdbc:mariadb-java-client:" diff --git a/library/camel-kamelets/src/main/resources/kamelets/mariadb-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/mariadb-source.kamelet.yaml index 0a41a674f..3f02c4815 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/mariadb-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/mariadb-source.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Query data from a MariaDB Database. - In your KameletBinding file, you must explicitly declare the MariaDB Server driver dependency in spec->integration->dependencies + In your Pipe file, you must explicitly declare the MariaDB Server driver dependency in spec->integration->dependencies - "mvn:org.mariadb.jdbc:mariadb-java-client:" required: diff --git a/library/camel-kamelets/src/main/resources/kamelets/mysql-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/mysql-sink.kamelet.yaml index 57897cbe8..900f601c9 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/mysql-sink.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/mysql-sink.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Send data to a MySQL Database. - In your KameletBinding file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies. + In your Pipe file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies. - "mvn:mysql:mysql-connector-java:" diff --git a/library/camel-kamelets/src/main/resources/kamelets/mysql-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/mysql-source.kamelet.yaml index 5b292b1b3..142e4b9d8 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/mysql-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/mysql-source.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Query data from a MySQL Database. - In your KameletBinding file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies. + In your Pipe file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies. - "mvn:mysql:mysql-connector-java:" required: diff --git a/library/camel-kamelets/src/main/resources/kamelets/oracle-database-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/oracle-database-sink.kamelet.yaml index 299fd8b0e..7a9ea9902 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/oracle-database-sink.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/oracle-database-sink.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Send data to an Oracle Database. - In your KameletBinding file, you must explicitly declare the Oracle Database driver dependency in spec->integration->dependencies. + In your Pipe file, you must explicitly declare the Oracle Database driver dependency in spec->integration->dependencies. - "mvn:com.oracle.database.jdbc:ojdbc11:" diff --git a/library/camel-kamelets/src/main/resources/kamelets/oracle-database-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/oracle-database-source.kamelet.yaml index 6239df181..86afa248d 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/oracle-database-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/oracle-database-source.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Query data from an Oracle Database. - In your KameletBinding file, you must explicitly declare the Oracle Database driver dependency in spec->integration->dependencies. + In your Pipe file, you must explicitly declare the Oracle Database driver dependency in spec->integration->dependencies. - "mvn:com.oracle.database.jdbc:ojdbc11:" required: diff --git a/library/camel-kamelets/src/main/resources/kamelets/sqlserver-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/sqlserver-sink.kamelet.yaml index 63758d9aa..edb901707 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/sqlserver-sink.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/sqlserver-sink.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Send data to a Microsoft SQL Server Database. - In your KameletBinding file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies + In your Pipe file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies - "mvn:com.microsoft.sqlserver:mssql-jdbc:" diff --git a/library/camel-kamelets/src/main/resources/kamelets/sqlserver-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/sqlserver-source.kamelet.yaml index 29b1c77e3..02a0a80c8 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/sqlserver-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/sqlserver-source.kamelet.yaml @@ -33,7 +33,7 @@ spec: description: |- Query data from a Microsoft SQL Server Database. - In your KameletBinding file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies + In your Pipe file, you must explicitly declare the SQL Server driver dependency in spec->integration->dependencies - "mvn:com.microsoft.sqlserver:mssql-jdbc:" required: diff --git a/templates/bindings/camel-k/kamelet.yaml.tmpl b/templates/bindings/camel-k/kamelet.yaml.tmpl deleted file mode 100644 index 8918860b3..000000000 --- a/templates/bindings/camel-k/kamelet.yaml.tmpl +++ /dev/null @@ -1 +0,0 @@ -{{ template "kamelet-binding-sink-source.tmpl" . }} \ No newline at end of file diff --git a/templates/bindings/camel-k/avro-deserialize-action-binding.yaml b/templates/pipes/camel-k/avro-deserialize-action-pipe.yaml similarity index 92% rename from templates/bindings/camel-k/avro-deserialize-action-binding.yaml rename to templates/pipes/camel-k/avro-deserialize-action-pipe.yaml index 2289aa21b..ed628c4b8 100644 --- a/templates/bindings/camel-k/avro-deserialize-action-binding.yaml +++ b/templates/pipes/camel-k/avro-deserialize-action-pipe.yaml @@ -1,8 +1,8 @@ # example_for_kamelet_doc -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: avro-deserialize-action-binding + name: avro-deserialize-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/avro-serialize-action-binding.yaml b/templates/pipes/camel-k/avro-serialize-action-pipe.yaml similarity index 88% rename from templates/bindings/camel-k/avro-serialize-action-binding.yaml rename to templates/pipes/camel-k/avro-serialize-action-pipe.yaml index 6faa8c524..afe9ef7bf 100644 --- a/templates/bindings/camel-k/avro-serialize-action-binding.yaml +++ b/templates/pipes/camel-k/avro-serialize-action-pipe.yaml @@ -1,8 +1,8 @@ # example_for_kamelet_doc -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: avro-serialize-action-binding + name: avro-serialize-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-cloudwatch-sink-binding.yaml b/templates/pipes/camel-k/aws-cloudwatch-sink-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/aws-cloudwatch-sink-binding.yaml rename to templates/pipes/camel-k/aws-cloudwatch-sink-pipe.yaml index 2e7efcb3e..cd3236ffc 100644 --- a/templates/bindings/camel-k/aws-cloudwatch-sink-binding.yaml +++ b/templates/pipes/camel-k/aws-cloudwatch-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-cloudwatch-sink-binding + name: aws-cloudwatch-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-ddb-streams-source-binding.yaml b/templates/pipes/camel-k/aws-ddb-streams-source-pipe.yaml similarity index 78% rename from templates/bindings/camel-k/aws-ddb-streams-source-binding.yaml rename to templates/pipes/camel-k/aws-ddb-streams-source-pipe.yaml index 51da427d7..0ccbd7f0d 100644 --- a/templates/bindings/camel-k/aws-ddb-streams-source-binding.yaml +++ b/templates/pipes/camel-k/aws-ddb-streams-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-ddb-streams-source-binding + name: aws-ddb-streams-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-ec2-sink-binding.yaml b/templates/pipes/camel-k/aws-ec2-sink-pipe.yaml similarity index 78% rename from templates/bindings/camel-k/aws-ec2-sink-binding.yaml rename to templates/pipes/camel-k/aws-ec2-sink-pipe.yaml index 7d8162945..3283f9f15 100644 --- a/templates/bindings/camel-k/aws-ec2-sink-binding.yaml +++ b/templates/pipes/camel-k/aws-ec2-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-ec2-sink-binding + name: aws-ec2-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-kinesis-firehose-sink-binding.yaml b/templates/pipes/camel-k/aws-kinesis-firehose-sink-pipe.yaml similarity index 78% rename from templates/bindings/camel-k/aws-kinesis-firehose-sink-binding.yaml rename to templates/pipes/camel-k/aws-kinesis-firehose-sink-pipe.yaml index 03318630d..912ebfad8 100644 --- a/templates/bindings/camel-k/aws-kinesis-firehose-sink-binding.yaml +++ b/templates/pipes/camel-k/aws-kinesis-firehose-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-kinesis-firehose-sink-binding + name: aws-kinesis-firehose-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-kinesis-sink-binding.yaml b/templates/pipes/camel-k/aws-kinesis-sink-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/aws-kinesis-sink-binding.yaml rename to templates/pipes/camel-k/aws-kinesis-sink-pipe.yaml index 9ddda9886..e0310c4db 100644 --- a/templates/bindings/camel-k/aws-kinesis-sink-binding.yaml +++ b/templates/pipes/camel-k/aws-kinesis-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-kinesis-sink-binding + name: aws-kinesis-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-kinesis-source-binding.yaml b/templates/pipes/camel-k/aws-kinesis-source-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/aws-kinesis-source-binding.yaml rename to templates/pipes/camel-k/aws-kinesis-source-pipe.yaml index 2b0cbe56c..9eac73ca6 100644 --- a/templates/bindings/camel-k/aws-kinesis-source-binding.yaml +++ b/templates/pipes/camel-k/aws-kinesis-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-kinesis-source-binding + name: aws-kinesis-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-lambda-sink-binding.yaml b/templates/pipes/camel-k/aws-lambda-sink-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/aws-lambda-sink-binding.yaml rename to templates/pipes/camel-k/aws-lambda-sink-pipe.yaml index a9f92ae65..485f62788 100644 --- a/templates/bindings/camel-k/aws-lambda-sink-binding.yaml +++ b/templates/pipes/camel-k/aws-lambda-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-lambda-sink-binding + name: aws-lambda-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-redshift-sink-binding.yaml b/templates/pipes/camel-k/aws-redshift-sink-pipe.yaml similarity index 82% rename from templates/bindings/camel-k/aws-redshift-sink-binding.yaml rename to templates/pipes/camel-k/aws-redshift-sink-pipe.yaml index 9770e233f..60f6bd64c 100644 --- a/templates/bindings/camel-k/aws-redshift-sink-binding.yaml +++ b/templates/pipes/camel-k/aws-redshift-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-redshift-sink-binding + name: aws-redshift-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-redshift-source-binding.yaml b/templates/pipes/camel-k/aws-redshift-source-pipe.yaml similarity index 82% rename from templates/bindings/camel-k/aws-redshift-source-binding.yaml rename to templates/pipes/camel-k/aws-redshift-source-pipe.yaml index c1bdf8a8c..ff9952dd8 100644 --- a/templates/bindings/camel-k/aws-redshift-source-binding.yaml +++ b/templates/pipes/camel-k/aws-redshift-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-redshift-source-binding + name: aws-redshift-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-s3-sink-binding.yaml b/templates/pipes/camel-k/aws-s3-sink-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/aws-s3-sink-binding.yaml rename to templates/pipes/camel-k/aws-s3-sink-pipe.yaml index f99b97b7b..83868119b 100644 --- a/templates/bindings/camel-k/aws-s3-sink-binding.yaml +++ b/templates/pipes/camel-k/aws-s3-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-s3-sink-binding + name: aws-s3-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-s3-source-binding.yaml b/templates/pipes/camel-k/aws-s3-source-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/aws-s3-source-binding.yaml rename to templates/pipes/camel-k/aws-s3-source-pipe.yaml index c84dd2b7c..c7521317b 100644 --- a/templates/bindings/camel-k/aws-s3-source-binding.yaml +++ b/templates/pipes/camel-k/aws-s3-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-s3-source-binding + name: aws-s3-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-s3-streaming-upload-sink-binding.yaml b/templates/pipes/camel-k/aws-s3-streaming-upload-sink-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/aws-s3-streaming-upload-sink-binding.yaml rename to templates/pipes/camel-k/aws-s3-streaming-upload-sink-pipe.yaml index 2aa7e6f49..0002ab4ca 100644 --- a/templates/bindings/camel-k/aws-s3-streaming-upload-sink-binding.yaml +++ b/templates/pipes/camel-k/aws-s3-streaming-upload-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-s3-streaming-upload-sink-binding + name: aws-s3-streaming-upload-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-secrets-manager-sink-binding.yaml b/templates/pipes/camel-k/aws-secrets-manager-sink-pipe.yaml similarity index 77% rename from templates/bindings/camel-k/aws-secrets-manager-sink-binding.yaml rename to templates/pipes/camel-k/aws-secrets-manager-sink-pipe.yaml index 5a92e5b5f..08664c408 100644 --- a/templates/bindings/camel-k/aws-secrets-manager-sink-binding.yaml +++ b/templates/pipes/camel-k/aws-secrets-manager-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-secrets-manager-sink-binding + name: aws-secrets-manager-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-sns-fifo-sink-binding.yaml b/templates/pipes/camel-k/aws-sns-fifo-sink-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/aws-sns-fifo-sink-binding.yaml rename to templates/pipes/camel-k/aws-sns-fifo-sink-pipe.yaml index d1eca85fb..2fe333f3b 100644 --- a/templates/bindings/camel-k/aws-sns-fifo-sink-binding.yaml +++ b/templates/pipes/camel-k/aws-sns-fifo-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-sns-fifo-sink-binding + name: aws-sns-fifo-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-sns-sink-binding.yaml b/templates/pipes/camel-k/aws-sns-sink-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/aws-sns-sink-binding.yaml rename to templates/pipes/camel-k/aws-sns-sink-pipe.yaml index c9b0186e8..0ca985e7c 100644 --- a/templates/bindings/camel-k/aws-sns-sink-binding.yaml +++ b/templates/pipes/camel-k/aws-sns-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-sns-sink-binding + name: aws-sns-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-sqs-batch-sink-binding.yaml b/templates/pipes/camel-k/aws-sqs-batch-sink-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/aws-sqs-batch-sink-binding.yaml rename to templates/pipes/camel-k/aws-sqs-batch-sink-pipe.yaml index 0efbb2646..c472d394d 100644 --- a/templates/bindings/camel-k/aws-sqs-batch-sink-binding.yaml +++ b/templates/pipes/camel-k/aws-sqs-batch-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-sqs-batch-sink-binding + name: aws-sqs-batch-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-sqs-fifo-sink-binding.yaml b/templates/pipes/camel-k/aws-sqs-fifo-sink-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/aws-sqs-fifo-sink-binding.yaml rename to templates/pipes/camel-k/aws-sqs-fifo-sink-pipe.yaml index 7030d135e..e2e3a25dc 100644 --- a/templates/bindings/camel-k/aws-sqs-fifo-sink-binding.yaml +++ b/templates/pipes/camel-k/aws-sqs-fifo-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-sqs-fifo-sink-binding + name: aws-sqs-fifo-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-sqs-sink-binding.yaml b/templates/pipes/camel-k/aws-sqs-sink-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/aws-sqs-sink-binding.yaml rename to templates/pipes/camel-k/aws-sqs-sink-pipe.yaml index 07e1d4883..4f3967f4b 100644 --- a/templates/bindings/camel-k/aws-sqs-sink-binding.yaml +++ b/templates/pipes/camel-k/aws-sqs-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-sqs-sink-binding + name: aws-sqs-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-sqs-source-binding.yaml b/templates/pipes/camel-k/aws-sqs-source-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/aws-sqs-source-binding.yaml rename to templates/pipes/camel-k/aws-sqs-source-pipe.yaml index fbdb73dec..d15b85178 100644 --- a/templates/bindings/camel-k/aws-sqs-source-binding.yaml +++ b/templates/pipes/camel-k/aws-sqs-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-sqs-source-binding + name: aws-sqs-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/aws-translate-action-binding.yaml b/templates/pipes/camel-k/aws-translate-action-pipe.yaml similarity index 84% rename from templates/bindings/camel-k/aws-translate-action-binding.yaml rename to templates/pipes/camel-k/aws-translate-action-pipe.yaml index 224417d46..e3362390c 100644 --- a/templates/bindings/camel-k/aws-translate-action-binding.yaml +++ b/templates/pipes/camel-k/aws-translate-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-translate-action-binding + name: aws-translate-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/azure-cosmosdb-source-binding.yaml b/templates/pipes/camel-k/azure-cosmosdb-source-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/azure-cosmosdb-source-binding.yaml rename to templates/pipes/camel-k/azure-cosmosdb-source-pipe.yaml index 53e384dfd..a39c31d8d 100644 --- a/templates/bindings/camel-k/azure-cosmosdb-source-binding.yaml +++ b/templates/pipes/camel-k/azure-cosmosdb-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: azure-cosmosdb-source-binding + name: azure-cosmosdb-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/azure-eventhubs-sink-binding.yaml b/templates/pipes/camel-k/azure-eventhubs-sink-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/azure-eventhubs-sink-binding.yaml rename to templates/pipes/camel-k/azure-eventhubs-sink-pipe.yaml index 68ede826b..bd1bfc32b 100644 --- a/templates/bindings/camel-k/azure-eventhubs-sink-binding.yaml +++ b/templates/pipes/camel-k/azure-eventhubs-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: azure-eventhubs-sink-binding + name: azure-eventhubs-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/azure-eventhubs-source-binding.yaml b/templates/pipes/camel-k/azure-eventhubs-source-pipe.yaml similarity index 85% rename from templates/bindings/camel-k/azure-eventhubs-source-binding.yaml rename to templates/pipes/camel-k/azure-eventhubs-source-pipe.yaml index 328850c3d..236862892 100644 --- a/templates/bindings/camel-k/azure-eventhubs-source-binding.yaml +++ b/templates/pipes/camel-k/azure-eventhubs-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: azure-eventhubs-source-binding + name: azure-eventhubs-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/azure-storage-blob-sink-binding.yaml b/templates/pipes/camel-k/azure-storage-blob-sink-pipe.yaml similarity index 78% rename from templates/bindings/camel-k/azure-storage-blob-sink-binding.yaml rename to templates/pipes/camel-k/azure-storage-blob-sink-pipe.yaml index 7fe635b68..31b7eb870 100644 --- a/templates/bindings/camel-k/azure-storage-blob-sink-binding.yaml +++ b/templates/pipes/camel-k/azure-storage-blob-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: azure-storage-blob-sink-binding + name: azure-storage-blob-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/azure-storage-blob-source-binding.yaml b/templates/pipes/camel-k/azure-storage-blob-source-pipe.yaml similarity index 77% rename from templates/bindings/camel-k/azure-storage-blob-source-binding.yaml rename to templates/pipes/camel-k/azure-storage-blob-source-pipe.yaml index bd61cfb8b..49bb8387a 100644 --- a/templates/bindings/camel-k/azure-storage-blob-source-binding.yaml +++ b/templates/pipes/camel-k/azure-storage-blob-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: azure-storage-blob-source-binding + name: azure-storage-blob-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/azure-storage-queue-sink-binding.yaml b/templates/pipes/camel-k/azure-storage-queue-sink-pipe.yaml similarity index 77% rename from templates/bindings/camel-k/azure-storage-queue-sink-binding.yaml rename to templates/pipes/camel-k/azure-storage-queue-sink-pipe.yaml index 111240308..1f4c11652 100644 --- a/templates/bindings/camel-k/azure-storage-queue-sink-binding.yaml +++ b/templates/pipes/camel-k/azure-storage-queue-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: azure-storage-queue-sink-binding + name: azure-storage-queue-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/azure-storage-queue-source-binding.yaml b/templates/pipes/camel-k/azure-storage-queue-source-pipe.yaml similarity index 77% rename from templates/bindings/camel-k/azure-storage-queue-source-binding.yaml rename to templates/pipes/camel-k/azure-storage-queue-source-pipe.yaml index 11fab442f..e47be8ba5 100644 --- a/templates/bindings/camel-k/azure-storage-queue-source-binding.yaml +++ b/templates/pipes/camel-k/azure-storage-queue-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: azure-storage-queue-source-binding + name: azure-storage-queue-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/bitcoin-source-binding.yaml b/templates/pipes/camel-k/bitcoin-source-pipe.yaml similarity index 70% rename from templates/bindings/camel-k/bitcoin-source-binding.yaml rename to templates/pipes/camel-k/bitcoin-source-pipe.yaml index 46a23aeae..fc06c5bb6 100644 --- a/templates/bindings/camel-k/bitcoin-source-binding.yaml +++ b/templates/pipes/camel-k/bitcoin-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: bitcoin-source-binding + name: bitcoin-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/caffeine-action-binding.yaml b/templates/pipes/camel-k/caffeine-action-pipe.yaml similarity index 95% rename from templates/bindings/camel-k/caffeine-action-binding.yaml rename to templates/pipes/camel-k/caffeine-action-pipe.yaml index cc6841c6f..315545a68 100644 --- a/templates/bindings/camel-k/caffeine-action-binding.yaml +++ b/templates/pipes/camel-k/caffeine-action-pipe.yaml @@ -1,8 +1,8 @@ # example_for_kamelet_doc -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: caffeine-action-binding + name: caffeine-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/cassandra-sink-binding.yaml b/templates/pipes/camel-k/cassandra-sink-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/cassandra-sink-binding.yaml rename to templates/pipes/camel-k/cassandra-sink-pipe.yaml index bbfa804e8..30088cb0f 100644 --- a/templates/bindings/camel-k/cassandra-sink-binding.yaml +++ b/templates/pipes/camel-k/cassandra-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: cassandra-sink-binding + name: cassandra-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/cassandra-source-binding.yaml b/templates/pipes/camel-k/cassandra-source-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/cassandra-source-binding.yaml rename to templates/pipes/camel-k/cassandra-source-pipe.yaml index 162583d08..e3c10dafb 100644 --- a/templates/bindings/camel-k/cassandra-source-binding.yaml +++ b/templates/pipes/camel-k/cassandra-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: cassandra-source-binding + name: cassandra-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/ceph-sink-binding.yaml b/templates/pipes/camel-k/ceph-sink-pipe.yaml similarity index 95% rename from templates/bindings/camel-k/ceph-sink-binding.yaml rename to templates/pipes/camel-k/ceph-sink-pipe.yaml index 5874e7095..3b9c04d9c 100644 --- a/templates/bindings/camel-k/ceph-sink-binding.yaml +++ b/templates/pipes/camel-k/ceph-sink-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- # This example uploads a kamelet-rocks.txt file to ceph object storage -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: ceph-sink-binding + name: ceph-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/ceph-source-binding.yaml b/templates/pipes/camel-k/ceph-source-pipe.yaml similarity index 92% rename from templates/bindings/camel-k/ceph-source-binding.yaml rename to templates/pipes/camel-k/ceph-source-pipe.yaml index 193f715be..27f1312d4 100644 --- a/templates/bindings/camel-k/ceph-source-binding.yaml +++ b/templates/pipes/camel-k/ceph-source-pipe.yaml @@ -14,10 +14,10 @@ # See the License for the specific language governing permissions and # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: ceph-source-binding + name: ceph-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/chuck-norris-source-binding.yaml b/templates/pipes/camel-k/chuck-norris-source-pipe.yaml similarity index 70% rename from templates/bindings/camel-k/chuck-norris-source-binding.yaml rename to templates/pipes/camel-k/chuck-norris-source-pipe.yaml index 825160be1..fe35249b5 100644 --- a/templates/bindings/camel-k/chuck-norris-source-binding.yaml +++ b/templates/pipes/camel-k/chuck-norris-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: chuck-norris-source-binding + name: chuck-norris-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/chunk-template-action-binding.yaml b/templates/pipes/camel-k/chunk-template-action-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/chunk-template-action-binding.yaml rename to templates/pipes/camel-k/chunk-template-action-pipe.yaml index 66c516b45..c3e64b7b7 100644 --- a/templates/bindings/camel-k/chunk-template-action-binding.yaml +++ b/templates/pipes/camel-k/chunk-template-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: chunk-template-action-binding + name: chunk-template-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/couchbase-sink-binding.yaml b/templates/pipes/camel-k/couchbase-sink-pipe.yaml similarity index 78% rename from templates/bindings/camel-k/couchbase-sink-binding.yaml rename to templates/pipes/camel-k/couchbase-sink-pipe.yaml index 258ef21ca..4896d994e 100644 --- a/templates/bindings/camel-k/couchbase-sink-binding.yaml +++ b/templates/pipes/camel-k/couchbase-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: couchbase-sink-binding + name: couchbase-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/cron-source-binding.yaml b/templates/pipes/camel-k/cron-source-pipe.yaml similarity index 77% rename from templates/bindings/camel-k/cron-source-binding.yaml rename to templates/pipes/camel-k/cron-source-pipe.yaml index bd753ca7d..d985e3d06 100644 --- a/templates/bindings/camel-k/cron-source-binding.yaml +++ b/templates/pipes/camel-k/cron-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: cron-source-binding + name: cron-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/delay-action-binding.yaml b/templates/pipes/camel-k/delay-action-pipe.yaml similarity index 82% rename from templates/bindings/camel-k/delay-action-binding.yaml rename to templates/pipes/camel-k/delay-action-pipe.yaml index 7a702dbbf..20ab7c4ea 100644 --- a/templates/bindings/camel-k/delay-action-binding.yaml +++ b/templates/pipes/camel-k/delay-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: delay-action-binding + name: delay-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/dns-dig-action-binding.yaml b/templates/pipes/camel-k/dns-dig-action-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/dns-dig-action-binding.yaml rename to templates/pipes/camel-k/dns-dig-action-pipe.yaml index 70761aa61..851152ac5 100644 --- a/templates/bindings/camel-k/dns-dig-action-binding.yaml +++ b/templates/pipes/camel-k/dns-dig-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: dns-dig-action-binding + name: dns-dig-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/dns-ip-action-binding.yaml b/templates/pipes/camel-k/dns-ip-action-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/dns-ip-action-binding.yaml rename to templates/pipes/camel-k/dns-ip-action-pipe.yaml index 2054ba04b..c6cf945da 100644 --- a/templates/bindings/camel-k/dns-ip-action-binding.yaml +++ b/templates/pipes/camel-k/dns-ip-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: dns-ip-action-binding + name: dns-ip-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/dns-lookup-action-binding.yaml b/templates/pipes/camel-k/dns-lookup-action-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/dns-lookup-action-binding.yaml rename to templates/pipes/camel-k/dns-lookup-action-pipe.yaml index 6bf0da394..5b90cff3f 100644 --- a/templates/bindings/camel-k/dns-lookup-action-binding.yaml +++ b/templates/pipes/camel-k/dns-lookup-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: dns-lookup-action-binding + name: dns-lookup-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/dropbox-sink-binding.yaml b/templates/pipes/camel-k/dropbox-sink-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/dropbox-sink-binding.yaml rename to templates/pipes/camel-k/dropbox-sink-pipe.yaml index 21d305610..0dd56b773 100644 --- a/templates/bindings/camel-k/dropbox-sink-binding.yaml +++ b/templates/pipes/camel-k/dropbox-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: dropbox-sink-binding + name: dropbox-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/dropbox-source-binding.yaml b/templates/pipes/camel-k/dropbox-source-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/dropbox-source-binding.yaml rename to templates/pipes/camel-k/dropbox-source-pipe.yaml index d1e77824a..8b5cd2209 100644 --- a/templates/bindings/camel-k/dropbox-source-binding.yaml +++ b/templates/pipes/camel-k/dropbox-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: dropbox-source-binding + name: dropbox-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/earthquake-source-binding.yaml b/templates/pipes/camel-k/earthquake-source-pipe.yaml similarity index 70% rename from templates/bindings/camel-k/earthquake-source-binding.yaml rename to templates/pipes/camel-k/earthquake-source-pipe.yaml index a4c77be9e..02edaf9a0 100644 --- a/templates/bindings/camel-k/earthquake-source-binding.yaml +++ b/templates/pipes/camel-k/earthquake-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: earthquake-source-binding + name: earthquake-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/elasticsearch-index-sink-binding.yaml b/templates/pipes/camel-k/elasticsearch-index-sink-pipe.yaml similarity index 76% rename from templates/bindings/camel-k/elasticsearch-index-sink-binding.yaml rename to templates/pipes/camel-k/elasticsearch-index-sink-pipe.yaml index ec2a1dc57..ca40e5468 100644 --- a/templates/bindings/camel-k/elasticsearch-index-sink-binding.yaml +++ b/templates/pipes/camel-k/elasticsearch-index-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: elasticsearch-index-sink-binding + name: elasticsearch-index-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/elasticsearch-search-source-binding.yaml b/templates/pipes/camel-k/elasticsearch-search-source-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/elasticsearch-search-source-binding.yaml rename to templates/pipes/camel-k/elasticsearch-search-source-pipe.yaml index e7e495f4c..ca8fe3dd7 100644 --- a/templates/bindings/camel-k/elasticsearch-search-source-binding.yaml +++ b/templates/pipes/camel-k/elasticsearch-search-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: elasticsearch-search-source-binding + name: elasticsearch-search-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/exec-sink-binding.yaml b/templates/pipes/camel-k/exec-sink-pipe.yaml similarity index 76% rename from templates/bindings/camel-k/exec-sink-binding.yaml rename to templates/pipes/camel-k/exec-sink-pipe.yaml index db07bf5d3..c588d72e9 100644 --- a/templates/bindings/camel-k/exec-sink-binding.yaml +++ b/templates/pipes/camel-k/exec-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: exec-sink-binding + name: exec-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/extract-field-action-binding.yaml b/templates/pipes/camel-k/extract-field-action-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/extract-field-action-binding.yaml rename to templates/pipes/camel-k/extract-field-action-pipe.yaml index 9572e3a17..f3777f973 100644 --- a/templates/bindings/camel-k/extract-field-action-binding.yaml +++ b/templates/pipes/camel-k/extract-field-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: extract-field-action-binding + name: extract-field-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/fhir-source-binding.yaml b/templates/pipes/camel-k/fhir-source-pipe.yaml similarity index 78% rename from templates/bindings/camel-k/fhir-source-binding.yaml rename to templates/pipes/camel-k/fhir-source-pipe.yaml index f250a9acc..0cb4938e9 100644 --- a/templates/bindings/camel-k/fhir-source-binding.yaml +++ b/templates/pipes/camel-k/fhir-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: fhir-source-binding + name: fhir-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/file-watch-source-binding.yaml b/templates/pipes/camel-k/file-watch-source-pipe.yaml similarity index 74% rename from templates/bindings/camel-k/file-watch-source-binding.yaml rename to templates/pipes/camel-k/file-watch-source-pipe.yaml index 15062e45b..27afa6f72 100644 --- a/templates/bindings/camel-k/file-watch-source-binding.yaml +++ b/templates/pipes/camel-k/file-watch-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: file-watch-source-binding + name: file-watch-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/freemarker-template-action-binding.yaml b/templates/pipes/camel-k/freemarker-template-action-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/freemarker-template-action-binding.yaml rename to templates/pipes/camel-k/freemarker-template-action-pipe.yaml index 28d61b243..4790d11fb 100644 --- a/templates/bindings/camel-k/freemarker-template-action-binding.yaml +++ b/templates/pipes/camel-k/freemarker-template-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: freemarker-template-action-binding + name: freemarker-template-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/ftp-sink-binding.yaml b/templates/pipes/camel-k/ftp-sink-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/ftp-sink-binding.yaml rename to templates/pipes/camel-k/ftp-sink-pipe.yaml index 062527e3c..a48199398 100644 --- a/templates/bindings/camel-k/ftp-sink-binding.yaml +++ b/templates/pipes/camel-k/ftp-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: ftp-sink-binding + name: ftp-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/ftp-source-binding.yaml b/templates/pipes/camel-k/ftp-source-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/ftp-source-binding.yaml rename to templates/pipes/camel-k/ftp-source-pipe.yaml index 0f5ecd66a..c488a8625 100644 --- a/templates/bindings/camel-k/ftp-source-binding.yaml +++ b/templates/pipes/camel-k/ftp-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: ftp-source-binding + name: ftp-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/ftps-sink-binding.yaml b/templates/pipes/camel-k/ftps-sink-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/ftps-sink-binding.yaml rename to templates/pipes/camel-k/ftps-sink-pipe.yaml index 98f8bd641..cffb3f37e 100644 --- a/templates/bindings/camel-k/ftps-sink-binding.yaml +++ b/templates/pipes/camel-k/ftps-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: ftps-sink-binding + name: ftps-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/ftps-source-binding.yaml b/templates/pipes/camel-k/ftps-source-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/ftps-source-binding.yaml rename to templates/pipes/camel-k/ftps-source-pipe.yaml index 73977ca58..0753346a9 100644 --- a/templates/bindings/camel-k/ftps-source-binding.yaml +++ b/templates/pipes/camel-k/ftps-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: ftps-source-binding + name: ftps-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/github-commit-source-binding.yaml b/templates/pipes/camel-k/github-commit-source-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/github-commit-source-binding.yaml rename to templates/pipes/camel-k/github-commit-source-pipe.yaml index d2686f021..a59f32b64 100644 --- a/templates/bindings/camel-k/github-commit-source-binding.yaml +++ b/templates/pipes/camel-k/github-commit-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: github-commit-source-binding + name: github-commit-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/github-event-source-binding.yaml b/templates/pipes/camel-k/github-event-source-pipe.yaml similarity index 78% rename from templates/bindings/camel-k/github-event-source-binding.yaml rename to templates/pipes/camel-k/github-event-source-pipe.yaml index 64878f9b5..fc938098d 100644 --- a/templates/bindings/camel-k/github-event-source-binding.yaml +++ b/templates/pipes/camel-k/github-event-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: github-event-source-binding + name: github-event-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/github-source-binding.yaml b/templates/pipes/camel-k/github-source-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/github-source-binding.yaml rename to templates/pipes/camel-k/github-source-pipe.yaml index 92de6226c..87efe1bba 100644 --- a/templates/bindings/camel-k/github-source-binding.yaml +++ b/templates/pipes/camel-k/github-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: github-source-binding + name: github-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/github-tag-source-binding.yaml b/templates/pipes/camel-k/github-tag-source-pipe.yaml similarity index 78% rename from templates/bindings/camel-k/github-tag-source-binding.yaml rename to templates/pipes/camel-k/github-tag-source-pipe.yaml index 040e5ffd5..032051b1c 100644 --- a/templates/bindings/camel-k/github-tag-source-binding.yaml +++ b/templates/pipes/camel-k/github-tag-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: github-tag-source-binding + name: github-tag-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/google-calendar-source-binding.yaml b/templates/pipes/camel-k/google-calendar-source-pipe.yaml similarity index 83% rename from templates/bindings/camel-k/google-calendar-source-binding.yaml rename to templates/pipes/camel-k/google-calendar-source-pipe.yaml index f3a4eb27e..24f885393 100644 --- a/templates/bindings/camel-k/google-calendar-source-binding.yaml +++ b/templates/pipes/camel-k/google-calendar-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: google-calendar-source-binding + name: google-calendar-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/google-functions-sink-binding.yaml b/templates/pipes/camel-k/google-functions-sink-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/google-functions-sink-binding.yaml rename to templates/pipes/camel-k/google-functions-sink-pipe.yaml index df3f1b23d..5b3c31d0a 100644 --- a/templates/bindings/camel-k/google-functions-sink-binding.yaml +++ b/templates/pipes/camel-k/google-functions-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: google-functions-sink-binding + name: google-functions-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/google-mail-source-binding.yaml b/templates/pipes/camel-k/google-mail-source-pipe.yaml similarity index 82% rename from templates/bindings/camel-k/google-mail-source-binding.yaml rename to templates/pipes/camel-k/google-mail-source-pipe.yaml index ceda845a3..917728320 100644 --- a/templates/bindings/camel-k/google-mail-source-binding.yaml +++ b/templates/pipes/camel-k/google-mail-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: google-mail-source-binding + name: google-mail-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/google-pubsub-sink-binding.yaml b/templates/pipes/camel-k/google-pubsub-sink-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/google-pubsub-sink-binding.yaml rename to templates/pipes/camel-k/google-pubsub-sink-pipe.yaml index b9c319df0..cdc5e7553 100644 --- a/templates/bindings/camel-k/google-pubsub-sink-binding.yaml +++ b/templates/pipes/camel-k/google-pubsub-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: google-pubsub-sink-binding + name: google-pubsub-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/google-pubsub-source-binding.yaml b/templates/pipes/camel-k/google-pubsub-source-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/google-pubsub-source-binding.yaml rename to templates/pipes/camel-k/google-pubsub-source-pipe.yaml index b01120cfc..f48881602 100644 --- a/templates/bindings/camel-k/google-pubsub-source-binding.yaml +++ b/templates/pipes/camel-k/google-pubsub-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: google-pubsub-source-binding + name: google-pubsub-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/google-sheets-source-binding.yaml b/templates/pipes/camel-k/google-sheets-source-pipe.yaml similarity index 83% rename from templates/bindings/camel-k/google-sheets-source-binding.yaml rename to templates/pipes/camel-k/google-sheets-source-pipe.yaml index e680d84bc..a968cfd64 100644 --- a/templates/bindings/camel-k/google-sheets-source-binding.yaml +++ b/templates/pipes/camel-k/google-sheets-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: google-sheets-source-binding + name: google-sheets-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/google-storage-sink-binding.yaml b/templates/pipes/camel-k/google-storage-sink-pipe.yaml similarity index 78% rename from templates/bindings/camel-k/google-storage-sink-binding.yaml rename to templates/pipes/camel-k/google-storage-sink-pipe.yaml index 81c203969..3a2a9381d 100644 --- a/templates/bindings/camel-k/google-storage-sink-binding.yaml +++ b/templates/pipes/camel-k/google-storage-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: google-storage-sink-binding + name: google-storage-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/google-storage-source-binding.yaml b/templates/pipes/camel-k/google-storage-source-pipe.yaml similarity index 77% rename from templates/bindings/camel-k/google-storage-source-binding.yaml rename to templates/pipes/camel-k/google-storage-source-pipe.yaml index cb0176c70..49de5cd9e 100644 --- a/templates/bindings/camel-k/google-storage-source-binding.yaml +++ b/templates/pipes/camel-k/google-storage-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: google-storage-source-binding + name: google-storage-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/has-header-filter-action-binding.yaml b/templates/pipes/camel-k/has-header-filter-action-pipe.yaml similarity index 85% rename from templates/bindings/camel-k/has-header-filter-action-binding.yaml rename to templates/pipes/camel-k/has-header-filter-action-pipe.yaml index c21256ea9..88897befc 100644 --- a/templates/bindings/camel-k/has-header-filter-action-binding.yaml +++ b/templates/pipes/camel-k/has-header-filter-action-pipe.yaml @@ -1,8 +1,8 @@ # example_for_kamelet_doc -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: has-header-filter-action-binding + name: has-header-filter-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/header-matches-filter-action-binding.yaml b/templates/pipes/camel-k/header-matches-filter-action-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/header-matches-filter-action-binding.yaml rename to templates/pipes/camel-k/header-matches-filter-action-pipe.yaml index 1593a8cd2..1b0ee1ac0 100644 --- a/templates/bindings/camel-k/header-matches-filter-action-binding.yaml +++ b/templates/pipes/camel-k/header-matches-filter-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: header-matches-filter-action-binding + name: header-matches-filter-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/hoist-field-action-binding.yaml b/templates/pipes/camel-k/hoist-field-action-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/hoist-field-action-binding.yaml rename to templates/pipes/camel-k/hoist-field-action-pipe.yaml index a43e214a6..6f258b6e9 100644 --- a/templates/bindings/camel-k/hoist-field-action-binding.yaml +++ b/templates/pipes/camel-k/hoist-field-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: hoist-field-action-binding + name: hoist-field-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/http-secured-sink-binding.yaml b/templates/pipes/camel-k/http-secured-sink-pipe.yaml similarity index 74% rename from templates/bindings/camel-k/http-secured-sink-binding.yaml rename to templates/pipes/camel-k/http-secured-sink-pipe.yaml index 982e8fb0a..45988449b 100644 --- a/templates/bindings/camel-k/http-secured-sink-binding.yaml +++ b/templates/pipes/camel-k/http-secured-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: http-secured-sink-binding + name: http-secured-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/http-secured-source-binding.yaml b/templates/pipes/camel-k/http-secured-source-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/http-secured-source-binding.yaml rename to templates/pipes/camel-k/http-secured-source-pipe.yaml index b1a917560..e98ac4f18 100644 --- a/templates/bindings/camel-k/http-secured-source-binding.yaml +++ b/templates/pipes/camel-k/http-secured-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: http-secured-source-binding + name: http-secured-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/http-sink-binding.yaml b/templates/pipes/camel-k/http-sink-pipe.yaml similarity index 75% rename from templates/bindings/camel-k/http-sink-binding.yaml rename to templates/pipes/camel-k/http-sink-pipe.yaml index ceea4050f..63a54c8ad 100644 --- a/templates/bindings/camel-k/http-sink-binding.yaml +++ b/templates/pipes/camel-k/http-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: http-sink-binding + name: http-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/http-source-binding.yaml b/templates/pipes/camel-k/http-source-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/http-source-binding.yaml rename to templates/pipes/camel-k/http-source-pipe.yaml index df77076ea..b8229f93e 100644 --- a/templates/bindings/camel-k/http-source-binding.yaml +++ b/templates/pipes/camel-k/http-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: http-source-binding + name: http-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/infinispan-sink-binding.yaml b/templates/pipes/camel-k/infinispan-sink-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/infinispan-sink-binding.yaml rename to templates/pipes/camel-k/infinispan-sink-pipe.yaml index 63291457b..8ee5354da 100644 --- a/templates/bindings/camel-k/infinispan-sink-binding.yaml +++ b/templates/pipes/camel-k/infinispan-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: infinispan-sink-binding + name: infinispan-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/infinispan-source-binding.yaml b/templates/pipes/camel-k/infinispan-source-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/infinispan-source-binding.yaml rename to templates/pipes/camel-k/infinispan-source-pipe.yaml index 59d486d4a..2c14959ab 100644 --- a/templates/bindings/camel-k/infinispan-source-binding.yaml +++ b/templates/pipes/camel-k/infinispan-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: infinispan-source-binding + name: infinispan-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/insert-field-action-binding.yaml b/templates/pipes/camel-k/insert-field-action-pipe.yaml similarity index 85% rename from templates/bindings/camel-k/insert-field-action-binding.yaml rename to templates/pipes/camel-k/insert-field-action-pipe.yaml index c1afb8209..da9e19a0d 100644 --- a/templates/bindings/camel-k/insert-field-action-binding.yaml +++ b/templates/pipes/camel-k/insert-field-action-pipe.yaml @@ -1,8 +1,8 @@ # example_for_kamelet_doc -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: insert-field-action-binding + name: insert-field-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/insert-header-action-binding.yaml b/templates/pipes/camel-k/insert-header-action-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/insert-header-action-binding.yaml rename to templates/pipes/camel-k/insert-header-action-pipe.yaml index 205f543d0..cf801dd8e 100644 --- a/templates/bindings/camel-k/insert-header-action-binding.yaml +++ b/templates/pipes/camel-k/insert-header-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: insert-header-action-binding + name: insert-header-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/is-tombstone-filter-action-binding.yaml b/templates/pipes/camel-k/is-tombstone-filter-action-pipe.yaml similarity index 78% rename from templates/bindings/camel-k/is-tombstone-filter-action-binding.yaml rename to templates/pipes/camel-k/is-tombstone-filter-action-pipe.yaml index 7588a9210..5c19391ca 100644 --- a/templates/bindings/camel-k/is-tombstone-filter-action-binding.yaml +++ b/templates/pipes/camel-k/is-tombstone-filter-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: is-tombstone-filter-action-binding + name: is-tombstone-filter-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/jira-add-comment-sink-binding.yaml b/templates/pipes/camel-k/jira-add-comment-sink-pipe.yaml similarity index 84% rename from templates/bindings/camel-k/jira-add-comment-sink-binding.yaml rename to templates/pipes/camel-k/jira-add-comment-sink-pipe.yaml index 325b3c6b3..c9c40932a 100644 --- a/templates/bindings/camel-k/jira-add-comment-sink-binding.yaml +++ b/templates/pipes/camel-k/jira-add-comment-sink-pipe.yaml @@ -1,8 +1,8 @@ # example_for_kamelet_doc -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: jira-add-comment-sink-binding + name: jira-add-comment-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/jira-add-issue-sink-binding.yaml b/templates/pipes/camel-k/jira-add-issue-sink-pipe.yaml similarity index 91% rename from templates/bindings/camel-k/jira-add-issue-sink-binding.yaml rename to templates/pipes/camel-k/jira-add-issue-sink-pipe.yaml index 832b2c793..007280162 100644 --- a/templates/bindings/camel-k/jira-add-issue-sink-binding.yaml +++ b/templates/pipes/camel-k/jira-add-issue-sink-pipe.yaml @@ -1,8 +1,8 @@ # example_for_kamelet_doc -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: jira-add-issue-sink-binding + name: jira-add-issue-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/jira-source-binding.yaml b/templates/pipes/camel-k/jira-source-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/jira-source-binding.yaml rename to templates/pipes/camel-k/jira-source-pipe.yaml index 897ad0430..61465f04c 100644 --- a/templates/bindings/camel-k/jira-source-binding.yaml +++ b/templates/pipes/camel-k/jira-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: jira-source-binding + name: jira-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/jira-transition-issue-sink-binding.yaml b/templates/pipes/camel-k/jira-transition-issue-sink-pipe.yaml similarity index 87% rename from templates/bindings/camel-k/jira-transition-issue-sink-binding.yaml rename to templates/pipes/camel-k/jira-transition-issue-sink-pipe.yaml index 705ee6ce3..08b27149b 100644 --- a/templates/bindings/camel-k/jira-transition-issue-sink-binding.yaml +++ b/templates/pipes/camel-k/jira-transition-issue-sink-pipe.yaml @@ -1,8 +1,8 @@ # example_for_kamelet_doc -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: jira-transition-issue-sink-binding + name: jira-transition-issue-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/jira-update-issue-sink-binding.yaml b/templates/pipes/camel-k/jira-update-issue-sink-pipe.yaml similarity index 91% rename from templates/bindings/camel-k/jira-update-issue-sink-binding.yaml rename to templates/pipes/camel-k/jira-update-issue-sink-pipe.yaml index d6cbd3797..12c4d0ede 100644 --- a/templates/bindings/camel-k/jira-update-issue-sink-binding.yaml +++ b/templates/pipes/camel-k/jira-update-issue-sink-pipe.yaml @@ -1,8 +1,8 @@ # example_for_kamelet_doc -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: jira-update-issue-sink-binding + name: jira-update-issue-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/jms-amqp-10-sink-binding.yaml b/templates/pipes/camel-k/jms-amqp-10-sink-pipe.yaml similarity index 77% rename from templates/bindings/camel-k/jms-amqp-10-sink-binding.yaml rename to templates/pipes/camel-k/jms-amqp-10-sink-pipe.yaml index 78493e00c..8380b84f2 100644 --- a/templates/bindings/camel-k/jms-amqp-10-sink-binding.yaml +++ b/templates/pipes/camel-k/jms-amqp-10-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: jms-amqp-10-sink-binding + name: jms-amqp-10-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/jms-amqp-10-source-binding.yaml b/templates/pipes/camel-k/jms-amqp-10-source-pipe.yaml similarity index 77% rename from templates/bindings/camel-k/jms-amqp-10-source-binding.yaml rename to templates/pipes/camel-k/jms-amqp-10-source-pipe.yaml index ceca3cf27..5953c0916 100644 --- a/templates/bindings/camel-k/jms-amqp-10-source-binding.yaml +++ b/templates/pipes/camel-k/jms-amqp-10-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: jms-amqp-10-source-binding + name: jms-amqp-10-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/jms-apache-artemis-sink-binding.yaml b/templates/pipes/camel-k/jms-apache-artemis-sink-pipe.yaml similarity index 76% rename from templates/bindings/camel-k/jms-apache-artemis-sink-binding.yaml rename to templates/pipes/camel-k/jms-apache-artemis-sink-pipe.yaml index a2a7b0e3c..2e1c6486d 100644 --- a/templates/bindings/camel-k/jms-apache-artemis-sink-binding.yaml +++ b/templates/pipes/camel-k/jms-apache-artemis-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: jms-apache-artemis-sink-binding + name: jms-apache-artemis-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/jms-apache-artemis-source-binding.yaml b/templates/pipes/camel-k/jms-apache-artemis-source-pipe.yaml similarity index 77% rename from templates/bindings/camel-k/jms-apache-artemis-source-binding.yaml rename to templates/pipes/camel-k/jms-apache-artemis-source-pipe.yaml index 3007137ac..a3c959092 100644 --- a/templates/bindings/camel-k/jms-apache-artemis-source-binding.yaml +++ b/templates/pipes/camel-k/jms-apache-artemis-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: jms-apache-artemis-source-binding + name: jms-apache-artemis-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/jms-ibm-mq-sink-binding.yaml b/templates/pipes/camel-k/jms-ibm-mq-sink-pipe.yaml similarity index 84% rename from templates/bindings/camel-k/jms-ibm-mq-sink-binding.yaml rename to templates/pipes/camel-k/jms-ibm-mq-sink-pipe.yaml index 4e2cc34e8..f3cb19d86 100644 --- a/templates/bindings/camel-k/jms-ibm-mq-sink-binding.yaml +++ b/templates/pipes/camel-k/jms-ibm-mq-sink-pipe.yaml @@ -1,8 +1,8 @@ # example_for_kamelet_doc -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: jms-ibm-mq-sink-binding + name: jms-ibm-mq-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/jms-ibm-mq-source-binding.yaml b/templates/pipes/camel-k/jms-ibm-mq-source-pipe.yaml similarity index 84% rename from templates/bindings/camel-k/jms-ibm-mq-source-binding.yaml rename to templates/pipes/camel-k/jms-ibm-mq-source-pipe.yaml index 60a61bd7d..899a7b05c 100644 --- a/templates/bindings/camel-k/jms-ibm-mq-source-binding.yaml +++ b/templates/pipes/camel-k/jms-ibm-mq-source-pipe.yaml @@ -1,8 +1,8 @@ # example_for_kamelet_doc -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: jms-ibm-mq-source-binding + name: jms-ibm-mq-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/jolt-transformation-action-binding.yaml b/templates/pipes/camel-k/jolt-transformation-action-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/jolt-transformation-action-binding.yaml rename to templates/pipes/camel-k/jolt-transformation-action-pipe.yaml index 04ee4ff09..ebacb78c9 100644 --- a/templates/bindings/camel-k/jolt-transformation-action-binding.yaml +++ b/templates/pipes/camel-k/jolt-transformation-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: jolt-transformation-action-binding + name: jolt-transformation-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/json-deserialize-action-binding.yaml b/templates/pipes/camel-k/json-deserialize-action-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/json-deserialize-action-binding.yaml rename to templates/pipes/camel-k/json-deserialize-action-pipe.yaml index 0b0899659..82675b8b2 100644 --- a/templates/bindings/camel-k/json-deserialize-action-binding.yaml +++ b/templates/pipes/camel-k/json-deserialize-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: json-deserialize-action-binding + name: json-deserialize-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/json-patch-action-binding.yaml b/templates/pipes/camel-k/json-patch-action-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/json-patch-action-binding.yaml rename to templates/pipes/camel-k/json-patch-action-pipe.yaml index 61ddc8054..c771c3901 100644 --- a/templates/bindings/camel-k/json-patch-action-binding.yaml +++ b/templates/pipes/camel-k/json-patch-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: json-patch-action-binding + name: json-patch-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/json-schema-validator-action-binding.yaml b/templates/pipes/camel-k/json-schema-validator-action-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/json-schema-validator-action-binding.yaml rename to templates/pipes/camel-k/json-schema-validator-action-pipe.yaml index 363863098..835329ff5 100644 --- a/templates/bindings/camel-k/json-schema-validator-action-binding.yaml +++ b/templates/pipes/camel-k/json-schema-validator-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: json-schema-validator-action-binding + name: json-schema-validator-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/json-serialize-action-binding.yaml b/templates/pipes/camel-k/json-serialize-action-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/json-serialize-action-binding.yaml rename to templates/pipes/camel-k/json-serialize-action-pipe.yaml index 09274e6a8..09e0e9121 100644 --- a/templates/bindings/camel-k/json-serialize-action-binding.yaml +++ b/templates/pipes/camel-k/json-serialize-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: json-serialize-action-binding + name: json-serialize-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/jsonata-action-binding.yaml b/templates/pipes/camel-k/jsonata-action-pipe.yaml similarity index 82% rename from templates/bindings/camel-k/jsonata-action-binding.yaml rename to templates/pipes/camel-k/jsonata-action-pipe.yaml index d8658bfcc..6d151ea69 100644 --- a/templates/bindings/camel-k/jsonata-action-binding.yaml +++ b/templates/pipes/camel-k/jsonata-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: jsonata-action-binding + name: jsonata-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/kafka-manual-commit-action-binding.yaml b/templates/pipes/camel-k/kafka-manual-commit-action-pipe.yaml similarity index 78% rename from templates/bindings/camel-k/kafka-manual-commit-action-binding.yaml rename to templates/pipes/camel-k/kafka-manual-commit-action-pipe.yaml index 2077aeb38..0faefa174 100644 --- a/templates/bindings/camel-k/kafka-manual-commit-action-binding.yaml +++ b/templates/pipes/camel-k/kafka-manual-commit-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: kafka-manual-commit-action-binding + name: kafka-manual-commit-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/kafka-not-secured-sink-binding.yaml b/templates/pipes/camel-k/kafka-not-secured-sink-pipe.yaml similarity index 76% rename from templates/bindings/camel-k/kafka-not-secured-sink-binding.yaml rename to templates/pipes/camel-k/kafka-not-secured-sink-pipe.yaml index 3c93b914a..881fd7531 100644 --- a/templates/bindings/camel-k/kafka-not-secured-sink-binding.yaml +++ b/templates/pipes/camel-k/kafka-not-secured-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: kafka-not-secured-sink-binding + name: kafka-not-secured-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/kafka-not-secured-source-binding.yaml b/templates/pipes/camel-k/kafka-not-secured-source-pipe.yaml similarity index 76% rename from templates/bindings/camel-k/kafka-not-secured-source-binding.yaml rename to templates/pipes/camel-k/kafka-not-secured-source-pipe.yaml index 0e13e0ed0..c34d01b45 100644 --- a/templates/bindings/camel-k/kafka-not-secured-source-binding.yaml +++ b/templates/pipes/camel-k/kafka-not-secured-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: kafka-not-secured-source-binding + name: kafka-not-secured-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/kafka-sink-binding.yaml b/templates/pipes/camel-k/kafka-sink-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/kafka-sink-binding.yaml rename to templates/pipes/camel-k/kafka-sink-pipe.yaml index 6ee0d2d3d..cfb2af909 100644 --- a/templates/bindings/camel-k/kafka-sink-binding.yaml +++ b/templates/pipes/camel-k/kafka-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: kafka-sink-binding + name: kafka-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/kafka-source-binding.yaml b/templates/pipes/camel-k/kafka-source-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/kafka-source-binding.yaml rename to templates/pipes/camel-k/kafka-source-pipe.yaml index e42d52f2e..406bf3194 100644 --- a/templates/bindings/camel-k/kafka-source-binding.yaml +++ b/templates/pipes/camel-k/kafka-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: kafka-source-binding + name: kafka-source-pipe spec: source: ref: diff --git a/templates/pipes/camel-k/kamelet.yaml.tmpl b/templates/pipes/camel-k/kamelet.yaml.tmpl new file mode 100644 index 000000000..1c454ba4e --- /dev/null +++ b/templates/pipes/camel-k/kamelet.yaml.tmpl @@ -0,0 +1 @@ +{{ template "kamelet-pipe-sink-source.tmpl" . }} \ No newline at end of file diff --git a/templates/bindings/camel-k/kubernetes-namespaces-source-binding.yaml b/templates/pipes/camel-k/kubernetes-namespaces-source-pipe.yaml similarity index 75% rename from templates/bindings/camel-k/kubernetes-namespaces-source-binding.yaml rename to templates/pipes/camel-k/kubernetes-namespaces-source-pipe.yaml index 33a256b29..3c6e6b148 100644 --- a/templates/bindings/camel-k/kubernetes-namespaces-source-binding.yaml +++ b/templates/pipes/camel-k/kubernetes-namespaces-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: kubernetes-namespaces-source-binding + name: kubernetes-namespaces-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/kubernetes-nodes-source-binding.yaml b/templates/pipes/camel-k/kubernetes-nodes-source-pipe.yaml similarity index 76% rename from templates/bindings/camel-k/kubernetes-nodes-source-binding.yaml rename to templates/pipes/camel-k/kubernetes-nodes-source-pipe.yaml index 71fcf4750..1215f1e09 100644 --- a/templates/bindings/camel-k/kubernetes-nodes-source-binding.yaml +++ b/templates/pipes/camel-k/kubernetes-nodes-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: kubernetes-nodes-source-binding + name: kubernetes-nodes-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/kubernetes-pods-source-binding.yaml b/templates/pipes/camel-k/kubernetes-pods-source-pipe.yaml similarity index 76% rename from templates/bindings/camel-k/kubernetes-pods-source-binding.yaml rename to templates/pipes/camel-k/kubernetes-pods-source-pipe.yaml index 01c447310..d4df19fec 100644 --- a/templates/bindings/camel-k/kubernetes-pods-source-binding.yaml +++ b/templates/pipes/camel-k/kubernetes-pods-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: kubernetes-pods-source-binding + name: kubernetes-pods-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/log-sink-binding.yaml b/templates/pipes/camel-k/log-sink-pipe.yaml similarity index 71% rename from templates/bindings/camel-k/log-sink-binding.yaml rename to templates/pipes/camel-k/log-sink-pipe.yaml index 87f6afb1b..aa349b8c8 100644 --- a/templates/bindings/camel-k/log-sink-binding.yaml +++ b/templates/pipes/camel-k/log-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: log-sink-binding + name: log-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/mail-imap-source-binding.yaml b/templates/pipes/camel-k/mail-imap-source-pipe.yaml similarity index 78% rename from templates/bindings/camel-k/mail-imap-source-binding.yaml rename to templates/pipes/camel-k/mail-imap-source-pipe.yaml index 0669cfc10..81a40890d 100644 --- a/templates/bindings/camel-k/mail-imap-source-binding.yaml +++ b/templates/pipes/camel-k/mail-imap-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: mail-imap-source-binding + name: mail-imap-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/mail-sink-binding.yaml b/templates/pipes/camel-k/mail-sink-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/mail-sink-binding.yaml rename to templates/pipes/camel-k/mail-sink-pipe.yaml index 9a9071e10..303f7fa69 100644 --- a/templates/bindings/camel-k/mail-sink-binding.yaml +++ b/templates/pipes/camel-k/mail-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: mail-sink-binding + name: mail-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/mariadb-sink-binding.yaml b/templates/pipes/camel-k/mariadb-sink-pipe.yaml similarity index 83% rename from templates/bindings/camel-k/mariadb-sink-binding.yaml rename to templates/pipes/camel-k/mariadb-sink-pipe.yaml index dba8d3ee9..428bd74e6 100644 --- a/templates/bindings/camel-k/mariadb-sink-binding.yaml +++ b/templates/pipes/camel-k/mariadb-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: mariadb-sink-binding + name: mariadb-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/mariadb-source-binding.yaml b/templates/pipes/camel-k/mariadb-source-pipe.yaml similarity index 83% rename from templates/bindings/camel-k/mariadb-source-binding.yaml rename to templates/pipes/camel-k/mariadb-source-pipe.yaml index 4c59c2cb1..adfecd518 100644 --- a/templates/bindings/camel-k/mariadb-source-binding.yaml +++ b/templates/pipes/camel-k/mariadb-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: mariadb-source-binding + name: mariadb-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/mask-field-action-binding.yaml b/templates/pipes/camel-k/mask-field-action-pipe.yaml similarity index 82% rename from templates/bindings/camel-k/mask-field-action-binding.yaml rename to templates/pipes/camel-k/mask-field-action-pipe.yaml index 2cb5f3a36..9d7055ff1 100644 --- a/templates/bindings/camel-k/mask-field-action-binding.yaml +++ b/templates/pipes/camel-k/mask-field-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: mask-field-action-binding + name: mask-field-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/message-timestamp-router-action-binding.yaml b/templates/pipes/camel-k/message-timestamp-router-action-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/message-timestamp-router-action-binding.yaml rename to templates/pipes/camel-k/message-timestamp-router-action-pipe.yaml index 42a79b346..c09ac762e 100644 --- a/templates/bindings/camel-k/message-timestamp-router-action-binding.yaml +++ b/templates/pipes/camel-k/message-timestamp-router-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: message-timestamp-router-action-binding + name: message-timestamp-router-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/minio-sink-binding.yaml b/templates/pipes/camel-k/minio-sink-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/minio-sink-binding.yaml rename to templates/pipes/camel-k/minio-sink-pipe.yaml index af9a197b0..c43be978d 100644 --- a/templates/bindings/camel-k/minio-sink-binding.yaml +++ b/templates/pipes/camel-k/minio-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: minio-sink-binding + name: minio-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/minio-source-binding.yaml b/templates/pipes/camel-k/minio-source-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/minio-source-binding.yaml rename to templates/pipes/camel-k/minio-source-pipe.yaml index 73fcfadd7..9d76b9a6e 100644 --- a/templates/bindings/camel-k/minio-source-binding.yaml +++ b/templates/pipes/camel-k/minio-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: minio-source-binding + name: minio-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/mongodb-sink-binding.yaml b/templates/pipes/camel-k/mongodb-sink-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/mongodb-sink-binding.yaml rename to templates/pipes/camel-k/mongodb-sink-pipe.yaml index e3f41de83..4e25fae47 100644 --- a/templates/bindings/camel-k/mongodb-sink-binding.yaml +++ b/templates/pipes/camel-k/mongodb-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: mongodb-sink-binding + name: mongodb-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/mongodb-source-binding.yaml b/templates/pipes/camel-k/mongodb-source-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/mongodb-source-binding.yaml rename to templates/pipes/camel-k/mongodb-source-pipe.yaml index e6020ff72..41e2e9e68 100644 --- a/templates/bindings/camel-k/mongodb-source-binding.yaml +++ b/templates/pipes/camel-k/mongodb-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: mongodb-source-binding + name: mongodb-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/mqtt-sink-binding.yaml b/templates/pipes/camel-k/mqtt-sink-pipe.yaml similarity index 77% rename from templates/bindings/camel-k/mqtt-sink-binding.yaml rename to templates/pipes/camel-k/mqtt-sink-pipe.yaml index 1941b98cb..145651c9f 100644 --- a/templates/bindings/camel-k/mqtt-sink-binding.yaml +++ b/templates/pipes/camel-k/mqtt-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: mqtt-sink-binding + name: mqtt-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/mqtt-source-binding.yaml b/templates/pipes/camel-k/mqtt-source-pipe.yaml similarity index 77% rename from templates/bindings/camel-k/mqtt-source-binding.yaml rename to templates/pipes/camel-k/mqtt-source-pipe.yaml index f642af9b1..034fd476c 100644 --- a/templates/bindings/camel-k/mqtt-source-binding.yaml +++ b/templates/pipes/camel-k/mqtt-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: mqtt-source-binding + name: mqtt-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/mustache-template-action-binding.yaml b/templates/pipes/camel-k/mustache-template-action-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/mustache-template-action-binding.yaml rename to templates/pipes/camel-k/mustache-template-action-pipe.yaml index c8cec2baa..a9d85d70f 100644 --- a/templates/bindings/camel-k/mustache-template-action-binding.yaml +++ b/templates/pipes/camel-k/mustache-template-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: mustache-template-action-binding + name: mustache-template-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/mvel-template-action-binding.yaml b/templates/pipes/camel-k/mvel-template-action-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/mvel-template-action-binding.yaml rename to templates/pipes/camel-k/mvel-template-action-pipe.yaml index 7f17f90b0..3ba972ee9 100644 --- a/templates/bindings/camel-k/mvel-template-action-binding.yaml +++ b/templates/pipes/camel-k/mvel-template-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: mvel-template-action-binding + name: mvel-template-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/mysql-sink-binding.yaml b/templates/pipes/camel-k/mysql-sink-pipe.yaml similarity index 83% rename from templates/bindings/camel-k/mysql-sink-binding.yaml rename to templates/pipes/camel-k/mysql-sink-pipe.yaml index c34a102f9..ff049a269 100644 --- a/templates/bindings/camel-k/mysql-sink-binding.yaml +++ b/templates/pipes/camel-k/mysql-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: mysql-sink-binding + name: mysql-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/mysql-source-binding.yaml b/templates/pipes/camel-k/mysql-source-pipe.yaml similarity index 83% rename from templates/bindings/camel-k/mysql-source-binding.yaml rename to templates/pipes/camel-k/mysql-source-pipe.yaml index 435407809..000c99cfa 100644 --- a/templates/bindings/camel-k/mysql-source-binding.yaml +++ b/templates/pipes/camel-k/mysql-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: mysql-source-binding + name: mysql-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/nats-sink-binding.yaml b/templates/pipes/camel-k/nats-sink-pipe.yaml similarity index 76% rename from templates/bindings/camel-k/nats-sink-binding.yaml rename to templates/pipes/camel-k/nats-sink-pipe.yaml index a037bd20f..4e9c1b710 100644 --- a/templates/bindings/camel-k/nats-sink-binding.yaml +++ b/templates/pipes/camel-k/nats-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: nats-sink-binding + name: nats-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/nats-source-binding.yaml b/templates/pipes/camel-k/nats-source-pipe.yaml similarity index 76% rename from templates/bindings/camel-k/nats-source-binding.yaml rename to templates/pipes/camel-k/nats-source-pipe.yaml index adbe8cac0..4bd0ae4f1 100644 --- a/templates/bindings/camel-k/nats-source-binding.yaml +++ b/templates/pipes/camel-k/nats-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: nats-source-binding + name: nats-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/openai-classification-action-binding.yaml b/templates/pipes/camel-k/openai-classification-action-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/openai-classification-action-binding.yaml rename to templates/pipes/camel-k/openai-classification-action-pipe.yaml index 5a8b90d2c..728388ccd 100644 --- a/templates/bindings/camel-k/openai-classification-action-binding.yaml +++ b/templates/pipes/camel-k/openai-classification-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: openai-classification-action-binding + name: openai-classification-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/openai-completion-action-binding.yaml b/templates/pipes/camel-k/openai-completion-action-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/openai-completion-action-binding.yaml rename to templates/pipes/camel-k/openai-completion-action-pipe.yaml index fb6fb1425..50713a032 100644 --- a/templates/bindings/camel-k/openai-completion-action-binding.yaml +++ b/templates/pipes/camel-k/openai-completion-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: openai-completion-action-binding + name: openai-completion-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/pdf-action-binding.yaml b/templates/pipes/camel-k/pdf-action-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/pdf-action-binding.yaml rename to templates/pipes/camel-k/pdf-action-pipe.yaml index e9ca25a65..2ff9633f2 100644 --- a/templates/bindings/camel-k/pdf-action-binding.yaml +++ b/templates/pipes/camel-k/pdf-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: pdf-action-binding + name: pdf-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/postgresql-sink-binding.yaml b/templates/pipes/camel-k/postgresql-sink-pipe.yaml similarity index 82% rename from templates/bindings/camel-k/postgresql-sink-binding.yaml rename to templates/pipes/camel-k/postgresql-sink-pipe.yaml index ede85a624..7372c3b41 100644 --- a/templates/bindings/camel-k/postgresql-sink-binding.yaml +++ b/templates/pipes/camel-k/postgresql-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: postgresql-sink-binding + name: postgresql-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/postgresql-source-binding.yaml b/templates/pipes/camel-k/postgresql-source-pipe.yaml similarity index 82% rename from templates/bindings/camel-k/postgresql-source-binding.yaml rename to templates/pipes/camel-k/postgresql-source-pipe.yaml index 068de433b..edae43b43 100644 --- a/templates/bindings/camel-k/postgresql-source-binding.yaml +++ b/templates/pipes/camel-k/postgresql-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: postgresql-source-binding + name: postgresql-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/predicate-filter-action-binding.yaml b/templates/pipes/camel-k/predicate-filter-action-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/predicate-filter-action-binding.yaml rename to templates/pipes/camel-k/predicate-filter-action-pipe.yaml index 75ff4c64e..0e381c5b6 100644 --- a/templates/bindings/camel-k/predicate-filter-action-binding.yaml +++ b/templates/pipes/camel-k/predicate-filter-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: predicate-filter-action-binding + name: predicate-filter-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/protobuf-deserialize-action-binding.yaml b/templates/pipes/camel-k/protobuf-deserialize-action-pipe.yaml similarity index 89% rename from templates/bindings/camel-k/protobuf-deserialize-action-binding.yaml rename to templates/pipes/camel-k/protobuf-deserialize-action-pipe.yaml index 999cd9438..5d8781946 100644 --- a/templates/bindings/camel-k/protobuf-deserialize-action-binding.yaml +++ b/templates/pipes/camel-k/protobuf-deserialize-action-pipe.yaml @@ -1,8 +1,8 @@ # example_for_kamelet_doc -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: protobuf-deserialize-action-binding + name: protobuf-deserialize-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/protobuf-serialize-action-binding.yaml b/templates/pipes/camel-k/protobuf-serialize-action-pipe.yaml similarity index 86% rename from templates/bindings/camel-k/protobuf-serialize-action-binding.yaml rename to templates/pipes/camel-k/protobuf-serialize-action-pipe.yaml index c546e09bd..29a9e8def 100644 --- a/templates/bindings/camel-k/protobuf-serialize-action-binding.yaml +++ b/templates/pipes/camel-k/protobuf-serialize-action-pipe.yaml @@ -1,8 +1,8 @@ # example_for_kamelet_doc -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: protobuf-serialize-action-binding + name: protobuf-serialize-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/pulsar-sink-binding.yaml b/templates/pipes/camel-k/pulsar-sink-pipe.yaml similarity index 82% rename from templates/bindings/camel-k/pulsar-sink-binding.yaml rename to templates/pipes/camel-k/pulsar-sink-pipe.yaml index 5f4bdee7e..17c53c4be 100644 --- a/templates/bindings/camel-k/pulsar-sink-binding.yaml +++ b/templates/pipes/camel-k/pulsar-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: pulsar-sink-binding + name: pulsar-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/pulsar-source-binding.yaml b/templates/pipes/camel-k/pulsar-source-pipe.yaml similarity index 82% rename from templates/bindings/camel-k/pulsar-source-binding.yaml rename to templates/pipes/camel-k/pulsar-source-pipe.yaml index c6f5113fe..4889ce16f 100644 --- a/templates/bindings/camel-k/pulsar-source-binding.yaml +++ b/templates/pipes/camel-k/pulsar-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: pulsar-source-binding + name: pulsar-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/rabbitmq-source-binding.yaml b/templates/pipes/camel-k/rabbitmq-source-pipe.yaml similarity index 77% rename from templates/bindings/camel-k/rabbitmq-source-binding.yaml rename to templates/pipes/camel-k/rabbitmq-source-pipe.yaml index 009512cbc..2916e25f9 100644 --- a/templates/bindings/camel-k/rabbitmq-source-binding.yaml +++ b/templates/pipes/camel-k/rabbitmq-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: rabbitmq-source-binding + name: rabbitmq-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/redis-sink-binding.yaml b/templates/pipes/camel-k/redis-sink-pipe.yaml similarity index 77% rename from templates/bindings/camel-k/redis-sink-binding.yaml rename to templates/pipes/camel-k/redis-sink-pipe.yaml index db020c76a..a60812e94 100644 --- a/templates/bindings/camel-k/redis-sink-binding.yaml +++ b/templates/pipes/camel-k/redis-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: redis-sink-binding + name: redis-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/redis-source-binding.yaml b/templates/pipes/camel-k/redis-source-pipe.yaml similarity index 77% rename from templates/bindings/camel-k/redis-source-binding.yaml rename to templates/pipes/camel-k/redis-source-pipe.yaml index 7ed829a5b..9e6c6eec3 100644 --- a/templates/bindings/camel-k/redis-source-binding.yaml +++ b/templates/pipes/camel-k/redis-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: redis-source-binding + name: redis-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/regex-router-action-binding.yaml b/templates/pipes/camel-k/regex-router-action-pipe.yaml similarity index 82% rename from templates/bindings/camel-k/regex-router-action-binding.yaml rename to templates/pipes/camel-k/regex-router-action-pipe.yaml index 9e25250bc..946bae993 100644 --- a/templates/bindings/camel-k/regex-router-action-binding.yaml +++ b/templates/pipes/camel-k/regex-router-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: regex-router-action-binding + name: regex-router-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/replace-field-action-binding.yaml b/templates/pipes/camel-k/replace-field-action-pipe.yaml similarity index 83% rename from templates/bindings/camel-k/replace-field-action-binding.yaml rename to templates/pipes/camel-k/replace-field-action-pipe.yaml index 326dfe8f6..4e8f23032 100644 --- a/templates/bindings/camel-k/replace-field-action-binding.yaml +++ b/templates/pipes/camel-k/replace-field-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: replace-field-action-binding + name: replace-field-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/salesforce-source-binding.yaml b/templates/pipes/camel-k/salesforce-source-pipe.yaml similarity index 83% rename from templates/bindings/camel-k/salesforce-source-binding.yaml rename to templates/pipes/camel-k/salesforce-source-pipe.yaml index eabc5b89c..d9cf20fa9 100644 --- a/templates/bindings/camel-k/salesforce-source-binding.yaml +++ b/templates/pipes/camel-k/salesforce-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: salesforce-source-binding + name: salesforce-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/sftp-sink-binding.yaml b/templates/pipes/camel-k/sftp-sink-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/sftp-sink-binding.yaml rename to templates/pipes/camel-k/sftp-sink-pipe.yaml index b652dee40..7ae629465 100644 --- a/templates/bindings/camel-k/sftp-sink-binding.yaml +++ b/templates/pipes/camel-k/sftp-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: sftp-sink-binding + name: sftp-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/sftp-source-binding.yaml b/templates/pipes/camel-k/sftp-source-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/sftp-source-binding.yaml rename to templates/pipes/camel-k/sftp-source-pipe.yaml index 8a1595512..a6c690e1c 100644 --- a/templates/bindings/camel-k/sftp-source-binding.yaml +++ b/templates/pipes/camel-k/sftp-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: sftp-source-binding + name: sftp-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/simple-filter-action-binding.yaml b/templates/pipes/camel-k/simple-filter-action-pipe.yaml similarity index 82% rename from templates/bindings/camel-k/simple-filter-action-binding.yaml rename to templates/pipes/camel-k/simple-filter-action-pipe.yaml index 4463adf7a..392f02a43 100644 --- a/templates/bindings/camel-k/simple-filter-action-binding.yaml +++ b/templates/pipes/camel-k/simple-filter-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: simple-filter-action-binding + name: simple-filter-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/slack-sink-binding.yaml b/templates/pipes/camel-k/slack-sink-pipe.yaml similarity index 77% rename from templates/bindings/camel-k/slack-sink-binding.yaml rename to templates/pipes/camel-k/slack-sink-pipe.yaml index d9589ce51..b2c0fd904 100644 --- a/templates/bindings/camel-k/slack-sink-binding.yaml +++ b/templates/pipes/camel-k/slack-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: slack-sink-binding + name: slack-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/slack-source-binding.yaml b/templates/pipes/camel-k/slack-source-pipe.yaml similarity index 76% rename from templates/bindings/camel-k/slack-source-binding.yaml rename to templates/pipes/camel-k/slack-source-pipe.yaml index 544a16a67..1e4ff07c6 100644 --- a/templates/bindings/camel-k/slack-source-binding.yaml +++ b/templates/pipes/camel-k/slack-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: slack-source-binding + name: slack-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/splunk-hec-sink-binding.yaml b/templates/pipes/camel-k/splunk-hec-sink-pipe.yaml similarity index 78% rename from templates/bindings/camel-k/splunk-hec-sink-binding.yaml rename to templates/pipes/camel-k/splunk-hec-sink-pipe.yaml index 9de292d3c..9de079761 100644 --- a/templates/bindings/camel-k/splunk-hec-sink-binding.yaml +++ b/templates/pipes/camel-k/splunk-hec-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: splunk-hec-sink-binding + name: splunk-hec-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/splunk-sink-binding.yaml b/templates/pipes/camel-k/splunk-sink-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/splunk-sink-binding.yaml rename to templates/pipes/camel-k/splunk-sink-pipe.yaml index 8a7beb521..dd5d147c1 100644 --- a/templates/bindings/camel-k/splunk-sink-binding.yaml +++ b/templates/pipes/camel-k/splunk-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: splunk-sink-binding + name: splunk-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/splunk-source-binding.yaml b/templates/pipes/camel-k/splunk-source-pipe.yaml similarity index 82% rename from templates/bindings/camel-k/splunk-source-binding.yaml rename to templates/pipes/camel-k/splunk-source-pipe.yaml index 43e007f9e..7ef6d77f1 100644 --- a/templates/bindings/camel-k/splunk-source-binding.yaml +++ b/templates/pipes/camel-k/splunk-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: splunk-source-binding + name: splunk-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/sqlserver-sink-binding.yaml b/templates/pipes/camel-k/sqlserver-sink-pipe.yaml similarity index 83% rename from templates/bindings/camel-k/sqlserver-sink-binding.yaml rename to templates/pipes/camel-k/sqlserver-sink-pipe.yaml index a149ab610..d7105e578 100644 --- a/templates/bindings/camel-k/sqlserver-sink-binding.yaml +++ b/templates/pipes/camel-k/sqlserver-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: sqlserver-sink-binding + name: sqlserver-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/sqlserver-source-binding.yaml b/templates/pipes/camel-k/sqlserver-source-pipe.yaml similarity index 82% rename from templates/bindings/camel-k/sqlserver-source-binding.yaml rename to templates/pipes/camel-k/sqlserver-source-pipe.yaml index 32f0d7001..2aac6ba93 100644 --- a/templates/bindings/camel-k/sqlserver-source-binding.yaml +++ b/templates/pipes/camel-k/sqlserver-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: sqlserver-source-binding + name: sqlserver-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/ssh-sink-binding.yaml b/templates/pipes/camel-k/ssh-sink-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/ssh-sink-binding.yaml rename to templates/pipes/camel-k/ssh-sink-pipe.yaml index f4b9f3a82..610f9d694 100644 --- a/templates/bindings/camel-k/ssh-sink-binding.yaml +++ b/templates/pipes/camel-k/ssh-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: ssh-sink-binding + name: ssh-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/ssh-source-binding.yaml b/templates/pipes/camel-k/ssh-source-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/ssh-source-binding.yaml rename to templates/pipes/camel-k/ssh-source-pipe.yaml index 209211784..9418b2e30 100644 --- a/templates/bindings/camel-k/ssh-source-binding.yaml +++ b/templates/pipes/camel-k/ssh-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: ssh-source-binding + name: ssh-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/string-template-action-binding.yaml b/templates/pipes/camel-k/string-template-action-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/string-template-action-binding.yaml rename to templates/pipes/camel-k/string-template-action-pipe.yaml index 08a58f8c7..d0124e15a 100644 --- a/templates/bindings/camel-k/string-template-action-binding.yaml +++ b/templates/pipes/camel-k/string-template-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: string-template-action-binding + name: string-template-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/telegram-sink-binding.yaml b/templates/pipes/camel-k/telegram-sink-pipe.yaml similarity index 75% rename from templates/bindings/camel-k/telegram-sink-binding.yaml rename to templates/pipes/camel-k/telegram-sink-pipe.yaml index 21f03e9b2..8adafc4be 100644 --- a/templates/bindings/camel-k/telegram-sink-binding.yaml +++ b/templates/pipes/camel-k/telegram-sink-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: telegram-sink-binding + name: telegram-sink-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/telegram-source-binding.yaml b/templates/pipes/camel-k/telegram-source-pipe.yaml similarity index 75% rename from templates/bindings/camel-k/telegram-source-binding.yaml rename to templates/pipes/camel-k/telegram-source-pipe.yaml index ab10c3c2e..58ddb1e1f 100644 --- a/templates/bindings/camel-k/telegram-source-binding.yaml +++ b/templates/pipes/camel-k/telegram-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: telegram-source-binding + name: telegram-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/throttle-action-binding.yaml b/templates/pipes/camel-k/throttle-action-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/throttle-action-binding.yaml rename to templates/pipes/camel-k/throttle-action-pipe.yaml index ef3f82695..b228fbce1 100644 --- a/templates/bindings/camel-k/throttle-action-binding.yaml +++ b/templates/pipes/camel-k/throttle-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: throttle-action-binding + name: throttle-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/timer-source-binding.yaml b/templates/pipes/camel-k/timer-source-pipe.yaml similarity index 74% rename from templates/bindings/camel-k/timer-source-binding.yaml rename to templates/pipes/camel-k/timer-source-pipe.yaml index b26e316bf..1c627ac29 100644 --- a/templates/bindings/camel-k/timer-source-binding.yaml +++ b/templates/pipes/camel-k/timer-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: timer-source-binding + name: timer-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/timestamp-router-action-binding.yaml b/templates/pipes/camel-k/timestamp-router-action-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/timestamp-router-action-binding.yaml rename to templates/pipes/camel-k/timestamp-router-action-pipe.yaml index 05606456f..bafe50439 100644 --- a/templates/bindings/camel-k/timestamp-router-action-binding.yaml +++ b/templates/pipes/camel-k/timestamp-router-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: timestamp-router-action-binding + name: timestamp-router-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/topic-name-matches-filter-action-binding.yaml b/templates/pipes/camel-k/topic-name-matches-filter-action-pipe.yaml similarity index 79% rename from templates/bindings/camel-k/topic-name-matches-filter-action-binding.yaml rename to templates/pipes/camel-k/topic-name-matches-filter-action-pipe.yaml index ae5c056cc..fba393720 100644 --- a/templates/bindings/camel-k/topic-name-matches-filter-action-binding.yaml +++ b/templates/pipes/camel-k/topic-name-matches-filter-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: topic-name-matches-filter-action-binding + name: topic-name-matches-filter-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/twitter-directmessage-source-binding.yaml b/templates/pipes/camel-k/twitter-directmessage-source-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/twitter-directmessage-source-binding.yaml rename to templates/pipes/camel-k/twitter-directmessage-source-pipe.yaml index 350d9b382..636b99c26 100644 --- a/templates/bindings/camel-k/twitter-directmessage-source-binding.yaml +++ b/templates/pipes/camel-k/twitter-directmessage-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: twitter-directmessage-source-binding + name: twitter-directmessage-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/twitter-search-source-binding.yaml b/templates/pipes/camel-k/twitter-search-source-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/twitter-search-source-binding.yaml rename to templates/pipes/camel-k/twitter-search-source-pipe.yaml index 1dd01cb3a..a9094f585 100644 --- a/templates/bindings/camel-k/twitter-search-source-binding.yaml +++ b/templates/pipes/camel-k/twitter-search-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: twitter-search-source-binding + name: twitter-search-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/twitter-timeline-source-binding.yaml b/templates/pipes/camel-k/twitter-timeline-source-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/twitter-timeline-source-binding.yaml rename to templates/pipes/camel-k/twitter-timeline-source-pipe.yaml index 3a86cd14c..ff4a30e92 100644 --- a/templates/bindings/camel-k/twitter-timeline-source-binding.yaml +++ b/templates/pipes/camel-k/twitter-timeline-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: twitter-timeline-source-binding + name: twitter-timeline-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/value-to-key-action-binding.yaml b/templates/pipes/camel-k/value-to-key-action-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/value-to-key-action-binding.yaml rename to templates/pipes/camel-k/value-to-key-action-pipe.yaml index 27e61fe99..68b2df6f0 100644 --- a/templates/bindings/camel-k/value-to-key-action-binding.yaml +++ b/templates/pipes/camel-k/value-to-key-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: value-to-key-action-binding + name: value-to-key-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/velocity-template-action-binding.yaml b/templates/pipes/camel-k/velocity-template-action-pipe.yaml similarity index 80% rename from templates/bindings/camel-k/velocity-template-action-binding.yaml rename to templates/pipes/camel-k/velocity-template-action-pipe.yaml index a04fb97f9..8ab56671d 100644 --- a/templates/bindings/camel-k/velocity-template-action-binding.yaml +++ b/templates/pipes/camel-k/velocity-template-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: velocity-template-action-binding + name: velocity-template-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/webhook-source-binding.yaml b/templates/pipes/camel-k/webhook-source-pipe.yaml similarity index 70% rename from templates/bindings/camel-k/webhook-source-binding.yaml rename to templates/pipes/camel-k/webhook-source-pipe.yaml index 98d566d15..b2cd1eb2e 100644 --- a/templates/bindings/camel-k/webhook-source-binding.yaml +++ b/templates/pipes/camel-k/webhook-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: webhook-source-binding + name: webhook-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/websocket-source-binding.yaml b/templates/pipes/camel-k/websocket-source-pipe.yaml similarity index 74% rename from templates/bindings/camel-k/websocket-source-binding.yaml rename to templates/pipes/camel-k/websocket-source-pipe.yaml index 637884879..917098c80 100644 --- a/templates/bindings/camel-k/websocket-source-binding.yaml +++ b/templates/pipes/camel-k/websocket-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: websocket-source-binding + name: websocket-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/wttrin-source-binding.yaml b/templates/pipes/camel-k/wttrin-source-pipe.yaml similarity index 71% rename from templates/bindings/camel-k/wttrin-source-binding.yaml rename to templates/pipes/camel-k/wttrin-source-pipe.yaml index 857591825..ab34b1859 100644 --- a/templates/bindings/camel-k/wttrin-source-binding.yaml +++ b/templates/pipes/camel-k/wttrin-source-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: wttrin-source-binding + name: wttrin-source-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/xj-identity-action-binding.yaml b/templates/pipes/camel-k/xj-identity-action-pipe.yaml similarity index 81% rename from templates/bindings/camel-k/xj-identity-action-binding.yaml rename to templates/pipes/camel-k/xj-identity-action-pipe.yaml index 5c1f3ce9f..703e1812b 100644 --- a/templates/bindings/camel-k/xj-identity-action-binding.yaml +++ b/templates/pipes/camel-k/xj-identity-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: xj-identity-action-binding + name: xj-identity-action-pipe spec: source: ref: diff --git a/templates/bindings/camel-k/xj-template-action-binding.yaml b/templates/pipes/camel-k/xj-template-action-pipe.yaml similarity index 82% rename from templates/bindings/camel-k/xj-template-action-binding.yaml rename to templates/pipes/camel-k/xj-template-action-pipe.yaml index 000aef842..138b615d0 100644 --- a/templates/bindings/camel-k/xj-template-action-binding.yaml +++ b/templates/pipes/camel-k/xj-template-action-pipe.yaml @@ -1,7 +1,7 @@ -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: xj-template-action-binding + name: xj-template-action-pipe spec: source: ref: diff --git a/templates/bindings/core/avro-deserialize-action-binding.yaml b/templates/pipes/core/avro-deserialize-action-pipe.yaml similarity index 100% rename from templates/bindings/core/avro-deserialize-action-binding.yaml rename to templates/pipes/core/avro-deserialize-action-pipe.yaml diff --git a/templates/bindings/core/avro-serialize-action-binding.yaml b/templates/pipes/core/avro-serialize-action-pipe.yaml similarity index 100% rename from templates/bindings/core/avro-serialize-action-binding.yaml rename to templates/pipes/core/avro-serialize-action-pipe.yaml diff --git a/templates/bindings/core/aws-cloudwatch-sink-binding.yaml b/templates/pipes/core/aws-cloudwatch-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-cloudwatch-sink-binding.yaml rename to templates/pipes/core/aws-cloudwatch-sink-pipe.yaml diff --git a/templates/bindings/core/aws-ddb-streams-source-binding.yaml b/templates/pipes/core/aws-ddb-streams-source-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-ddb-streams-source-binding.yaml rename to templates/pipes/core/aws-ddb-streams-source-pipe.yaml diff --git a/templates/bindings/core/aws-ec2-sink-binding.yaml b/templates/pipes/core/aws-ec2-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-ec2-sink-binding.yaml rename to templates/pipes/core/aws-ec2-sink-pipe.yaml diff --git a/templates/bindings/core/aws-kinesis-firehose-sink-binding.yaml b/templates/pipes/core/aws-kinesis-firehose-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-kinesis-firehose-sink-binding.yaml rename to templates/pipes/core/aws-kinesis-firehose-sink-pipe.yaml diff --git a/templates/bindings/core/aws-kinesis-sink-binding.yaml b/templates/pipes/core/aws-kinesis-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-kinesis-sink-binding.yaml rename to templates/pipes/core/aws-kinesis-sink-pipe.yaml diff --git a/templates/bindings/core/aws-kinesis-source-binding.yaml b/templates/pipes/core/aws-kinesis-source-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-kinesis-source-binding.yaml rename to templates/pipes/core/aws-kinesis-source-pipe.yaml diff --git a/templates/bindings/core/aws-lambda-sink-binding.yaml b/templates/pipes/core/aws-lambda-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-lambda-sink-binding.yaml rename to templates/pipes/core/aws-lambda-sink-pipe.yaml diff --git a/templates/bindings/core/aws-redshift-sink-binding.yaml b/templates/pipes/core/aws-redshift-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-redshift-sink-binding.yaml rename to templates/pipes/core/aws-redshift-sink-pipe.yaml diff --git a/templates/bindings/core/aws-redshift-source-binding.yaml b/templates/pipes/core/aws-redshift-source-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-redshift-source-binding.yaml rename to templates/pipes/core/aws-redshift-source-pipe.yaml diff --git a/templates/bindings/core/aws-s3-sink-binding.yaml b/templates/pipes/core/aws-s3-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-s3-sink-binding.yaml rename to templates/pipes/core/aws-s3-sink-pipe.yaml diff --git a/templates/bindings/core/aws-s3-source-binding.yaml b/templates/pipes/core/aws-s3-source-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-s3-source-binding.yaml rename to templates/pipes/core/aws-s3-source-pipe.yaml diff --git a/templates/bindings/core/aws-s3-streaming-upload-sink-binding.yaml b/templates/pipes/core/aws-s3-streaming-upload-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-s3-streaming-upload-sink-binding.yaml rename to templates/pipes/core/aws-s3-streaming-upload-sink-pipe.yaml diff --git a/templates/bindings/core/aws-secrets-manager-sink-binding.yaml b/templates/pipes/core/aws-secrets-manager-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-secrets-manager-sink-binding.yaml rename to templates/pipes/core/aws-secrets-manager-sink-pipe.yaml diff --git a/templates/bindings/core/aws-sns-fifo-sink-binding.yaml b/templates/pipes/core/aws-sns-fifo-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-sns-fifo-sink-binding.yaml rename to templates/pipes/core/aws-sns-fifo-sink-pipe.yaml diff --git a/templates/bindings/core/aws-sns-sink-binding.yaml b/templates/pipes/core/aws-sns-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-sns-sink-binding.yaml rename to templates/pipes/core/aws-sns-sink-pipe.yaml diff --git a/templates/bindings/core/aws-sqs-batch-sink-binding.yaml b/templates/pipes/core/aws-sqs-batch-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-sqs-batch-sink-binding.yaml rename to templates/pipes/core/aws-sqs-batch-sink-pipe.yaml diff --git a/templates/bindings/core/aws-sqs-fifo-sink-binding.yaml b/templates/pipes/core/aws-sqs-fifo-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-sqs-fifo-sink-binding.yaml rename to templates/pipes/core/aws-sqs-fifo-sink-pipe.yaml diff --git a/templates/bindings/core/aws-sqs-sink-binding.yaml b/templates/pipes/core/aws-sqs-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-sqs-sink-binding.yaml rename to templates/pipes/core/aws-sqs-sink-pipe.yaml diff --git a/templates/bindings/core/aws-sqs-source-binding.yaml b/templates/pipes/core/aws-sqs-source-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-sqs-source-binding.yaml rename to templates/pipes/core/aws-sqs-source-pipe.yaml diff --git a/templates/bindings/core/aws-translate-action-binding.yaml b/templates/pipes/core/aws-translate-action-pipe.yaml similarity index 100% rename from templates/bindings/core/aws-translate-action-binding.yaml rename to templates/pipes/core/aws-translate-action-pipe.yaml diff --git a/templates/bindings/core/azure-cosmosdb-source-binding.yaml b/templates/pipes/core/azure-cosmosdb-source-pipe.yaml similarity index 100% rename from templates/bindings/core/azure-cosmosdb-source-binding.yaml rename to templates/pipes/core/azure-cosmosdb-source-pipe.yaml diff --git a/templates/bindings/core/azure-eventhubs-sink-binding.yaml b/templates/pipes/core/azure-eventhubs-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/azure-eventhubs-sink-binding.yaml rename to templates/pipes/core/azure-eventhubs-sink-pipe.yaml diff --git a/templates/bindings/core/azure-eventhubs-source-binding.yaml b/templates/pipes/core/azure-eventhubs-source-pipe.yaml similarity index 100% rename from templates/bindings/core/azure-eventhubs-source-binding.yaml rename to templates/pipes/core/azure-eventhubs-source-pipe.yaml diff --git a/templates/bindings/core/azure-storage-blob-sink-binding.yaml b/templates/pipes/core/azure-storage-blob-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/azure-storage-blob-sink-binding.yaml rename to templates/pipes/core/azure-storage-blob-sink-pipe.yaml diff --git a/templates/bindings/core/azure-storage-blob-source-binding.yaml b/templates/pipes/core/azure-storage-blob-source-pipe.yaml similarity index 100% rename from templates/bindings/core/azure-storage-blob-source-binding.yaml rename to templates/pipes/core/azure-storage-blob-source-pipe.yaml diff --git a/templates/bindings/core/azure-storage-queue-sink-binding.yaml b/templates/pipes/core/azure-storage-queue-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/azure-storage-queue-sink-binding.yaml rename to templates/pipes/core/azure-storage-queue-sink-pipe.yaml diff --git a/templates/bindings/core/azure-storage-queue-source-binding.yaml b/templates/pipes/core/azure-storage-queue-source-pipe.yaml similarity index 100% rename from templates/bindings/core/azure-storage-queue-source-binding.yaml rename to templates/pipes/core/azure-storage-queue-source-pipe.yaml diff --git a/templates/bindings/core/bitcoin-source-binding.yaml b/templates/pipes/core/bitcoin-source-pipe.yaml similarity index 100% rename from templates/bindings/core/bitcoin-source-binding.yaml rename to templates/pipes/core/bitcoin-source-pipe.yaml diff --git a/templates/bindings/core/caffeine-action-binding.yaml b/templates/pipes/core/caffeine-action-pipe.yaml similarity index 100% rename from templates/bindings/core/caffeine-action-binding.yaml rename to templates/pipes/core/caffeine-action-pipe.yaml diff --git a/templates/bindings/core/cassandra-sink-binding.yaml b/templates/pipes/core/cassandra-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/cassandra-sink-binding.yaml rename to templates/pipes/core/cassandra-sink-pipe.yaml diff --git a/templates/bindings/core/cassandra-source-binding.yaml b/templates/pipes/core/cassandra-source-pipe.yaml similarity index 100% rename from templates/bindings/core/cassandra-source-binding.yaml rename to templates/pipes/core/cassandra-source-pipe.yaml diff --git a/templates/bindings/core/chuck-norris-source-binding.yaml b/templates/pipes/core/chuck-norris-source-pipe.yaml similarity index 100% rename from templates/bindings/core/chuck-norris-source-binding.yaml rename to templates/pipes/core/chuck-norris-source-pipe.yaml diff --git a/templates/bindings/core/chunk-template-action-binding.yaml b/templates/pipes/core/chunk-template-action-pipe.yaml similarity index 100% rename from templates/bindings/core/chunk-template-action-binding.yaml rename to templates/pipes/core/chunk-template-action-pipe.yaml diff --git a/templates/bindings/core/couchbase-sink-binding.yaml b/templates/pipes/core/couchbase-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/couchbase-sink-binding.yaml rename to templates/pipes/core/couchbase-sink-pipe.yaml diff --git a/templates/bindings/core/cron-source-binding.yaml b/templates/pipes/core/cron-source-pipe.yaml similarity index 100% rename from templates/bindings/core/cron-source-binding.yaml rename to templates/pipes/core/cron-source-pipe.yaml diff --git a/templates/bindings/core/delay-action-binding.yaml b/templates/pipes/core/delay-action-pipe.yaml similarity index 100% rename from templates/bindings/core/delay-action-binding.yaml rename to templates/pipes/core/delay-action-pipe.yaml diff --git a/templates/bindings/core/dns-dig-action-binding.yaml b/templates/pipes/core/dns-dig-action-pipe.yaml similarity index 100% rename from templates/bindings/core/dns-dig-action-binding.yaml rename to templates/pipes/core/dns-dig-action-pipe.yaml diff --git a/templates/bindings/core/dns-ip-action-binding.yaml b/templates/pipes/core/dns-ip-action-pipe.yaml similarity index 100% rename from templates/bindings/core/dns-ip-action-binding.yaml rename to templates/pipes/core/dns-ip-action-pipe.yaml diff --git a/templates/bindings/core/dns-lookup-action-binding.yaml b/templates/pipes/core/dns-lookup-action-pipe.yaml similarity index 100% rename from templates/bindings/core/dns-lookup-action-binding.yaml rename to templates/pipes/core/dns-lookup-action-pipe.yaml diff --git a/templates/bindings/core/dropbox-sink-binding.yaml b/templates/pipes/core/dropbox-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/dropbox-sink-binding.yaml rename to templates/pipes/core/dropbox-sink-pipe.yaml diff --git a/templates/bindings/core/dropbox-source-binding.yaml b/templates/pipes/core/dropbox-source-pipe.yaml similarity index 100% rename from templates/bindings/core/dropbox-source-binding.yaml rename to templates/pipes/core/dropbox-source-pipe.yaml diff --git a/templates/bindings/core/earthquake-source-binding.yaml b/templates/pipes/core/earthquake-source-pipe.yaml similarity index 100% rename from templates/bindings/core/earthquake-source-binding.yaml rename to templates/pipes/core/earthquake-source-pipe.yaml diff --git a/templates/bindings/core/elasticsearch-index-sink-binding.yaml b/templates/pipes/core/elasticsearch-index-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/elasticsearch-index-sink-binding.yaml rename to templates/pipes/core/elasticsearch-index-sink-pipe.yaml diff --git a/templates/bindings/core/elasticsearch-search-source-binding.yaml b/templates/pipes/core/elasticsearch-search-source-pipe.yaml similarity index 100% rename from templates/bindings/core/elasticsearch-search-source-binding.yaml rename to templates/pipes/core/elasticsearch-search-source-pipe.yaml diff --git a/templates/bindings/core/exec-sink-binding.yaml b/templates/pipes/core/exec-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/exec-sink-binding.yaml rename to templates/pipes/core/exec-sink-pipe.yaml diff --git a/templates/bindings/core/extract-field-action-binding.yaml b/templates/pipes/core/extract-field-action-pipe.yaml similarity index 100% rename from templates/bindings/core/extract-field-action-binding.yaml rename to templates/pipes/core/extract-field-action-pipe.yaml diff --git a/templates/bindings/core/fhir-source-binding.yaml b/templates/pipes/core/fhir-source-pipe.yaml similarity index 100% rename from templates/bindings/core/fhir-source-binding.yaml rename to templates/pipes/core/fhir-source-pipe.yaml diff --git a/templates/bindings/core/file-watch-source-binding.yaml b/templates/pipes/core/file-watch-source-pipe.yaml similarity index 100% rename from templates/bindings/core/file-watch-source-binding.yaml rename to templates/pipes/core/file-watch-source-pipe.yaml diff --git a/templates/bindings/core/freemarker-template-action-binding.yaml b/templates/pipes/core/freemarker-template-action-pipe.yaml similarity index 100% rename from templates/bindings/core/freemarker-template-action-binding.yaml rename to templates/pipes/core/freemarker-template-action-pipe.yaml diff --git a/templates/bindings/core/ftp-sink-binding.yaml b/templates/pipes/core/ftp-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/ftp-sink-binding.yaml rename to templates/pipes/core/ftp-sink-pipe.yaml diff --git a/templates/bindings/core/ftp-source-binding.yaml b/templates/pipes/core/ftp-source-pipe.yaml similarity index 100% rename from templates/bindings/core/ftp-source-binding.yaml rename to templates/pipes/core/ftp-source-pipe.yaml diff --git a/templates/bindings/core/ftps-sink-binding.yaml b/templates/pipes/core/ftps-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/ftps-sink-binding.yaml rename to templates/pipes/core/ftps-sink-pipe.yaml diff --git a/templates/bindings/core/ftps-source-binding.yaml b/templates/pipes/core/ftps-source-pipe.yaml similarity index 100% rename from templates/bindings/core/ftps-source-binding.yaml rename to templates/pipes/core/ftps-source-pipe.yaml diff --git a/templates/bindings/core/github-commit-source-binding.yaml b/templates/pipes/core/github-commit-source-pipe.yaml similarity index 100% rename from templates/bindings/core/github-commit-source-binding.yaml rename to templates/pipes/core/github-commit-source-pipe.yaml diff --git a/templates/bindings/core/github-event-source-binding.yaml b/templates/pipes/core/github-event-source-pipe.yaml similarity index 100% rename from templates/bindings/core/github-event-source-binding.yaml rename to templates/pipes/core/github-event-source-pipe.yaml diff --git a/templates/bindings/core/github-source-binding.yaml b/templates/pipes/core/github-source-pipe.yaml similarity index 100% rename from templates/bindings/core/github-source-binding.yaml rename to templates/pipes/core/github-source-pipe.yaml diff --git a/templates/bindings/core/github-tag-source-binding.yaml b/templates/pipes/core/github-tag-source-pipe.yaml similarity index 100% rename from templates/bindings/core/github-tag-source-binding.yaml rename to templates/pipes/core/github-tag-source-pipe.yaml diff --git a/templates/bindings/core/google-calendar-source-binding.yaml b/templates/pipes/core/google-calendar-source-pipe.yaml similarity index 100% rename from templates/bindings/core/google-calendar-source-binding.yaml rename to templates/pipes/core/google-calendar-source-pipe.yaml diff --git a/templates/bindings/core/google-functions-sink-binding.yaml b/templates/pipes/core/google-functions-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/google-functions-sink-binding.yaml rename to templates/pipes/core/google-functions-sink-pipe.yaml diff --git a/templates/bindings/core/google-mail-source-binding.yaml b/templates/pipes/core/google-mail-source-pipe.yaml similarity index 100% rename from templates/bindings/core/google-mail-source-binding.yaml rename to templates/pipes/core/google-mail-source-pipe.yaml diff --git a/templates/bindings/core/google-pubsub-sink-binding.yaml b/templates/pipes/core/google-pubsub-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/google-pubsub-sink-binding.yaml rename to templates/pipes/core/google-pubsub-sink-pipe.yaml diff --git a/templates/bindings/core/google-pubsub-source-binding.yaml b/templates/pipes/core/google-pubsub-source-pipe.yaml similarity index 100% rename from templates/bindings/core/google-pubsub-source-binding.yaml rename to templates/pipes/core/google-pubsub-source-pipe.yaml diff --git a/templates/bindings/core/google-sheets-source-binding.yaml b/templates/pipes/core/google-sheets-source-pipe.yaml similarity index 100% rename from templates/bindings/core/google-sheets-source-binding.yaml rename to templates/pipes/core/google-sheets-source-pipe.yaml diff --git a/templates/bindings/core/google-storage-sink-binding.yaml b/templates/pipes/core/google-storage-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/google-storage-sink-binding.yaml rename to templates/pipes/core/google-storage-sink-pipe.yaml diff --git a/templates/bindings/core/google-storage-source-binding.yaml b/templates/pipes/core/google-storage-source-pipe.yaml similarity index 100% rename from templates/bindings/core/google-storage-source-binding.yaml rename to templates/pipes/core/google-storage-source-pipe.yaml diff --git a/templates/bindings/core/has-header-filter-action-binding.yaml b/templates/pipes/core/has-header-filter-action-pipe.yaml similarity index 100% rename from templates/bindings/core/has-header-filter-action-binding.yaml rename to templates/pipes/core/has-header-filter-action-pipe.yaml diff --git a/templates/bindings/core/header-matches-filter-action-binding.yaml b/templates/pipes/core/header-matches-filter-action-pipe.yaml similarity index 100% rename from templates/bindings/core/header-matches-filter-action-binding.yaml rename to templates/pipes/core/header-matches-filter-action-pipe.yaml diff --git a/templates/bindings/core/hoist-field-action-binding.yaml b/templates/pipes/core/hoist-field-action-pipe.yaml similarity index 100% rename from templates/bindings/core/hoist-field-action-binding.yaml rename to templates/pipes/core/hoist-field-action-pipe.yaml diff --git a/templates/bindings/core/http-secured-sink-binding.yaml b/templates/pipes/core/http-secured-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/http-secured-sink-binding.yaml rename to templates/pipes/core/http-secured-sink-pipe.yaml diff --git a/templates/bindings/core/http-secured-source-binding.yaml b/templates/pipes/core/http-secured-source-pipe.yaml similarity index 100% rename from templates/bindings/core/http-secured-source-binding.yaml rename to templates/pipes/core/http-secured-source-pipe.yaml diff --git a/templates/bindings/core/http-sink-binding.yaml b/templates/pipes/core/http-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/http-sink-binding.yaml rename to templates/pipes/core/http-sink-pipe.yaml diff --git a/templates/bindings/core/http-source-binding.yaml b/templates/pipes/core/http-source-pipe.yaml similarity index 100% rename from templates/bindings/core/http-source-binding.yaml rename to templates/pipes/core/http-source-pipe.yaml diff --git a/templates/bindings/core/infinispan-sink-binding.yaml b/templates/pipes/core/infinispan-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/infinispan-sink-binding.yaml rename to templates/pipes/core/infinispan-sink-pipe.yaml diff --git a/templates/bindings/core/infinispan-source-binding.yaml b/templates/pipes/core/infinispan-source-pipe.yaml similarity index 100% rename from templates/bindings/core/infinispan-source-binding.yaml rename to templates/pipes/core/infinispan-source-pipe.yaml diff --git a/templates/bindings/core/insert-field-action-binding.yaml b/templates/pipes/core/insert-field-action-pipe.yaml similarity index 100% rename from templates/bindings/core/insert-field-action-binding.yaml rename to templates/pipes/core/insert-field-action-pipe.yaml diff --git a/templates/bindings/core/insert-header-action-binding.yaml b/templates/pipes/core/insert-header-action-pipe.yaml similarity index 100% rename from templates/bindings/core/insert-header-action-binding.yaml rename to templates/pipes/core/insert-header-action-pipe.yaml diff --git a/templates/bindings/core/is-tombstone-filter-action-binding.yaml b/templates/pipes/core/is-tombstone-filter-action-pipe.yaml similarity index 100% rename from templates/bindings/core/is-tombstone-filter-action-binding.yaml rename to templates/pipes/core/is-tombstone-filter-action-pipe.yaml diff --git a/templates/bindings/core/jira-add-comment-sink-binding.yaml b/templates/pipes/core/jira-add-comment-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/jira-add-comment-sink-binding.yaml rename to templates/pipes/core/jira-add-comment-sink-pipe.yaml diff --git a/templates/bindings/core/jira-add-issue-sink-binding.yaml b/templates/pipes/core/jira-add-issue-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/jira-add-issue-sink-binding.yaml rename to templates/pipes/core/jira-add-issue-sink-pipe.yaml diff --git a/templates/bindings/core/jira-source-binding.yaml b/templates/pipes/core/jira-source-pipe.yaml similarity index 100% rename from templates/bindings/core/jira-source-binding.yaml rename to templates/pipes/core/jira-source-pipe.yaml diff --git a/templates/bindings/core/jira-transition-issue-sink-binding.yaml b/templates/pipes/core/jira-transition-issue-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/jira-transition-issue-sink-binding.yaml rename to templates/pipes/core/jira-transition-issue-sink-pipe.yaml diff --git a/templates/bindings/core/jira-update-issue-sink-binding.yaml b/templates/pipes/core/jira-update-issue-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/jira-update-issue-sink-binding.yaml rename to templates/pipes/core/jira-update-issue-sink-pipe.yaml diff --git a/templates/bindings/core/jms-amqp-10-sink-binding.yaml b/templates/pipes/core/jms-amqp-10-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/jms-amqp-10-sink-binding.yaml rename to templates/pipes/core/jms-amqp-10-sink-pipe.yaml diff --git a/templates/bindings/core/jms-amqp-10-source-binding.yaml b/templates/pipes/core/jms-amqp-10-source-pipe.yaml similarity index 100% rename from templates/bindings/core/jms-amqp-10-source-binding.yaml rename to templates/pipes/core/jms-amqp-10-source-pipe.yaml diff --git a/templates/bindings/core/jms-apache-artemis-sink-binding.yaml b/templates/pipes/core/jms-apache-artemis-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/jms-apache-artemis-sink-binding.yaml rename to templates/pipes/core/jms-apache-artemis-sink-pipe.yaml diff --git a/templates/bindings/core/jms-apache-artemis-source-binding.yaml b/templates/pipes/core/jms-apache-artemis-source-pipe.yaml similarity index 100% rename from templates/bindings/core/jms-apache-artemis-source-binding.yaml rename to templates/pipes/core/jms-apache-artemis-source-pipe.yaml diff --git a/templates/bindings/core/jms-ibm-mq-sink-binding.yaml b/templates/pipes/core/jms-ibm-mq-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/jms-ibm-mq-sink-binding.yaml rename to templates/pipes/core/jms-ibm-mq-sink-pipe.yaml diff --git a/templates/bindings/core/jms-ibm-mq-source-binding.yaml b/templates/pipes/core/jms-ibm-mq-source-pipe.yaml similarity index 100% rename from templates/bindings/core/jms-ibm-mq-source-binding.yaml rename to templates/pipes/core/jms-ibm-mq-source-pipe.yaml diff --git a/templates/bindings/core/jolt-transformation-action-binding.yaml b/templates/pipes/core/jolt-transformation-action-pipe.yaml similarity index 100% rename from templates/bindings/core/jolt-transformation-action-binding.yaml rename to templates/pipes/core/jolt-transformation-action-pipe.yaml diff --git a/templates/bindings/core/json-deserialize-action-binding.yaml b/templates/pipes/core/json-deserialize-action-pipe.yaml similarity index 100% rename from templates/bindings/core/json-deserialize-action-binding.yaml rename to templates/pipes/core/json-deserialize-action-pipe.yaml diff --git a/templates/bindings/core/json-patch-action-binding.yaml b/templates/pipes/core/json-patch-action-pipe.yaml similarity index 100% rename from templates/bindings/core/json-patch-action-binding.yaml rename to templates/pipes/core/json-patch-action-pipe.yaml diff --git a/templates/bindings/core/json-schema-validator-action-binding.yaml b/templates/pipes/core/json-schema-validator-action-pipe.yaml similarity index 100% rename from templates/bindings/core/json-schema-validator-action-binding.yaml rename to templates/pipes/core/json-schema-validator-action-pipe.yaml diff --git a/templates/bindings/core/json-serialize-action-binding.yaml b/templates/pipes/core/json-serialize-action-pipe.yaml similarity index 100% rename from templates/bindings/core/json-serialize-action-binding.yaml rename to templates/pipes/core/json-serialize-action-pipe.yaml diff --git a/templates/bindings/core/jsonata-action-binding.yaml b/templates/pipes/core/jsonata-action-pipe.yaml similarity index 100% rename from templates/bindings/core/jsonata-action-binding.yaml rename to templates/pipes/core/jsonata-action-pipe.yaml diff --git a/templates/bindings/core/kafka-manual-commit-action-binding.yaml b/templates/pipes/core/kafka-manual-commit-action-pipe.yaml similarity index 100% rename from templates/bindings/core/kafka-manual-commit-action-binding.yaml rename to templates/pipes/core/kafka-manual-commit-action-pipe.yaml diff --git a/templates/bindings/core/kafka-not-secured-sink-binding.yaml b/templates/pipes/core/kafka-not-secured-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/kafka-not-secured-sink-binding.yaml rename to templates/pipes/core/kafka-not-secured-sink-pipe.yaml diff --git a/templates/bindings/core/kafka-not-secured-source-binding.yaml b/templates/pipes/core/kafka-not-secured-source-pipe.yaml similarity index 100% rename from templates/bindings/core/kafka-not-secured-source-binding.yaml rename to templates/pipes/core/kafka-not-secured-source-pipe.yaml diff --git a/templates/bindings/core/kafka-sink-binding.yaml b/templates/pipes/core/kafka-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/kafka-sink-binding.yaml rename to templates/pipes/core/kafka-sink-pipe.yaml diff --git a/templates/bindings/core/kafka-source-binding.yaml b/templates/pipes/core/kafka-source-pipe.yaml similarity index 100% rename from templates/bindings/core/kafka-source-binding.yaml rename to templates/pipes/core/kafka-source-pipe.yaml diff --git a/templates/bindings/core/kamelet-core-binding.yaml.tmpl b/templates/pipes/core/kamelet-core-pipe.yaml.tmpl similarity index 100% rename from templates/bindings/core/kamelet-core-binding.yaml.tmpl rename to templates/pipes/core/kamelet-core-pipe.yaml.tmpl diff --git a/templates/bindings/core/kubernetes-namespaces-source-binding.yaml b/templates/pipes/core/kubernetes-namespaces-source-pipe.yaml similarity index 100% rename from templates/bindings/core/kubernetes-namespaces-source-binding.yaml rename to templates/pipes/core/kubernetes-namespaces-source-pipe.yaml diff --git a/templates/bindings/core/kubernetes-nodes-source-binding.yaml b/templates/pipes/core/kubernetes-nodes-source-pipe.yaml similarity index 100% rename from templates/bindings/core/kubernetes-nodes-source-binding.yaml rename to templates/pipes/core/kubernetes-nodes-source-pipe.yaml diff --git a/templates/bindings/core/kubernetes-pods-source-binding.yaml b/templates/pipes/core/kubernetes-pods-source-pipe.yaml similarity index 100% rename from templates/bindings/core/kubernetes-pods-source-binding.yaml rename to templates/pipes/core/kubernetes-pods-source-pipe.yaml diff --git a/templates/bindings/core/log-sink-binding.yaml b/templates/pipes/core/log-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/log-sink-binding.yaml rename to templates/pipes/core/log-sink-pipe.yaml diff --git a/templates/bindings/core/mail-imap-source-binding.yaml b/templates/pipes/core/mail-imap-source-pipe.yaml similarity index 100% rename from templates/bindings/core/mail-imap-source-binding.yaml rename to templates/pipes/core/mail-imap-source-pipe.yaml diff --git a/templates/bindings/core/mail-sink-binding.yaml b/templates/pipes/core/mail-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/mail-sink-binding.yaml rename to templates/pipes/core/mail-sink-pipe.yaml diff --git a/templates/bindings/core/mariadb-sink-binding.yaml b/templates/pipes/core/mariadb-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/mariadb-sink-binding.yaml rename to templates/pipes/core/mariadb-sink-pipe.yaml diff --git a/templates/bindings/core/mariadb-source-binding.yaml b/templates/pipes/core/mariadb-source-pipe.yaml similarity index 100% rename from templates/bindings/core/mariadb-source-binding.yaml rename to templates/pipes/core/mariadb-source-pipe.yaml diff --git a/templates/bindings/core/mask-field-action-binding.yaml b/templates/pipes/core/mask-field-action-pipe.yaml similarity index 100% rename from templates/bindings/core/mask-field-action-binding.yaml rename to templates/pipes/core/mask-field-action-pipe.yaml diff --git a/templates/bindings/core/message-timestamp-router-action-binding.yaml b/templates/pipes/core/message-timestamp-router-action-pipe.yaml similarity index 100% rename from templates/bindings/core/message-timestamp-router-action-binding.yaml rename to templates/pipes/core/message-timestamp-router-action-pipe.yaml diff --git a/templates/bindings/core/minio-sink-binding.yaml b/templates/pipes/core/minio-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/minio-sink-binding.yaml rename to templates/pipes/core/minio-sink-pipe.yaml diff --git a/templates/bindings/core/minio-source-binding.yaml b/templates/pipes/core/minio-source-pipe.yaml similarity index 100% rename from templates/bindings/core/minio-source-binding.yaml rename to templates/pipes/core/minio-source-pipe.yaml diff --git a/templates/bindings/core/mongodb-sink-binding.yaml b/templates/pipes/core/mongodb-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/mongodb-sink-binding.yaml rename to templates/pipes/core/mongodb-sink-pipe.yaml diff --git a/templates/bindings/core/mongodb-source-binding.yaml b/templates/pipes/core/mongodb-source-pipe.yaml similarity index 100% rename from templates/bindings/core/mongodb-source-binding.yaml rename to templates/pipes/core/mongodb-source-pipe.yaml diff --git a/templates/bindings/core/mqtt-sink-binding.yaml b/templates/pipes/core/mqtt-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/mqtt-sink-binding.yaml rename to templates/pipes/core/mqtt-sink-pipe.yaml diff --git a/templates/bindings/core/mqtt-source-binding.yaml b/templates/pipes/core/mqtt-source-pipe.yaml similarity index 100% rename from templates/bindings/core/mqtt-source-binding.yaml rename to templates/pipes/core/mqtt-source-pipe.yaml diff --git a/templates/bindings/core/mustache-template-action-binding.yaml b/templates/pipes/core/mustache-template-action-pipe.yaml similarity index 100% rename from templates/bindings/core/mustache-template-action-binding.yaml rename to templates/pipes/core/mustache-template-action-pipe.yaml diff --git a/templates/bindings/core/mvel-template-action-binding.yaml b/templates/pipes/core/mvel-template-action-pipe.yaml similarity index 100% rename from templates/bindings/core/mvel-template-action-binding.yaml rename to templates/pipes/core/mvel-template-action-pipe.yaml diff --git a/templates/bindings/core/mysql-sink-binding.yaml b/templates/pipes/core/mysql-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/mysql-sink-binding.yaml rename to templates/pipes/core/mysql-sink-pipe.yaml diff --git a/templates/bindings/core/mysql-source-binding.yaml b/templates/pipes/core/mysql-source-pipe.yaml similarity index 100% rename from templates/bindings/core/mysql-source-binding.yaml rename to templates/pipes/core/mysql-source-pipe.yaml diff --git a/templates/bindings/core/nats-sink-binding.yaml b/templates/pipes/core/nats-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/nats-sink-binding.yaml rename to templates/pipes/core/nats-sink-pipe.yaml diff --git a/templates/bindings/core/nats-source-binding.yaml b/templates/pipes/core/nats-source-pipe.yaml similarity index 100% rename from templates/bindings/core/nats-source-binding.yaml rename to templates/pipes/core/nats-source-pipe.yaml diff --git a/templates/bindings/core/openai-classification-action-binding.yaml b/templates/pipes/core/openai-classification-action-pipe.yaml similarity index 100% rename from templates/bindings/core/openai-classification-action-binding.yaml rename to templates/pipes/core/openai-classification-action-pipe.yaml diff --git a/templates/bindings/core/openai-completion-action-binding.yaml b/templates/pipes/core/openai-completion-action-pipe.yaml similarity index 100% rename from templates/bindings/core/openai-completion-action-binding.yaml rename to templates/pipes/core/openai-completion-action-pipe.yaml diff --git a/templates/bindings/core/parameter-list.tmpl b/templates/pipes/core/parameter-list.tmpl similarity index 100% rename from templates/bindings/core/parameter-list.tmpl rename to templates/pipes/core/parameter-list.tmpl diff --git a/templates/bindings/core/pdf-action-binding.yaml b/templates/pipes/core/pdf-action-pipe.yaml similarity index 100% rename from templates/bindings/core/pdf-action-binding.yaml rename to templates/pipes/core/pdf-action-pipe.yaml diff --git a/templates/bindings/core/postgresql-sink-binding.yaml b/templates/pipes/core/postgresql-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/postgresql-sink-binding.yaml rename to templates/pipes/core/postgresql-sink-pipe.yaml diff --git a/templates/bindings/core/postgresql-source-binding.yaml b/templates/pipes/core/postgresql-source-pipe.yaml similarity index 100% rename from templates/bindings/core/postgresql-source-binding.yaml rename to templates/pipes/core/postgresql-source-pipe.yaml diff --git a/templates/bindings/core/predicate-filter-action-binding.yaml b/templates/pipes/core/predicate-filter-action-pipe.yaml similarity index 100% rename from templates/bindings/core/predicate-filter-action-binding.yaml rename to templates/pipes/core/predicate-filter-action-pipe.yaml diff --git a/templates/bindings/core/protobuf-deserialize-action-binding.yaml b/templates/pipes/core/protobuf-deserialize-action-pipe.yaml similarity index 100% rename from templates/bindings/core/protobuf-deserialize-action-binding.yaml rename to templates/pipes/core/protobuf-deserialize-action-pipe.yaml diff --git a/templates/bindings/core/protobuf-serialize-action-binding.yaml b/templates/pipes/core/protobuf-serialize-action-pipe.yaml similarity index 100% rename from templates/bindings/core/protobuf-serialize-action-binding.yaml rename to templates/pipes/core/protobuf-serialize-action-pipe.yaml diff --git a/templates/bindings/core/pulsar-sink-binding.yaml b/templates/pipes/core/pulsar-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/pulsar-sink-binding.yaml rename to templates/pipes/core/pulsar-sink-pipe.yaml diff --git a/templates/bindings/core/pulsar-source-binding.yaml b/templates/pipes/core/pulsar-source-pipe.yaml similarity index 100% rename from templates/bindings/core/pulsar-source-binding.yaml rename to templates/pipes/core/pulsar-source-pipe.yaml diff --git a/templates/bindings/core/rabbitmq-source-binding.yaml b/templates/pipes/core/rabbitmq-source-pipe.yaml similarity index 100% rename from templates/bindings/core/rabbitmq-source-binding.yaml rename to templates/pipes/core/rabbitmq-source-pipe.yaml diff --git a/templates/bindings/core/redis-sink-binding.yaml b/templates/pipes/core/redis-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/redis-sink-binding.yaml rename to templates/pipes/core/redis-sink-pipe.yaml diff --git a/templates/bindings/core/redis-source-binding.yaml b/templates/pipes/core/redis-source-pipe.yaml similarity index 100% rename from templates/bindings/core/redis-source-binding.yaml rename to templates/pipes/core/redis-source-pipe.yaml diff --git a/templates/bindings/core/regex-router-action-binding.yaml b/templates/pipes/core/regex-router-action-pipe.yaml similarity index 100% rename from templates/bindings/core/regex-router-action-binding.yaml rename to templates/pipes/core/regex-router-action-pipe.yaml diff --git a/templates/bindings/core/replace-field-action-binding.yaml b/templates/pipes/core/replace-field-action-pipe.yaml similarity index 100% rename from templates/bindings/core/replace-field-action-binding.yaml rename to templates/pipes/core/replace-field-action-pipe.yaml diff --git a/templates/bindings/core/salesforce-source-binding.yaml b/templates/pipes/core/salesforce-source-pipe.yaml similarity index 100% rename from templates/bindings/core/salesforce-source-binding.yaml rename to templates/pipes/core/salesforce-source-pipe.yaml diff --git a/templates/bindings/core/sftp-sink-binding.yaml b/templates/pipes/core/sftp-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/sftp-sink-binding.yaml rename to templates/pipes/core/sftp-sink-pipe.yaml diff --git a/templates/bindings/core/sftp-source-binding.yaml b/templates/pipes/core/sftp-source-pipe.yaml similarity index 100% rename from templates/bindings/core/sftp-source-binding.yaml rename to templates/pipes/core/sftp-source-pipe.yaml diff --git a/templates/bindings/core/simple-filter-action-binding.yaml b/templates/pipes/core/simple-filter-action-pipe.yaml similarity index 100% rename from templates/bindings/core/simple-filter-action-binding.yaml rename to templates/pipes/core/simple-filter-action-pipe.yaml diff --git a/templates/bindings/core/slack-sink-binding.yaml b/templates/pipes/core/slack-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/slack-sink-binding.yaml rename to templates/pipes/core/slack-sink-pipe.yaml diff --git a/templates/bindings/core/slack-source-binding.yaml b/templates/pipes/core/slack-source-pipe.yaml similarity index 100% rename from templates/bindings/core/slack-source-binding.yaml rename to templates/pipes/core/slack-source-pipe.yaml diff --git a/templates/bindings/core/splunk-hec-sink-binding.yaml b/templates/pipes/core/splunk-hec-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/splunk-hec-sink-binding.yaml rename to templates/pipes/core/splunk-hec-sink-pipe.yaml diff --git a/templates/bindings/core/splunk-sink-binding.yaml b/templates/pipes/core/splunk-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/splunk-sink-binding.yaml rename to templates/pipes/core/splunk-sink-pipe.yaml diff --git a/templates/bindings/core/splunk-source-binding.yaml b/templates/pipes/core/splunk-source-pipe.yaml similarity index 100% rename from templates/bindings/core/splunk-source-binding.yaml rename to templates/pipes/core/splunk-source-pipe.yaml diff --git a/templates/bindings/core/sqlserver-sink-binding.yaml b/templates/pipes/core/sqlserver-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/sqlserver-sink-binding.yaml rename to templates/pipes/core/sqlserver-sink-pipe.yaml diff --git a/templates/bindings/core/sqlserver-source-binding.yaml b/templates/pipes/core/sqlserver-source-pipe.yaml similarity index 100% rename from templates/bindings/core/sqlserver-source-binding.yaml rename to templates/pipes/core/sqlserver-source-pipe.yaml diff --git a/templates/bindings/core/ssh-sink-binding.yaml b/templates/pipes/core/ssh-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/ssh-sink-binding.yaml rename to templates/pipes/core/ssh-sink-pipe.yaml diff --git a/templates/bindings/core/ssh-source-binding.yaml b/templates/pipes/core/ssh-source-pipe.yaml similarity index 100% rename from templates/bindings/core/ssh-source-binding.yaml rename to templates/pipes/core/ssh-source-pipe.yaml diff --git a/templates/bindings/core/string-template-action-binding.yaml b/templates/pipes/core/string-template-action-pipe.yaml similarity index 100% rename from templates/bindings/core/string-template-action-binding.yaml rename to templates/pipes/core/string-template-action-pipe.yaml diff --git a/templates/bindings/core/telegram-sink-binding.yaml b/templates/pipes/core/telegram-sink-pipe.yaml similarity index 100% rename from templates/bindings/core/telegram-sink-binding.yaml rename to templates/pipes/core/telegram-sink-pipe.yaml diff --git a/templates/bindings/core/telegram-source-binding.yaml b/templates/pipes/core/telegram-source-pipe.yaml similarity index 100% rename from templates/bindings/core/telegram-source-binding.yaml rename to templates/pipes/core/telegram-source-pipe.yaml diff --git a/templates/bindings/core/throttle-action-binding.yaml b/templates/pipes/core/throttle-action-pipe.yaml similarity index 100% rename from templates/bindings/core/throttle-action-binding.yaml rename to templates/pipes/core/throttle-action-pipe.yaml diff --git a/templates/bindings/core/timer-source-binding.yaml b/templates/pipes/core/timer-source-pipe.yaml similarity index 100% rename from templates/bindings/core/timer-source-binding.yaml rename to templates/pipes/core/timer-source-pipe.yaml diff --git a/templates/bindings/core/timestamp-router-action-binding.yaml b/templates/pipes/core/timestamp-router-action-pipe.yaml similarity index 100% rename from templates/bindings/core/timestamp-router-action-binding.yaml rename to templates/pipes/core/timestamp-router-action-pipe.yaml diff --git a/templates/bindings/core/topic-name-matches-filter-action-binding.yaml b/templates/pipes/core/topic-name-matches-filter-action-pipe.yaml similarity index 100% rename from templates/bindings/core/topic-name-matches-filter-action-binding.yaml rename to templates/pipes/core/topic-name-matches-filter-action-pipe.yaml diff --git a/templates/bindings/core/twitter-directmessage-source-binding.yaml b/templates/pipes/core/twitter-directmessage-source-pipe.yaml similarity index 100% rename from templates/bindings/core/twitter-directmessage-source-binding.yaml rename to templates/pipes/core/twitter-directmessage-source-pipe.yaml diff --git a/templates/bindings/core/twitter-search-source-binding.yaml b/templates/pipes/core/twitter-search-source-pipe.yaml similarity index 100% rename from templates/bindings/core/twitter-search-source-binding.yaml rename to templates/pipes/core/twitter-search-source-pipe.yaml diff --git a/templates/bindings/core/twitter-timeline-source-binding.yaml b/templates/pipes/core/twitter-timeline-source-pipe.yaml similarity index 100% rename from templates/bindings/core/twitter-timeline-source-binding.yaml rename to templates/pipes/core/twitter-timeline-source-pipe.yaml diff --git a/templates/bindings/core/value-to-key-action-binding.yaml b/templates/pipes/core/value-to-key-action-pipe.yaml similarity index 100% rename from templates/bindings/core/value-to-key-action-binding.yaml rename to templates/pipes/core/value-to-key-action-pipe.yaml diff --git a/templates/bindings/core/velocity-template-action-binding.yaml b/templates/pipes/core/velocity-template-action-pipe.yaml similarity index 100% rename from templates/bindings/core/velocity-template-action-binding.yaml rename to templates/pipes/core/velocity-template-action-pipe.yaml diff --git a/templates/bindings/core/webhook-source-binding.yaml b/templates/pipes/core/webhook-source-pipe.yaml similarity index 100% rename from templates/bindings/core/webhook-source-binding.yaml rename to templates/pipes/core/webhook-source-pipe.yaml diff --git a/templates/bindings/core/websocket-source-binding.yaml b/templates/pipes/core/websocket-source-pipe.yaml similarity index 100% rename from templates/bindings/core/websocket-source-binding.yaml rename to templates/pipes/core/websocket-source-pipe.yaml diff --git a/templates/bindings/core/wttrin-source-binding.yaml b/templates/pipes/core/wttrin-source-pipe.yaml similarity index 100% rename from templates/bindings/core/wttrin-source-binding.yaml rename to templates/pipes/core/wttrin-source-pipe.yaml diff --git a/templates/bindings/core/xj-identity-action-binding.yaml b/templates/pipes/core/xj-identity-action-pipe.yaml similarity index 100% rename from templates/bindings/core/xj-identity-action-binding.yaml rename to templates/pipes/core/xj-identity-action-pipe.yaml diff --git a/templates/bindings/core/xj-template-action-binding.yaml b/templates/pipes/core/xj-template-action-pipe.yaml similarity index 100% rename from templates/bindings/core/xj-template-action-binding.yaml rename to templates/pipes/core/xj-template-action-pipe.yaml diff --git a/test/avro-data-type/README.md b/test/avro-data-type/README.md index dcdc29e40..f872f0eea 100644 --- a/test/avro-data-type/README.md +++ b/test/avro-data-type/README.md @@ -6,11 +6,11 @@ This test verifies the Avro data type serialization/deserialization The test verifies the proper serialization and deserialization of Avro data types `avro/binary` and `avro/x-struct`. -The test uses two KameletBindings that interact with each other. The first binding `json-to-avro` periodically creates a test data event as Json and applies the `avro/binary` data type using the schema in [User.avsc](User.avsc). +The test uses two Pipes that interact with each other. The first binding `json-to-avro` periodically creates a test data event as Json and applies the `avro/binary` data type using the schema in [User.avsc](User.avsc). The binary Avro data is then sent to a Http webhook sink that references an Http endpoint that is provided by the 2nd binding `avro-to-log`. The `avro-to-log` binding provides the Http service and deserializes the binary Avro data using the same User schema. The deserialized data is printed to the log output. -The test starts both KameletBindings and is able to verify the proper log output as an expected outcome. +The test starts both Pipes and is able to verify the proper log output as an expected outcome. ### YAKS Test @@ -18,8 +18,8 @@ The test performs the following high level steps: *Avro data type feature* - Create test data based on the User.avsc Avro schema -- Load and run the `avro-to-log` KameletBinding -- Load and run the `json-to-avro` KameletBinding +- Load and run the `avro-to-log` Pipe +- Load and run the `json-to-avro` Pipe - Verify that the bindings do interact with each other and the proper test data is logged in the binding output ## Installation diff --git a/test/avro-data-type/avro-data-type.feature b/test/avro-data-type/avro-data-type.feature index 28765a9de..79fc83dab 100644 --- a/test/avro-data-type/avro-data-type.feature +++ b/test/avro-data-type/avro-data-type.feature @@ -1,22 +1,22 @@ Feature: Avro data type - Scenario: Create Kamelet bindings + Scenario: Create Kamelet Pipes Given variable uuid is "citrus:randomUUID()" Given variable user is """ { "id": "${uuid}", "firstname": "Sheldon", "lastname": "Cooper", "age": 28 } """ # Create avro-to-log binding - When load KameletBinding avro-to-log-binding.yaml - Then Camel K integration avro-to-log-binding should be running + When load Pipe avro-to-log-pipe.yaml + Then Camel K integration avro-to-log-pipe should be running # Create json-to-avro binding - When load KameletBinding json-to-avro-binding.yaml - Then Camel K integration json-to-avro-binding should be running + When load Pipe json-to-avro-pipe.yaml + Then Camel K integration json-to-avro-pipe should be running # Verify output message sent - Then Camel K integration avro-to-log-binding should print Body: { "id" : "${uuid}", "firstname" : "Sheldon", "lastname" : "Cooper", "age" : 28} + Then Camel K integration avro-to-log-pipe should print Body: { "id" : "${uuid}", "firstname" : "Sheldon", "lastname" : "Cooper", "age" : 28} Scenario: Remove resources - Given delete KameletBinding avro-to-log-binding - Given delete KameletBinding json-to-avro-binding + Given delete Pipe avro-to-log-pipe + Given delete Pipe json-to-avro-pipe diff --git a/test/avro-data-type/avro-to-log-binding.yaml b/test/avro-data-type/avro-to-log-pipe.yaml similarity index 95% rename from test/avro-data-type/avro-to-log-binding.yaml rename to test/avro-data-type/avro-to-log-pipe.yaml index 33c8e2c2b..91fee5c20 100644 --- a/test/avro-data-type/avro-to-log-binding.yaml +++ b/test/avro-data-type/avro-to-log-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: avro-to-log-binding + name: avro-to-log-pipe spec: source: ref: diff --git a/test/avro-data-type/json-to-avro-binding.yaml b/test/avro-data-type/json-to-avro-pipe.yaml similarity index 95% rename from test/avro-data-type/json-to-avro-binding.yaml rename to test/avro-data-type/json-to-avro-pipe.yaml index 0591f57ba..9ecb5836a 100644 --- a/test/avro-data-type/json-to-avro-binding.yaml +++ b/test/avro-data-type/json-to-avro-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: json-to-avro-binding + name: json-to-avro-pipe spec: source: ref: diff --git a/test/avro-data-type/yaks-config.yaml b/test/avro-data-type/yaks-config.yaml index 6f842c4f4..8abb2cf2f 100644 --- a/test/avro-data-type/yaks-config.yaml +++ b/test/avro-data-type/yaks-config.yaml @@ -37,8 +37,8 @@ config: - name: INTEGRATION_LOGS level: INFO resources: - - json-to-avro-binding.yaml - - avro-to-log-binding.yaml + - json-to-avro-pipe.yaml + - avro-to-log-pipe.yaml - User.avsc dump: enabled: true diff --git a/test/avro-serdes-action/README.md b/test/avro-serdes-action/README.md index 1a8b1b292..c642975b3 100644 --- a/test/avro-serdes-action/README.md +++ b/test/avro-serdes-action/README.md @@ -6,11 +6,11 @@ This test verifies the Avro serialization/deserialization actions The test verifies the proper Avro serialization and deserialization of Avro. -The test uses two KameletBindings that interact with each other. The first binding `json-to-avro` periodically creates a test data event as Json and applies the `avro/binary` data type using the schema in [User.avsc](User.avsc). +The test uses two Pipes that interact with each other. The first binding `json-to-avro` periodically creates a test data event as Json and applies the `avro/binary` data type using the schema in [User.avsc](User.avsc). The binary Avro data is then sent to a Http webhook sink that references an Http endpoint that is provided by the 2nd binding `avro-to-log`. The `avro-to-log` binding provides the Http service and deserializes the binary Avro data using the same User schema. The deserialized data is printed to the log output. -The test starts both KameletBindings and is able to verify the proper log output as an expected outcome. +The test starts both Pipes and is able to verify the proper log output as an expected outcome. ### YAKS Test @@ -18,8 +18,8 @@ The test performs the following high level steps: *Avro data type feature* - Create test data based on the User.avsc Avro schema -- Load and run the `avro-to-log` KameletBinding -- Load and run the `json-to-avro` KameletBinding +- Load and run the `avro-to-log` Pipe +- Load and run the `json-to-avro` Pipe - Verify that the bindings do interact with each other and the proper test data is logged in the binding output ## Installation diff --git a/test/avro-serdes-action/avro-serdes-action.feature b/test/avro-serdes-action/avro-serdes-action.feature index d09e24507..d812102cc 100644 --- a/test/avro-serdes-action/avro-serdes-action.feature +++ b/test/avro-serdes-action/avro-serdes-action.feature @@ -1,22 +1,22 @@ Feature: Avro serialize/deserialize action - Scenario: Create Kamelet bindings + Scenario: Create Kamelet Pipes Given variable uuid is "citrus:randomUUID()" Given variable user is """ { "id": "${uuid}", "firstname": "Sheldon", "lastname": "Cooper", "age": 28 } """ # Create avro-to-log binding - When load KameletBinding avro-to-log-binding.yaml - Then Camel K integration avro-to-log-binding should be running + When load Pipe avro-to-log-pipe.yaml + Then Camel K integration avro-to-log-pipe should be running # Create json-to-avro binding - When load KameletBinding json-to-avro-binding.yaml - Then Camel K integration json-to-avro-binding should be running + When load Pipe json-to-avro-pipe.yaml + Then Camel K integration json-to-avro-pipe should be running # Verify output message sent - Then Camel K integration avro-to-log-binding should print Body: { "id" : "${uuid}", "firstname" : "Sheldon", "lastname" : "Cooper", "age" : 28} + Then Camel K integration avro-to-log-pipe should print Body: { "id" : "${uuid}", "firstname" : "Sheldon", "lastname" : "Cooper", "age" : 28} Scenario: Remove resources - Given delete KameletBinding avro-to-log-binding - Given delete KameletBinding json-to-avro-binding + Given delete Pipe avro-to-log-pipe + Given delete Pipe json-to-avro-pipe diff --git a/test/avro-serdes-action/avro-to-log-binding.yaml b/test/avro-serdes-action/avro-to-log-pipe.yaml similarity index 94% rename from test/avro-serdes-action/avro-to-log-binding.yaml rename to test/avro-serdes-action/avro-to-log-pipe.yaml index d41cc5a0e..21ea16dbf 100644 --- a/test/avro-serdes-action/avro-to-log-binding.yaml +++ b/test/avro-serdes-action/avro-to-log-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: avro-to-log-binding + name: avro-to-log-pipe spec: source: ref: diff --git a/test/avro-serdes-action/json-to-avro-binding.yaml b/test/avro-serdes-action/json-to-avro-pipe.yaml similarity index 95% rename from test/avro-serdes-action/json-to-avro-binding.yaml rename to test/avro-serdes-action/json-to-avro-pipe.yaml index 35ddc0fe4..aef7bab1d 100644 --- a/test/avro-serdes-action/json-to-avro-binding.yaml +++ b/test/avro-serdes-action/json-to-avro-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: json-to-avro-binding + name: json-to-avro-pipe spec: source: ref: diff --git a/test/avro-serdes-action/yaks-config.yaml b/test/avro-serdes-action/yaks-config.yaml index 6f842c4f4..8abb2cf2f 100644 --- a/test/avro-serdes-action/yaks-config.yaml +++ b/test/avro-serdes-action/yaks-config.yaml @@ -37,8 +37,8 @@ config: - name: INTEGRATION_LOGS level: INFO resources: - - json-to-avro-binding.yaml - - avro-to-log-binding.yaml + - json-to-avro-pipe.yaml + - avro-to-log-pipe.yaml - User.avsc dump: enabled: true diff --git a/test/aws-ddb-sink/aws-ddb-sink-deleteItem.feature b/test/aws-ddb-sink/aws-ddb-sink-deleteItem.feature index 9ad6bde57..979b1f158 100644 --- a/test/aws-ddb-sink/aws-ddb-sink-deleteItem.feature +++ b/test/aws-ddb-sink/aws-ddb-sink-deleteItem.feature @@ -44,10 +44,10 @@ Feature: AWS DDB Sink - DeleteItem Scenario: Verify AWS-DDB Kamelet sink binding # Create binding - When load KameletBinding aws-ddb-sink-binding.yaml - And KameletBinding aws-ddb-sink-binding is available - And Camel K integration aws-ddb-sink-binding is running - And Camel K integration aws-ddb-sink-binding should print Started aws-ddb-sink-binding + When load Pipe aws-ddb-sink-pipe.yaml + And Pipe aws-ddb-sink-pipe is available + And Camel K integration aws-ddb-sink-pipe is running + And Camel K integration aws-ddb-sink-pipe should print Started aws-ddb-sink-pipe # Verify Kamelet sink Given variables | maxRetryAttempts | 20 | @@ -56,6 +56,6 @@ Feature: AWS DDB Sink - DeleteItem Scenario: Remove resources # Remove Camel K resources - Given delete KameletBinding aws-ddb-sink-binding + Given delete Pipe aws-ddb-sink-pipe # Stop LocalStack container Given stop LocalStack container diff --git a/test/aws-ddb-sink/aws-ddb-sink-binding.yaml b/test/aws-ddb-sink/aws-ddb-sink-pipe.yaml similarity index 95% rename from test/aws-ddb-sink/aws-ddb-sink-binding.yaml rename to test/aws-ddb-sink/aws-ddb-sink-pipe.yaml index 5ca1d5099..91fcfe124 100644 --- a/test/aws-ddb-sink/aws-ddb-sink-binding.yaml +++ b/test/aws-ddb-sink/aws-ddb-sink-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-ddb-sink-binding + name: aws-ddb-sink-pipe spec: source: ref: diff --git a/test/aws-ddb-sink/aws-ddb-sink-putItem.feature b/test/aws-ddb-sink/aws-ddb-sink-putItem.feature index 0ea361227..df3ee8fc0 100644 --- a/test/aws-ddb-sink/aws-ddb-sink-putItem.feature +++ b/test/aws-ddb-sink/aws-ddb-sink-putItem.feature @@ -43,10 +43,10 @@ Feature: AWS DDB Sink - PutItem Scenario: Verify AWS-DDB Kamelet sink binding # Create binding - When load KameletBinding aws-ddb-sink-binding.yaml - And KameletBinding aws-ddb-sink-binding is available - And Camel K integration aws-ddb-sink-binding is running - And Camel K integration aws-ddb-sink-binding should print Started aws-ddb-sink-binding + When load Pipe aws-ddb-sink-pipe.yaml + And Pipe aws-ddb-sink-pipe is available + And Camel K integration aws-ddb-sink-pipe is running + And Camel K integration aws-ddb-sink-pipe should print Started aws-ddb-sink-pipe # Verify Kamelet sink Given variables | maxRetryAttempts | 20 | @@ -55,6 +55,6 @@ Feature: AWS DDB Sink - PutItem Scenario: Remove resources # Remove Camel K binding - Given delete KameletBinding aws-ddb-sink-binding + Given delete Pipe aws-ddb-sink-pipe # Stop LocalStack container Given stop LocalStack container diff --git a/test/aws-ddb-sink/aws-ddb-sink-updateItem.feature b/test/aws-ddb-sink/aws-ddb-sink-updateItem.feature index d8cc58405..8a987d6a4 100644 --- a/test/aws-ddb-sink/aws-ddb-sink-updateItem.feature +++ b/test/aws-ddb-sink/aws-ddb-sink-updateItem.feature @@ -46,10 +46,10 @@ Feature: AWS DDB Sink - UpdateItem Scenario: Verify AWS-DDB Kamelet sink binding # Create binding - When load KameletBinding aws-ddb-sink-binding.yaml - And KameletBinding aws-ddb-sink-binding is available - And Camel K integration aws-ddb-sink-binding is running - And Camel K integration aws-ddb-sink-binding should print Started aws-ddb-sink-binding + When load Pipe aws-ddb-sink-pipe.yaml + And Pipe aws-ddb-sink-pipe is available + And Camel K integration aws-ddb-sink-pipe is running + And Camel K integration aws-ddb-sink-pipe should print Started aws-ddb-sink-pipe # Verify Kamelet sink Given variables | maxRetryAttempts | 200 | @@ -59,6 +59,6 @@ Feature: AWS DDB Sink - UpdateItem Scenario: Remove resources # Remove Camel K resources - Given delete KameletBinding aws-ddb-sink-binding + Given delete Pipe aws-ddb-sink-pipe # Stop LocalStack container Given stop LocalStack container diff --git a/test/aws-ddb-sink/yaks-config.yaml b/test/aws-ddb-sink/yaks-config.yaml index c3fe02325..dbd40ded4 100644 --- a/test/aws-ddb-sink/yaks-config.yaml +++ b/test/aws-ddb-sink/yaks-config.yaml @@ -38,7 +38,7 @@ config: - putItem.groovy - verifyItems.groovy - amazonDDBClient.groovy - - aws-ddb-sink-binding.yaml + - aws-ddb-sink-pipe.yaml cucumber: tags: - "not @ignored" diff --git a/test/aws-s3/README.md b/test/aws-s3/README.md index 7bf2aaec6..e60a88b45 100644 --- a/test/aws-s3/README.md +++ b/test/aws-s3/README.md @@ -64,7 +64,7 @@ $ yaks test aws-s3-source-property-conf.feature To run tests with URI binding: ```shell script -$ yaks test aws-s3-uri-binding.feature +$ yaks test aws-s3-uri-pipe.feature ``` To run tests with binding to Knative channel: diff --git a/test/aws-s3/aws-s3-knative-broker.feature b/test/aws-s3/aws-s3-knative-broker.feature index 719f91d2f..3c77627bd 100644 --- a/test/aws-s3/aws-s3-knative-broker.feature +++ b/test/aws-s3/aws-s3-knative-broker.feature @@ -23,8 +23,8 @@ Feature: AWS S3 Kamelet - Knative broker binding Scenario: Verify AWS-S3 Kamelet to Knative binding # Create binding - When load KameletBinding aws-s3-to-knative-broker.yaml - And KameletBinding aws-s3-to-knative-broker is available + When load Pipe aws-s3-to-knative-broker.yaml + And Pipe aws-s3-to-knative-broker is available And Camel K integration aws-s3-to-knative-broker is running Then Camel K integration aws-s3-to-knative-broker should print Started aws-s3-to-knative-broker # Verify Kamelet source @@ -41,7 +41,7 @@ Feature: AWS S3 Kamelet - Knative broker binding Scenario: Remove resources # Remove Camel K resources - Given delete KameletBinding aws-s3-to-knative-broker + Given delete Pipe aws-s3-to-knative-broker Given delete Kubernetes service event-consumer-service # Remove Knative resources Given delete Knative broker default diff --git a/test/aws-s3/aws-s3-knative-channel.feature b/test/aws-s3/aws-s3-knative-channel.feature index 0f26ea4f4..b2b449596 100644 --- a/test/aws-s3/aws-s3-knative-channel.feature +++ b/test/aws-s3/aws-s3-knative-channel.feature @@ -21,10 +21,10 @@ Feature: AWS S3 Kamelet - binding to Knative channel Scenario: Verify AWS-S3 Kamelet to InMemoryChannel binding # Create binding - Given load KameletBinding aws-s3-to-knative-channel.yaml - Given load KameletBinding knative-channel-to-log.yaml - Then KameletBinding aws-s3-to-knative-channel should be available - And KameletBinding knative-channel-to-log should be available + Given load Pipe aws-s3-to-knative-channel.yaml + Given load Pipe knative-channel-to-log.yaml + Then Pipe aws-s3-to-knative-channel should be available + And Pipe knative-channel-to-log should be available And Camel K integration aws-s3-to-knative-channel is running And Camel K integration knative-channel-to-log is running And Camel K integration aws-s3-to-knative-channel should print Started aws-s3-to-knative-channel @@ -37,8 +37,8 @@ Feature: AWS S3 Kamelet - binding to Knative channel Scenario: Remove resources # Remove Camel K resources - Given delete KameletBinding aws-s3-to-knative-channel - Given delete KameletBinding knative-channel-to-log + Given delete Pipe aws-s3-to-knative-channel + Given delete Pipe knative-channel-to-log # Remove Knative resources Given delete Knative broker default Given delete Knative channel messages diff --git a/test/aws-s3/aws-s3-knative-cloudevents.feature b/test/aws-s3/aws-s3-knative-cloudevents.feature index 0af416393..c3d1fd379 100644 --- a/test/aws-s3/aws-s3-knative-cloudevents.feature +++ b/test/aws-s3/aws-s3-knative-cloudevents.feature @@ -23,8 +23,8 @@ Feature: AWS S3 Kamelet - cloud events data type Scenario: Verify AWS-S3 Kamelet to Knative binding # Create binding - When load KameletBinding aws-s3-to-knative-broker.yaml - And KameletBinding aws-s3-to-knative-broker is available + When load Pipe aws-s3-to-knative-broker.yaml + And Pipe aws-s3-to-knative-broker is available And Camel K integration aws-s3-to-knative-broker is running Then Camel K integration aws-s3-to-knative-broker should print Started aws-s3-to-knative-broker # Verify Kamelet source @@ -42,7 +42,7 @@ Feature: AWS S3 Kamelet - cloud events data type Scenario: Remove resources # Remove Camel K resources - Given delete KameletBinding aws-s3-to-knative-broker + Given delete Pipe aws-s3-to-knative-broker Given delete Kubernetes service event-consumer-service # Remove Knative resources Given delete Knative broker default diff --git a/test/aws-s3/aws-s3-to-http.feature b/test/aws-s3/aws-s3-to-http.feature index 59f1897d2..476341fcb 100644 --- a/test/aws-s3/aws-s3-to-http.feature +++ b/test/aws-s3/aws-s3-to-http.feature @@ -21,8 +21,8 @@ Feature: AWS S3 Kamelet - Http sink Scenario: Verify AWS-S3 Kamelet to Http # Create binding - When load KameletBinding aws-s3-to-http.yaml - And KameletBinding aws-s3-to-http is available + When load Pipe aws-s3-to-http.yaml + And Pipe aws-s3-to-http is available And Camel K integration aws-s3-to-http is running Then Camel K integration aws-s3-to-http should print Started aws-s3-to-http # Verify Kamelet source @@ -43,7 +43,7 @@ Feature: AWS S3 Kamelet - Http sink Scenario: Remove resources # Remove Camel K resources - Given delete KameletBinding aws-s3-to-http + Given delete Pipe aws-s3-to-http Given delete Kubernetes service test-service # Stop LocalStack container Given stop LocalStack container diff --git a/test/aws-s3/aws-s3-to-http.yaml b/test/aws-s3/aws-s3-to-http.yaml index 05b9cd3d4..699bf2043 100644 --- a/test/aws-s3/aws-s3-to-http.yaml +++ b/test/aws-s3/aws-s3-to-http.yaml @@ -15,8 +15,8 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: name: aws-s3-to-http spec: diff --git a/test/aws-s3/aws-s3-to-knative-broker.yaml b/test/aws-s3/aws-s3-to-knative-broker.yaml index e9d98560e..4ee1d92dc 100644 --- a/test/aws-s3/aws-s3-to-knative-broker.yaml +++ b/test/aws-s3/aws-s3-to-knative-broker.yaml @@ -15,8 +15,8 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: name: aws-s3-to-knative-broker spec: diff --git a/test/aws-s3/aws-s3-to-knative-channel.yaml b/test/aws-s3/aws-s3-to-knative-channel.yaml index d5a2dd5e1..4d0f246c9 100644 --- a/test/aws-s3/aws-s3-to-knative-channel.yaml +++ b/test/aws-s3/aws-s3-to-knative-channel.yaml @@ -15,8 +15,8 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: name: aws-s3-to-knative-channel spec: diff --git a/test/aws-s3/aws-s3-uri-binding.feature b/test/aws-s3/aws-s3-uri-pipe.feature similarity index 69% rename from test/aws-s3/aws-s3-uri-binding.feature rename to test/aws-s3/aws-s3-uri-pipe.feature index d8214543f..432cec5b2 100644 --- a/test/aws-s3/aws-s3-uri-binding.feature +++ b/test/aws-s3/aws-s3-uri-pipe.feature @@ -16,17 +16,17 @@ Feature: AWS S3 Kamelet - binding to URI Scenario: Verify AWS-S3 Kamelet to log binding # Create binding - When load KameletBinding aws-s3-uri-binding.yaml - And KameletBinding aws-s3-uri-binding is available - And Camel K integration aws-s3-uri-binding is running - Then Camel K integration aws-s3-uri-binding should print Started aws-s3-uri-binding + When load Pipe aws-s3-uri-pipe.yaml + And Pipe aws-s3-uri-pipe is available + And Camel K integration aws-s3-uri-pipe is running + Then Camel K integration aws-s3-uri-pipe should print Started aws-s3-uri-pipe # Verify Kamelet source Given Camel exchange message header CamelAwsS3Key="${aws.s3.key}" Given send Camel exchange to("aws2-s3://${aws.s3.bucketNameOrArn}?amazonS3Client=#amazonS3Client") with body: ${aws.s3.message} - Then Camel K integration aws-s3-uri-binding should print ${aws.s3.message} + Then Camel K integration aws-s3-uri-pipe should print ${aws.s3.message} Scenario: Remove resources # Remove Camel K resources - Given delete KameletBinding aws-s3-uri-binding + Given delete Pipe aws-s3-uri-pipe # Stop LocalStack container Given stop LocalStack container diff --git a/test/aws-s3/aws-s3-uri-binding.yaml b/test/aws-s3/aws-s3-uri-pipe.yaml similarity index 94% rename from test/aws-s3/aws-s3-uri-binding.yaml rename to test/aws-s3/aws-s3-uri-pipe.yaml index 50742c18f..1827a1258 100644 --- a/test/aws-s3/aws-s3-uri-binding.yaml +++ b/test/aws-s3/aws-s3-uri-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: aws-s3-uri-binding + name: aws-s3-uri-pipe spec: source: ref: diff --git a/test/aws-s3/utils/knative-channel-to-log.yaml b/test/aws-s3/utils/knative-channel-to-log.yaml index 4d9405cf8..e4296d6f0 100644 --- a/test/aws-s3/utils/knative-channel-to-log.yaml +++ b/test/aws-s3/utils/knative-channel-to-log.yaml @@ -15,8 +15,8 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: name: knative-channel-to-log spec: diff --git a/test/aws-s3/utils/knative-to-log.yaml b/test/aws-s3/utils/knative-to-log.yaml index 91d00c95f..237b3fcf4 100644 --- a/test/aws-s3/utils/knative-to-log.yaml +++ b/test/aws-s3/utils/knative-to-log.yaml @@ -15,8 +15,8 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: name: knative-to-log spec: diff --git a/test/aws-s3/yaks-config.yaml b/test/aws-s3/yaks-config.yaml index ccbb58d79..5df6816b3 100644 --- a/test/aws-s3/yaks-config.yaml +++ b/test/aws-s3/yaks-config.yaml @@ -43,7 +43,7 @@ config: - aws-s3-credentials.properties - aws-s3-to-log-uri-based.groovy - aws-s3-to-log-secret-based.groovy - - aws-s3-uri-binding.yaml + - aws-s3-uri-pipe.yaml - aws-s3-to-http.yaml - aws-s3-to-knative-channel.yaml - aws-s3-to-knative-broker.yaml diff --git a/test/data-type-action/data-type-action-binding.yaml b/test/data-type-action/data-type-action-pipe.yaml similarity index 94% rename from test/data-type-action/data-type-action-binding.yaml rename to test/data-type-action/data-type-action-pipe.yaml index 3fc40093f..777149677 100644 --- a/test/data-type-action/data-type-action-binding.yaml +++ b/test/data-type-action/data-type-action-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: data-type-action-binding + name: data-type-action-pipe spec: source: ref: diff --git a/test/data-type-action/data-type-action.feature b/test/data-type-action/data-type-action.feature index 9aa87a977..9b9b1ffbb 100644 --- a/test/data-type-action/data-type-action.feature +++ b/test/data-type-action/data-type-action.feature @@ -13,8 +13,8 @@ Feature: Data type action """ { "id": "${uuid}" } """ - When load KameletBinding data-type-action-binding.yaml - Then Camel K integration data-type-action-binding should be running + When load Pipe data-type-action-pipe.yaml + Then Camel K integration data-type-action-pipe should be running # Verify output message sent Given expect HTTP request body: ${input} @@ -29,5 +29,5 @@ Feature: Data type action Then send HTTP 200 OK Scenario: Remove resources - Given delete KameletBinding data-type-action-binding + Given delete Pipe data-type-action-pipe And delete Kubernetes service test-service diff --git a/test/data-type-action/yaks-config.yaml b/test/data-type-action/yaks-config.yaml index a0b3d5902..1b6f93b1c 100644 --- a/test/data-type-action/yaks-config.yaml +++ b/test/data-type-action/yaks-config.yaml @@ -33,7 +33,7 @@ config: - name: INTEGRATION_LOGS level: INFO resources: - - data-type-action-binding.yaml + - data-type-action-pipe.yaml dump: enabled: true failedOnly: true diff --git a/test/earthquake-source/earthquake-source.feature b/test/earthquake-source/earthquake-source.feature index fdb6ef6f8..36281729d 100644 --- a/test/earthquake-source/earthquake-source.feature +++ b/test/earthquake-source/earthquake-source.feature @@ -25,8 +25,8 @@ Feature: Kamelet earthquake-source Given create Kubernetes service test-service with target port 8080 Scenario: Create Kamelet binding - Given load KameletBinding earthquake-to-http.yaml - Then KameletBinding earthquake-to-http should be available + Given load Pipe earthquake-to-http.yaml + Then Pipe earthquake-to-http should be available Then Camel K integration earthquake-to-http should be running And Camel K integration earthquake-to-http should print Routes startup @@ -36,5 +36,5 @@ Feature: Kamelet earthquake-source Then send HTTP 200 OK Scenario: Remove Camel K resources - Given delete KameletBinding earthquake-to-http + Given delete Pipe earthquake-to-http And delete Kubernetes service test-service diff --git a/test/earthquake-source/earthquake-to-http.yaml b/test/earthquake-source/earthquake-to-http.yaml index 31246f029..2fb0e663d 100644 --- a/test/earthquake-source/earthquake-to-http.yaml +++ b/test/earthquake-source/earthquake-to-http.yaml @@ -15,8 +15,8 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: name: earthquake-to-http spec: diff --git a/test/extract-field-action/extract-field-action-binding.yaml b/test/extract-field-action/extract-field-action-pipe.yaml similarity index 93% rename from test/extract-field-action/extract-field-action-binding.yaml rename to test/extract-field-action/extract-field-action-pipe.yaml index bd5d7be67..a99654c16 100644 --- a/test/extract-field-action/extract-field-action-binding.yaml +++ b/test/extract-field-action/extract-field-action-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: extract-field-action-binding + name: extract-field-action-pipe spec: source: ref: diff --git a/test/extract-field-action/extract-field-action.feature b/test/extract-field-action/extract-field-action.feature index 5ab22e57e..f449b64fc 100644 --- a/test/extract-field-action/extract-field-action.feature +++ b/test/extract-field-action/extract-field-action.feature @@ -30,9 +30,9 @@ Feature: Extract field Kamelet action """ { "id": "citrus:randomUUID()", "${field}": "Camel K rocks!" } """ - When load KameletBinding extract-field-action-binding.yaml - Then Camel K integration extract-field-action-binding should be running - And Camel K integration extract-field-action-binding should print Routes startup + When load Pipe extract-field-action-pipe.yaml + Then Camel K integration extract-field-action-pipe should be running + And Camel K integration extract-field-action-pipe should print Routes startup Scenario: Verify output message sent Given expect HTTP request body: "Camel K rocks!" @@ -40,5 +40,5 @@ Feature: Extract field Kamelet action Then send HTTP 200 OK Scenario: Remove resources - Given delete KameletBinding extract-field-action-binding + Given delete Pipe extract-field-action-pipe And delete Kubernetes service test-service diff --git a/test/extract-field-action/yaks-config.yaml b/test/extract-field-action/yaks-config.yaml index ed24e26ef..902d6daba 100644 --- a/test/extract-field-action/yaks-config.yaml +++ b/test/extract-field-action/yaks-config.yaml @@ -33,7 +33,7 @@ config: - name: INTEGRATION_LOGS level: INFO resources: - - extract-field-action-binding.yaml + - extract-field-action-pipe.yaml dump: enabled: true failedOnly: true diff --git a/test/insert-field-action/insert-field-action-binding.yaml b/test/insert-field-action/insert-field-action-pipe.yaml similarity index 93% rename from test/insert-field-action/insert-field-action-binding.yaml rename to test/insert-field-action/insert-field-action-pipe.yaml index 646babb1f..2b490ee62 100644 --- a/test/insert-field-action/insert-field-action-binding.yaml +++ b/test/insert-field-action/insert-field-action-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: insert-field-action-binding + name: insert-field-action-pipe spec: source: ref: diff --git a/test/insert-field-action/insert-field-action.feature b/test/insert-field-action/insert-field-action.feature index ebca10e89..e241f70f5 100644 --- a/test/insert-field-action/insert-field-action.feature +++ b/test/insert-field-action/insert-field-action.feature @@ -32,9 +32,9 @@ Feature: Insert field Kamelet action """ { "id": "citrus:randomUUID()" } """ - When load KameletBinding insert-field-action-binding.yaml - Then Camel K integration insert-field-action-binding should be running - And Camel K integration insert-field-action-binding should print Routes startup + When load Pipe insert-field-action-pipe.yaml + Then Camel K integration insert-field-action-pipe should be running + And Camel K integration insert-field-action-pipe should print Routes startup Scenario: Verify output message sent Given expect HTTP request body @@ -46,5 +46,5 @@ Feature: Insert field Kamelet action Then send HTTP 200 OK Scenario: Remove resources - Given delete KameletBinding insert-field-action-binding + Given delete Pipe insert-field-action-pipe And delete Kubernetes service test-service diff --git a/test/insert-field-action/yaks-config.yaml b/test/insert-field-action/yaks-config.yaml index 5aa3f73dd..2c7834fe7 100644 --- a/test/insert-field-action/yaks-config.yaml +++ b/test/insert-field-action/yaks-config.yaml @@ -33,7 +33,7 @@ config: - name: INTEGRATION_LOGS level: INFO resources: - - insert-field-action-binding.yaml + - insert-field-action-pipe.yaml dump: enabled: true failedOnly: true diff --git a/test/kafka/kafka-sink-binding.yaml b/test/kafka/kafka-sink-pipe.yaml similarity index 94% rename from test/kafka/kafka-sink-binding.yaml rename to test/kafka/kafka-sink-pipe.yaml index 24ddcad13..ace2dfa59 100644 --- a/test/kafka/kafka-sink-binding.yaml +++ b/test/kafka/kafka-sink-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: kafka-sink-binding + name: kafka-sink-pipe spec: source: ref: diff --git a/test/kafka/kafka-sink.feature b/test/kafka/kafka-sink.feature index 9c22921fa..a72360f6b 100644 --- a/test/kafka/kafka-sink.feature +++ b/test/kafka/kafka-sink.feature @@ -31,8 +31,8 @@ Feature: Kafka Kamelet sink Given start Redpanda container Scenario: Create Kamelet binding - When load KameletBinding kafka-sink-binding.yaml - Then Camel K integration kafka-sink-binding should be running + When load Pipe kafka-sink-pipe.yaml + Then Camel K integration kafka-sink-pipe should be running Scenario: Verify Kafka sink output Given Kafka connection @@ -40,5 +40,5 @@ Feature: Kafka Kamelet sink Then receive Kafka message with body: ${message} Scenario: Remove resources - Given delete KameletBinding kafka-sink-binding + Given delete Pipe kafka-sink-pipe And stop Redpanda container diff --git a/test/kafka/kafka-source-binding.yaml b/test/kafka/kafka-source-pipe.yaml similarity index 93% rename from test/kafka/kafka-source-binding.yaml rename to test/kafka/kafka-source-pipe.yaml index 7bc2197f8..f90ce0ad8 100644 --- a/test/kafka/kafka-source-binding.yaml +++ b/test/kafka/kafka-source-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: kafka-source-binding + name: kafka-source-pipe spec: source: ref: diff --git a/test/kafka/kafka-source.feature b/test/kafka/kafka-source.feature index c95f1dbe3..a265ad7d0 100644 --- a/test/kafka/kafka-source.feature +++ b/test/kafka/kafka-source.feature @@ -36,9 +36,9 @@ Feature: Kafka Kamelet source Given create Kubernetes service test-service with target port 8080 Scenario: Create Kamelet binding - When load KameletBinding kafka-source-binding.yaml - Then Camel K integration kafka-source-binding should be running - And Camel K integration kafka-source-binding should print Subscribing ${topic}-Thread 0 to topic ${topic} + When load Pipe kafka-source-pipe.yaml + Then Camel K integration kafka-source-pipe should be running + And Camel K integration kafka-source-pipe should print Subscribing ${topic}-Thread 0 to topic ${topic} And sleep 10sec Scenario: Send message to Kafka topic and verify sink output @@ -58,6 +58,6 @@ Feature: Kafka Kamelet source And send HTTP 200 OK Scenario: Remove resources - Given delete KameletBinding kafka-source-binding + Given delete Pipe kafka-source-pipe And delete Kubernetes service test-service And stop Redpanda container diff --git a/test/kafka/yaks-config.yaml b/test/kafka/yaks-config.yaml index adfa773a3..63ba6c1db 100644 --- a/test/kafka/yaks-config.yaml +++ b/test/kafka/yaks-config.yaml @@ -37,8 +37,8 @@ config: - name: INTEGRATION_LOGS level: INFO resources: - - kafka-source-binding.yaml - - kafka-sink-binding.yaml + - kafka-source-pipe.yaml + - kafka-sink-pipe.yaml dump: enabled: true failedOnly: true diff --git a/test/mail-sink/mail-sink.feature b/test/mail-sink/mail-sink.feature index a3f1514b9..70c8c9f73 100644 --- a/test/mail-sink/mail-sink.feature +++ b/test/mail-sink/mail-sink.feature @@ -36,7 +36,7 @@ Feature: Mail Sink Given load endpoint mail-server.groovy Scenario: Create Camel K resources - Given load KameletBinding timer-to-mail.yaml + Given load Pipe timer-to-mail.yaml And Camel K integration timer-to-mail should be running And Camel K integration timer-to-mail should print Routes startup @@ -59,5 +59,5 @@ Feature: Mail Sink """ Scenario: Remove Camel K resources - Given delete KameletBinding timer-to-mail + Given delete Pipe timer-to-mail And delete Kubernetes service mail-server diff --git a/test/mail-sink/timer-to-mail.yaml b/test/mail-sink/timer-to-mail.yaml index 675ad40c8..cc7fb7d35 100644 --- a/test/mail-sink/timer-to-mail.yaml +++ b/test/mail-sink/timer-to-mail.yaml @@ -15,8 +15,8 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: name: timer-to-mail spec: diff --git a/test/rest-openapi-sink/rest-openapi-sink-binding.yaml b/test/rest-openapi-sink/rest-openapi-sink-pipe.yaml similarity index 94% rename from test/rest-openapi-sink/rest-openapi-sink-binding.yaml rename to test/rest-openapi-sink/rest-openapi-sink-pipe.yaml index d5398dfbb..5dde4a55a 100644 --- a/test/rest-openapi-sink/rest-openapi-sink-binding.yaml +++ b/test/rest-openapi-sink/rest-openapi-sink-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: rest-openapi-sink-binding + name: rest-openapi-sink-pipe spec: source: ref: diff --git a/test/rest-openapi-sink/rest-openapi-sink.feature b/test/rest-openapi-sink/rest-openapi-sink.feature index 868482fe9..d38643f44 100644 --- a/test/rest-openapi-sink/rest-openapi-sink.feature +++ b/test/rest-openapi-sink/rest-openapi-sink.feature @@ -28,7 +28,7 @@ Feature: REST OpenAPI Kamelet sink Scenario: Create Kamelet binding for addPet Given variable operation is "addPet" - Then load KameletBinding rest-openapi-sink-binding.yaml + Then load Pipe rest-openapi-sink-pipe.yaml Scenario: Provide OpenAPI specification to Camel K integration Given load variable openapi from openapi.json @@ -43,11 +43,11 @@ Feature: REST OpenAPI Kamelet sink And send HTTP 201 CREATED Scenario: Remove resources - Given delete KameletBinding rest-openapi-sink-binding + Given delete Pipe rest-openapi-sink-pipe Scenario: Create Kamelet binding for deletePet Given variable operation is "deletePet" - When load KameletBinding rest-openapi-sink-binding.yaml + When load Pipe rest-openapi-sink-pipe.yaml Scenario: Provide OpenAPI specification to Camel K integration Given load variable openapi from openapi.json @@ -61,5 +61,5 @@ Feature: REST OpenAPI Kamelet sink And send HTTP 204 NO_CONTENT Scenario: Remove resources - Given delete KameletBinding rest-openapi-sink-binding + Given delete Pipe rest-openapi-sink-pipe And delete Kubernetes service test-service diff --git a/test/rest-openapi-sink/yaks-config.yaml b/test/rest-openapi-sink/yaks-config.yaml index 9a99d565e..f819b5b4c 100644 --- a/test/rest-openapi-sink/yaks-config.yaml +++ b/test/rest-openapi-sink/yaks-config.yaml @@ -35,7 +35,7 @@ config: resources: - pet.json - openapi.json - - rest-openapi-sink-binding.yaml + - rest-openapi-sink-pipe.yaml dump: enabled: true failedOnly: true diff --git a/test/salesforce-sink/direct-to-salesforce-delete-binding.yaml b/test/salesforce-sink/direct-to-salesforce-delete-pipe.yaml similarity index 93% rename from test/salesforce-sink/direct-to-salesforce-delete-binding.yaml rename to test/salesforce-sink/direct-to-salesforce-delete-pipe.yaml index 0369123e1..dd15cfe4e 100644 --- a/test/salesforce-sink/direct-to-salesforce-delete-binding.yaml +++ b/test/salesforce-sink/direct-to-salesforce-delete-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: direct-to-salesforce-delete-binding + name: direct-to-salesforce-delete-pipe spec: source: ref: diff --git a/test/salesforce-sink/direct-to-salesforce-update-binding.yaml b/test/salesforce-sink/direct-to-salesforce-update-pipe.yaml similarity index 93% rename from test/salesforce-sink/direct-to-salesforce-update-binding.yaml rename to test/salesforce-sink/direct-to-salesforce-update-pipe.yaml index 77656608c..4a31a7326 100644 --- a/test/salesforce-sink/direct-to-salesforce-update-binding.yaml +++ b/test/salesforce-sink/direct-to-salesforce-update-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: direct-to-salesforce-update-binding + name: direct-to-salesforce-update-pipe spec: source: ref: diff --git a/test/salesforce-sink/salesforce-sink.feature b/test/salesforce-sink/salesforce-sink.feature index 79bc96f04..0e1e8eef8 100644 --- a/test/salesforce-sink/salesforce-sink.feature +++ b/test/salesforce-sink/salesforce-sink.feature @@ -33,9 +33,9 @@ Feature: Salesforce Kamelet And receive HTTP 200 OK Scenario: Interact with SalesForce - Given load KameletBinding timer-to-salesforce-binding.yaml - Then Camel K integration timer-to-salesforce-binding should be running - And Camel K integration timer-to-salesforce-binding should print Routes startup + Given load Pipe timer-to-salesforce-pipe.yaml + Then Camel K integration timer-to-salesforce-pipe should be running + And Camel K integration timer-to-salesforce-pipe should print Routes startup Given URL: ${instance_url} Then HTTP request header Authorization="Bearer ${access_token}" @@ -45,9 +45,9 @@ Feature: Salesforce Kamelet Then verify HTTP response expression: $.records[0].Id="@variable(id)@" And receive HTTP 200 OK - And load KameletBinding direct-to-salesforce-update-binding.yaml - Then Camel K integration direct-to-salesforce-update-binding should be running - And Camel K integration direct-to-salesforce-update-binding should print Routes startup + And load Pipe direct-to-salesforce-update-pipe.yaml + Then Camel K integration direct-to-salesforce-update-pipe should be running + And Camel K integration direct-to-salesforce-update-pipe should print Routes startup Then sleep 5000 ms Given URL: ${instance_url} Then HTTP request header Authorization="Bearer ${access_token}" @@ -58,9 +58,9 @@ Feature: Salesforce Kamelet Then verify HTTP response expression: $.records[0].Phone="1234567890" And receive HTTP 200 OK - When load KameletBinding direct-to-salesforce-delete-binding.yaml - Then Camel K integration direct-to-salesforce-delete-binding should be running - And Camel K integration direct-to-salesforce-delete-binding should print Routes startup + When load Pipe direct-to-salesforce-delete-pipe.yaml + Then Camel K integration direct-to-salesforce-delete-pipe should be running + And Camel K integration direct-to-salesforce-delete-pipe should print Routes startup Then sleep 5000 ms Given URL: ${instance_url} @@ -73,6 +73,6 @@ Feature: Salesforce Kamelet Scenario: Remove Camel-K resources - Given delete KameletBinding timer-to-salesforce-binding - And delete KameletBinding direct-to-salesforce-update-binding - And delete KameletBinding direct-to-salesforce-delete-binding + Given delete Pipe timer-to-salesforce-pipe + And delete Pipe direct-to-salesforce-update-pipe + And delete Pipe direct-to-salesforce-delete-pipe diff --git a/test/salesforce-sink/timer-to-salesforce-binding.yaml b/test/salesforce-sink/timer-to-salesforce-pipe.yaml similarity index 93% rename from test/salesforce-sink/timer-to-salesforce-binding.yaml rename to test/salesforce-sink/timer-to-salesforce-pipe.yaml index 6be73d595..11d6eb021 100644 --- a/test/salesforce-sink/timer-to-salesforce-binding.yaml +++ b/test/salesforce-sink/timer-to-salesforce-pipe.yaml @@ -15,10 +15,10 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: - name: timer-to-salesforce-binding + name: timer-to-salesforce-pipe spec: source: ref: diff --git a/test/salesforce-sink/yaks-config.yaml b/test/salesforce-sink/yaks-config.yaml index 246d85b1d..920298590 100644 --- a/test/salesforce-sink/yaks-config.yaml +++ b/test/salesforce-sink/yaks-config.yaml @@ -34,9 +34,9 @@ config: level: INFO secret: salesforce-credentials resources: - - timer-to-salesforce-binding.yaml - - direct-to-salesforce-update-binding.yaml - - direct-to-salesforce-delete-binding.yaml + - timer-to-salesforce-pipe.yaml + - direct-to-salesforce-update-pipe.yaml + - direct-to-salesforce-delete-pipe.yaml - salesforce-credentials.properties dump: enabled: true diff --git a/test/timer-source/timer-source.feature b/test/timer-source/timer-source.feature index 89f491bf0..7ec9edbe1 100644 --- a/test/timer-source/timer-source.feature +++ b/test/timer-source/timer-source.feature @@ -27,8 +27,8 @@ Feature: Timer Source Kamelet Scenario: Create Kamelet binding And variables | message | Hello World | - Given load KameletBinding timer-to-http.yaml - Then KameletBinding timer-to-http should be available + Given load Pipe timer-to-http.yaml + Then Pipe timer-to-http should be available Then Camel K integration timer-to-http should be running And Camel K integration timer-to-http should print Routes startup @@ -38,5 +38,5 @@ Feature: Timer Source Kamelet Then send HTTP 200 OK Scenario: Remove Camel K resources - Given delete KameletBinding timer-to-http + Given delete Pipe timer-to-http And delete Kubernetes service test-service diff --git a/test/timer-source/timer-to-http.yaml b/test/timer-source/timer-to-http.yaml index 68208111e..5ccfad21d 100644 --- a/test/timer-source/timer-to-http.yaml +++ b/test/timer-source/timer-to-http.yaml @@ -15,8 +15,8 @@ # limitations under the License. # --------------------------------------------------------------------------- -apiVersion: camel.apache.org/v1alpha1 -kind: KameletBinding +apiVersion: camel.apache.org/v1 +kind: Pipe metadata: name: timer-to-http spec: