Replies: 1 comment
-
0.23 is several years old and does not support Kubernetes 1.25 and newer where you seem to run based on the error message. You will need to update to a newer Strimzi version (at least 0.29, but preferably something much more up-to-date). More details can be found here: https://strimzi.io/downloads/ |
Beta Was this translation helpful? Give feedback.
0 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.
-
k8s version: azure aks v1.26.6
strimzi operator version: 0.23.0

[xiaowei_zhou@azure-k8s kafka]$ cat kafka-persistent-new.yaml
apiVersion: kafka.strimzi.io/v1beta2
kind: Kafka
metadata:
name: kafka-sensor-new
spec:
kafka:
version: 2.6.0
replicas: 3
readinessProbe:
initialDelaySeconds: 15
timeoutSeconds: 5
livenessProbe:
initialDelaySeconds: 15
timeoutSeconds: 5
listeners:
- name: plain
port: 9092
type: internal
tls: false
- name: tls
port: 9093
type: internal
tls: true
config:
offsets.topic.replication.factor: 3
transaction.state.log.replication.factor: 3
transaction.state.log.min.isr: 2
num.partitions: 3
default.replication.factor: 3
log.message.format.version: "2.6"
log.retention.hours: 168
storage:
type: persistent-claim
class: s-ssd-dashboard-ai-rdr
size: 32Gi
deleteClaim: false
zookeeper:
replicas: 3
readinessProbe:
initialDelaySeconds: 15
timeoutSeconds: 5
livenessProbe:
initialDelaySeconds: 15
timeoutSeconds: 5
storage:
type: persistent-claim
size: 32Gi
class: s-ssd-dashboard-ai-rdr
deleteClaim: false
entityOperator:
topicOperator: {}
userOperator: {}
kafkaExporter:
topicRegex: "."
groupRegex: "."
error:

Beta Was this translation helpful? Give feedback.
All reactions