Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeqo/poc-cfk
Proofs of concept with Confluent for Kubernetes (CFK)
https://github.com/jeqo/poc-cfk
Last synced: 25 days ago
JSON representation
Proofs of concept with Confluent for Kubernetes (CFK)
- Host: GitHub
- URL: https://github.com/jeqo/poc-cfk
- Owner: jeqo
- Created: 2022-06-09T14:59:45.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-20T17:01:08.000Z (about 2 years ago)
- Last Synced: 2024-04-17T16:15:01.395Z (7 months ago)
- Language: Makefile
- Size: 78.1 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Proof of concept with Confluent for Kubernetes
## Tools
- `kind`
- `kns`
- `helm`
- `kustomize`## Commands
```
cat << 'EOF' > client.properties
security.protocol=SASL_SSL
sasl.mechanism=PLAIN
sasl.jaas.config=org.apache.kafka.common.security.plain.PlainLoginModule required username\="devkafka" password\="kafka-secret1";
ssl.truststore.location=/mnt/sslcerts/truststore.jks
ssl.truststore.password=mystorepassword
ssl.endpoint.identification.algorithm=schema.registry.url=https://schemaregistry:8081
schema.registry.ssl.truststore.location=/mnt/sslcerts/truststore.jks
schema.registry.ssl.truststore.password=mystorepassword
schema.registry.ssl.endpoint.identification.algorithm=
basic.auth.credentials.source=USER_INFO
basic.auth.user.info=testadmin:testadmin
EOF```