Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/schm1tz1/confluent-kubernetes-playbook
Confluent for Kubernetes (CFK) Examples Playbook
https://github.com/schm1tz1/confluent-kubernetes-playbook
Last synced: 1 day ago
JSON representation
Confluent for Kubernetes (CFK) Examples Playbook
- Host: GitHub
- URL: https://github.com/schm1tz1/confluent-kubernetes-playbook
- Owner: Schm1tz1
- Created: 2022-07-21T09:45:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-03T07:41:58.000Z (10 months ago)
- Last Synced: 2024-10-31T09:52:25.925Z (3 months ago)
- Language: Shell
- Size: 77.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Confluent for Kubernetes (CFK) Examples Playbook
* lots of general examples: https://github.com/vdesabou/kafka-docker-playground
## Example Directories
* **cp-plaintext** - Minimalistic setup of plaintext CP on k8s
* **cp-sasl-ldap*** - LDAP AuthN callback example
* **hybrid** - (Cloud-)hybrid setups, e.g. self-managed connect
* **kraft** - KRaft-based examples
* **cluster-linking** - Cluster linking
* **schema-linking** - Schema exporter tests* **connect** - Connector examples
* **ksqldb** - ksqldb examples
* **clients** - Example client applications
* **datadog** - Datadog integration
* **tools** - Tools for testing, e.g. containers with kcat and networking tools## Adding your license
* Option 1 - Add license as a kubernetes secret
```
echo -n "license=" > license.txt
kubectl create secret generic confluent-license \
--from-file=license.txt=./license.txt \
--namespace confluent
```
and reference in spec.license for each relevant component:
```
license:
secretRef: confluent-license
```
* Option 2 - Add a global license
```
helm upgrade --install confluent-operator \
confluentinc/confluent-for-kubernetes \
--namespace confluent \
--set licenseKey=
```
and reference in spec.license:
```
license:
globalLicense: true
```