dragonflydb / dragonfly-operator

A Kubernetes operator to install and manage Dragonfly instances.
https://www.dragonflydb.io/docs/managing-dragonfly/operator/installation
Apache License 2.0
144 stars 34 forks source link

feat(df_controller): do not wait for statefulset readiness #30

Closed Pothulapati closed 1 year ago

Pothulapati commented 1 year ago

Fixes #27

currently, Before the dragonfly_controller marks a DF cr as resources-created, It waits until the statefulset ready which makes no sense as the pod_lifecycle_controller listens only for pod events. Considering, How kubernetes works i.e it reconciles eventually, we can't expect statefulset to be ready immediately causing errors.

Pothulapati commented 1 year ago

Closing in favour of #34