This is an automated email from the ASF dual-hosted git repository.
nferraro pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git.
from b6e3be6 Regen GH Action should run tests
new 0e1630c Add validator bound to the CI and fix kamelets
new 2cef6e1 Fix infinispan kamelet
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../workflows/validate.yaml | 44 +++-
aws-kinesis-firehose-sink.kamelet.yaml | 2 +-
aws-s3-sink.kamelet.yaml | 2 +-
aws-s3-source.kamelet.yaml | 4 +-
aws-sns-fifo-sink.kamelet.yaml | 2 +-
aws-sns-sink.kamelet.yaml | 2 +-
aws-sqs-batch-sink.kamelet.yaml | 2 +-
aws-sqs-fifo-sink.kamelet.yaml | 2 +-
aws-sqs-sink.kamelet.yaml | 2 +-
aws-sqs-source.kamelet.yaml | 6 +-
azure-eventhubs-sink.kamelet.yaml | 6 +-
azure-eventhubs-source.kamelet.yaml | 12 +-
azure-storage-blob-source.kamelet.yaml | 2 +-
bitcoin-source.kamelet.yaml | 2 +-
.../twitter-directmessage-source.kamelet.yaml | 0
.../kamelets/twitter-search-source.kamelet.yaml | 0
.../kamelets/twitter-timeline-source.kamelet.yaml | 0
cassandra-sink.kamelet.yaml | 4 +-
docs/README.md | 13 +-
docs/generator/go.mod | 8 -
.../ROOT/pages/aws-kinesis-firehose-sink.adoc | 4 +-
docs/modules/ROOT/pages/aws-s3-sink.adoc | 2 +-
docs/modules/ROOT/pages/aws-s3-source.adoc | 4 +-
docs/modules/ROOT/pages/aws-sns-fifo-sink.adoc | 2 +-
docs/modules/ROOT/pages/aws-sns-sink.adoc | 2 +-
docs/modules/ROOT/pages/aws-sqs-batch-sink.adoc | 2 +-
docs/modules/ROOT/pages/aws-sqs-fifo-sink.adoc | 2 +-
docs/modules/ROOT/pages/aws-sqs-sink.adoc | 2 +-
docs/modules/ROOT/pages/aws-sqs-source.adoc | 6 +-
docs/modules/ROOT/pages/azure-eventhubs-sink.adoc | 12 +-
.../modules/ROOT/pages/azure-eventhubs-source.adoc | 24 +--
.../ROOT/pages/azure-storage-blob-source.adoc | 2 +-
docs/modules/ROOT/pages/bitcoin-source.adoc | 2 +-
docs/modules/ROOT/pages/cassandra-sink.adoc | 3 +-
docs/modules/ROOT/pages/cron-source.adoc | 2 +-
docs/modules/ROOT/pages/dropbox-sink.adoc | 8 +-
docs/modules/ROOT/pages/dropbox-source.adoc | 14 +-
docs/modules/ROOT/pages/earthquake-source.adoc | 4 +-
.../ROOT/pages/elasticsearch-search-source.adoc | 8 +-
docs/modules/ROOT/pages/exec-sink.adoc | 6 +-
docs/modules/ROOT/pages/fhir-source.adoc | 4 +-
docs/modules/ROOT/pages/file-watch-source.adoc | 6 +-
docs/modules/ROOT/pages/github-source.adoc | 2 +-
docs/modules/ROOT/pages/google-mail-source.adoc | 10 +-
docs/modules/ROOT/pages/http-source.adoc | 4 +-
docs/modules/ROOT/pages/infinispan-source.adoc | 5 +-
docs/modules/ROOT/pages/kafka-source.adoc | 4 +-
docs/modules/ROOT/pages/minio-sink.adoc | 2 +-
docs/modules/ROOT/pages/minio-source.adoc | 4 +-
docs/modules/ROOT/pages/nats-source.adoc | 7 +-
docs/modules/ROOT/pages/ssh-source.adoc | 16 +-
dropbox-sink.kamelet.yaml | 4 +-
dropbox-source.kamelet.yaml | 8 +-
earthquake-source.kamelet.yaml | 4 +-
elasticsearch-search-source.kamelet.yaml | 4 +-
exec-sink.kamelet.yaml | 7 +-
fhir-source.kamelet.yaml | 4 +-
file-watch-source.kamelet.yaml | 4 +-
github-source.kamelet.yaml | 2 +-
google-mail-source.kamelet.yaml | 8 +-
http-source.kamelet.yaml | 4 +-
infinispan-source.kamelet.yaml | 7 +-
kafka-source.kamelet.yaml | 2 +-
minio-sink.kamelet.yaml | 2 +-
minio-source.kamelet.yaml | 4 +-
nats-source.kamelet.yaml | 6 +-
script/generator/README.md | 8 +
{docs => script}/generator/generator.go | 0
script/generator/go.mod | 10 +
{docs => script}/generator/go.sum | 92 ++++++++
script/validator/README.md | 8 +
script/validator/go.mod | 12 ++
script/validator/go.sum | 208 ++++++++++++++++++
script/validator/validator.go | 239 +++++++++++++++++++++
ssh-source.kamelet.yaml | 10 +-
...ml => twitter-directmessage-source.kamelet.yaml | 0
...elet.yaml => twitter-search-source.kamelet.yaml | 0
...et.yaml => twitter-timeline-source.kamelet.yaml | 0
78 files changed, 769 insertions(+), 178 deletions(-)
copy test/earthquake-source/yaks-config.yaml =>
.github/workflows/validate.yaml (60%)
rename twitter-directmessage.kamelet.yaml =>
camel-kamelets-catalog/src/main/resources/kamelets/twitter-directmessage-source.kamelet.yaml
(100%)
mode change 100755 => 100644
rename twitter-search.kamelet.yaml =>
camel-kamelets-catalog/src/main/resources/kamelets/twitter-search-source.kamelet.yaml
(100%)
mode change 100755 => 100644
rename twitter-timeline.kamelet.yaml =>
camel-kamelets-catalog/src/main/resources/kamelets/twitter-timeline-source.kamelet.yaml
(100%)
mode change 100755 => 100644
delete mode 100644 docs/generator/go.mod
create mode 100644 script/generator/README.md
rename {docs => script}/generator/generator.go (100%)
create mode 100644 script/generator/go.mod
rename {docs => script}/generator/go.sum (52%)
create mode 100644 script/validator/README.md
create mode 100644 script/validator/go.mod
create mode 100644 script/validator/go.sum
create mode 100644 script/validator/validator.go
rename
camel-kamelets-catalog/src/main/resources/kamelets/twitter-directmessage.kamelet.yaml
=> twitter-directmessage-source.kamelet.yaml (100%)
mode change 100644 => 100755
rename
camel-kamelets-catalog/src/main/resources/kamelets/twitter-search.kamelet.yaml
=> twitter-search-source.kamelet.yaml (100%)
mode change 100644 => 100755
rename
camel-kamelets-catalog/src/main/resources/kamelets/twitter-timeline.kamelet.yaml
=> twitter-timeline-source.kamelet.yaml (100%)
mode change 100644 => 100755