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?