lensesio
kafka-helm-charts
Smarty

In-deprecation. For Lenses please check lensesio/lenses-helm-charts. Soon Stream Reactor will also get its own Helm repository.

Last updated Aug 19, 2024
70
Stars
50
Forks
7
Issues
0
Stars/day
Attention Score
29
Language breakdown
Smarty 90.9%
Shell 5.8%
Makefile 2.8%
Dockerfile 0.5%
Files click to expand
README

Build Status

Helm Charts for Lenses, Lenses SQL Runners and Apache Kafka Connect and other components

This repo contains Helm Charts Apache Kafka components

Add the repo:

helm repo add lensesio https://lensesio.github.io/kafka-helm-charts/
helm repo update

Stream Reactor

Stream-reactor and Kafka Connectors any environment variable beginning with `CONNECT is used to build the Kafka Connect properties file, the Connect cluster is started with this file in distributed mode. Any environment variable starting with CONNECTOR is used to make the Connector properties file, which is posted into the Connect cluster to start the connector.

Lenses

Documentation for the Lenses chart can be found here.

Lenses SQL runners

Documentation for the Lenses SQL Runner chart can be found here.

SSL/SASL

The connectors support SSL and SASL on Kafka. For this you need to provide the base64 encoded contents of the key and truststores.

The key/truststores added to a secret and mounted into /mnt/secrets

For SASL, you need to provide the base64 encoded keytab file contents. Note that the keytab path in the jaas.conf must be set to /mnt/secrets.

If the connector, for example, Cassandra requires SSL, provided the base64 contents for the key/truststores. They will be mounted into /mnt/connector-secrets and any connector config parameters are set automatically.

For connectors supporting TLS, the certs will be mounted via secrets into /mnt/connector-secrets and any connector config parameters are set automatically

FOR BASE64 encoding

Make sure to not include split lines.

<pre><code class="lang-openssl">base64 &lt; client.keystore.jks | tr -d &#39;\n&#39;</code></pre>

Building/Testing

Run package.sh this in turn calls scripts/lint.sh which will perform linting checks on the charts and also check we aren't going to overwrite existing charts.

If all good, checkin, tag and push the <pre><code class="lang-docs"> folder. This charts are hosted on the github page.

Contribute

Contributions are welcome for any Kafka Connector or any other component that is useful for building Data Streaming pipelines

Signing

For integrity we sign the Helm Charts. For more information see this document https://helm.sh/docs/topics/provenance/.

The steps to do so are as follows:

  • Create a GPG key, and follow the steps to create it noting the name of the key which is later used for signing the charts.</code></pre>
gpg --full-generate-key <pre><code class="lang-">* then export the key</code></pre> gpg --export-secret-keys > key.gpg <pre><code class="lang-">* encrypt the key following the manual steps in this doc https://docs.travis-ci.com/user/encrypting-files/</code></pre> openssl aes-256-cbc -k "HELMKEYPASSPHRASE" -in key.gpg -out key.gpg.enc <pre><code class="lang-">* And commit the key.gpg.enc to Git.

The</code></pre>package.sh<pre><code class="lang-">then needs to be updated with the key name, and an environment variable</code></pre>HELMKEYPASSPHRASE`` created in the travis build settings with the pass phrase used to encrypt the key.

🔗 More in this category

© 2026 GitRepoTrend · lensesio/kafka-helm-charts · Updated daily from GitHub