Dragonfly Helm Chart Cannot Connect to Operator

I’m install operator using

# Install CRDs
kubectl apply -f https://raw.githubusercontent.com/dragonflydb/dragonfly-operator/main/manifests/crd.yaml
# Install the operator
kubectl apply -f https://raw.githubusercontent.com/dragonflydb/dragonfly-operator/main/manifests/dragonfly-operator.yaml

And install Helm Chart with value.yml

replicaCount: 3

passwordFromSecret:
  enable: true
  existingSecret:
    name: "redis-dragonfly"
    key: "passsword"

storage:
  enabled: true
  storageClassName: "encrypted-gp3"
  requests: 10Gi

resources:
  limits: 
    cpu: 512m
    memory: 512Mi
  requests: 
    cpu: 256m
    memory: 256Mi

But when I check, only the master is live, and 2 other pods cannot connect.

023-08-03T08:44:37.613713975Z 2023-08-03T08:44:37Z    INFO    Received    {"controller": "pod", "controllerGroup": "", "controllerKind": "Pod", "Pod": {"name":"dragonfly-2","namespace":"devops-tools"}, "namespace": "devops-tools", "name": "dragonfly-2", "reconcileID": "5be96fab-6f46-47a0-acbd-e23421644259", "pod": {"namespace": "devops-tools", "name": "dragonfly-2"}}
2023-08-03T08:44:37.613998754Z 2023-08-03T08:44:37Z    INFO    Pod does not belong to a Dragonfly instance    {"controller": "pod", "controllerGroup": "", "controllerKind": "Pod", "Pod": {"name":"dragonfly-2","namespace":"devops-tools"}, "namespace": "devops-tools", "name": "dragonfly-2", "reconcileID": "5be96fab-6f46-47a0-acbd-e23421644259"}

Am I missing something?

can not connect where?

I did not understand the problem, could you also provide the dragonfly logs ?

it shows only master on Redis Replication

but, when installing using

kubectl apply -f https://raw.githubusercontent.com/dragonflydb/dragonfly-operator/main/config/samples/v1alpha1_dragonfly.yaml

there is 1 master and 2 slave on Redis Replication

Hmm, Why are you installing both the helm chart and the operator manifests of Dragonfly? :thinking: