diff --git a/execution/infrastructure/kafka/values_kafka_nodeport.yaml b/execution/infrastructure/kafka/values_kafka_nodeport.yaml new file mode 100644 index 0000000000000000000000000000000000000000..cf1deb3a0eda97039ad4609a1f07fa54d4d5d1ea --- /dev/null +++ b/execution/infrastructure/kafka/values_kafka_nodeport.yaml @@ -0,0 +1,97 @@ +## ------------------------------------------------------ +## Zookeeper +## ------------------------------------------------------ +cp-zookeeper: + enabled: true + servers: 1 + image: confluentinc/cp-zookeeper + imageTag: 5.4.0 + ## Optionally specify an array of imagePullSecrets. Secrets must be manually created in the namespace. + ## https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod + imagePullSecrets: + # - name: "regcred" + heapOptions: "-Xms512M -Xmx512M" + persistence: + enabled: false + resources: {} + ## If you do want to specify resources, uncomment the following lines, adjust them as necessary, + ## and remove the curly braces after 'resources:' + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +## ------------------------------------------------------ +## Kafka +## ------------------------------------------------------ +cp-kafka: + enabled: true + brokers: 1 + image: confluentinc/cp-enterprise-kafka + imageTag: 5.4.0 + ## Optionally specify an array of imagePullSecrets. Secrets must be manually created in the namespace. + ## https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod + imagePullSecrets: + # - name: "regcred" + heapOptions: "-Xms512M -Xmx512M" + persistence: + enabled: false + resources: {} + ## If you do want to specify resources, uncomment the following lines, adjust them as necessary, + ## and remove the curly braces after 'resources:' + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + configurationOverrides: + offsets.topic.replication.factor: "1" + "message.max.bytes": "134217728" # 128 MB + "replica.fetch.max.bytes": "134217728" # 128 MB + # "default.replication.factor": 3 + # "min.insync.replicas": 2 + "auto.create.topics.enable": false + "log.retention.ms": "10000" # 10s + #"log.retention.ms": "86400000" # 24h + "metrics.sample.window.ms": "5000" #5s + + # access kafka from outside + nodeport: + enabled: true + +## ------------------------------------------------------ +## Schema Registry +## ------------------------------------------------------ +cp-schema-registry: + enabled: true + image: confluentinc/cp-schema-registry + imageTag: 5.4.0 + ## Optionally specify an array of imagePullSecrets. Secrets must be manually created in the namespace. + ## https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod + imagePullSecrets: + # - name: "regcred" + heapOptions: "-Xms512M -Xmx512M" + resources: {} + ## If you do want to specify resources, uncomment the following lines, adjust them as necessary, + ## and remove the curly braces after 'resources:' + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +cp-kafka-rest: + enabled: false + +cp-kafka-connect: + enabled: false + +cp-ksql-server: + enabled: false + +cp-control-center: + enabled: false