Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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)

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

```