Replies: 1 comment 3 replies
-
You will need to properly format the YAMLs to make them readable. Without that, nobody can really see how does your configuration look like. |
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
-
We're using Strimzi operator version v.027.1 on AKS K8s cluster. When trying to deploy the MirrorMaker2 resource, we don't get any errors but while describing no events are published and it seems to be in frozen state. The YAML file that we're using is below -
apiVersion: kafka.strimzi.io/v1beta2
kind: KafkaMirrorMaker2
metadata:
name: my-mirror-maker-2
spec:
version: 3.0.0
replicas: 1
connectCluster: "west-2"
clusters:
bootstrapServers:
bootstrapServers:
config:
-1 means it will use the default replication factor configured in the broker
config.storage.replication.factor: -1offset.storage.replication.factor: -1
status.storage.replication.factor: -1
mirrors:
targetCluster: "west-2"
sourceConnector:
config:
replication.factor: 1
offset-syncs.topic.replication.factor: 1
sync.topic.acls.enabled: "false"
heartbeatConnector:
config:
heartbeats.topic.replication.factor: 1
checkpointConnector:
config:
checkpoints.topic.replication.factor: 1
topicsPattern: "."
groupsPattern: "."
resources:
requests:
memory: 500Mi
cpu: "100m"
limits:
memory: 600Mi
cpu: "1"
The logs while describing the kafkamirrormaker2 resource are -
kubectl describe kafkamirrormaker2 my-mirror-maker-2 -n kafka
Resources:
Limits:
Cpu: 1
Memory: 600Mi
Requests:
Cpu: 100m
Memory: 500Mi
Version: 3.0.0
Events:
kubectl get kafkamirrormaker2 -n kafka
NAME DESIRED REPLICAS READY
my-mirror-maker-2 1
Beta Was this translation helpful? Give feedback.
All reactions