Replies: 1 comment 3 replies
-
You should share an actual custom resource. Not some template you generate it in. You also have to make sure it is properly formatted so that people can read it. This way, nobody can read and understand what it says as it doesn't have any new lines and white spaces -> so it is not really a valid YAML. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
we are using kafka cluster deployed on kubernetes through terraform we're trying to change the message size but the changes are not applied. It seems that there's a lack of documentation on this theme
this is our configuration
apiVersion: kafka.strimzi.io/v1beta2
kind: Kafka
metadata:
name: kafka
namespace: "{{ $.Values.global.namespace }}"
spec:
entityOperator:
topicOperator: {}
userOperator: {}
kafkaExporter:
topicRegex: "."
groupRegex: "."
kafka:
template:
pod:
config:
default.replication.factor: "{{ .Values.kafka.defaultReplication }}"
min.insync.replicas: "{{ .Values.kafka.minInsyncReplicas }}"
offsets.topic.replication.factor: "{{ .Values.kafka.offsetsTopicReplicationFactor }}"
transaction.state.log.replication.factor: "{{ .Values.kafka.transactionStateLogReplicationFactor }}"
transaction.state.log.min.isr: "{{ .Values.kafka.transactionStateLogMinIsr }}"
log.message.format.version: "3.1"
inter.broker.protocol.version: "3.1"
producer.max.request.size: 7179317
message.max.bytes: 7179317
max.message.bytes: 7179317
socket.request.max.bytes: 7179317
request.max.bytes: 7179317
version: 3.1.0
storage:
type: jbod
volumes:
- id: 0
type: persistent-claim
size: 2Gi
deleteClaim: false
replicas: "{{ .Values.kafka.kafkaReplicas }}"
readinessProbe:
initialDelaySeconds: 60
timeoutSeconds: 25
periodSeconds: 30
failureThreshold: 15
livenessProbe:
initialDelaySeconds: 90
timeoutSeconds: 15
periodSeconds: 30
failureThreshold: 5
listeners:
- name: plain
port: 9092
type: internal
tls: false
- name: tls
port: 9093
type: internal
tls: true
zookeeper:
readinessProbe:
initialDelaySeconds: 60
timeoutSeconds: 25
periodSeconds: 30
failureThreshold: 15
livenessProbe:
initialDelaySeconds: 90
timeoutSeconds: 15
periodSeconds: 30
failureThreshold: 5
storage:
type: persistent-claim
size: 2Gi
deleteClaim: false
metricsConfig:
type: jmxPrometheusExporter
valueFrom:
configMapKeyRef:
name: kafka-metrics
key: zookeeper-metrics-config.yml
replicas: "{{ .Values.kafka.zookeeperReplicas }}"
template:
pod:
Beta Was this translation helpful? Give feedback.
All reactions