You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The rollout-operator currently requires that each pod controlled by a StatefulSet managed by rollout-operator has the name label and its value is the name of the StatefulSet controlling it:
I think we can get rid of this requirement, looking for the StatefulSet controlling the pod in a different way. For example, when running kubectl describe pod ... it shows a "Controlled By" field with the name of the StatefulSet controlling it.
The text was updated successfully, but these errors were encountered:
Just bumped into this, It would be great to at least document it in the README until this gets resolved. This way, I had to dig into the code to make it work.
The rollout-operator currently requires that each pod controlled by a StatefulSet managed by rollout-operator has the
name
label and its value is the name of the StatefulSet controlling it:rollout-operator/pkg/controller/controller.go
Line 402 in a546f4e
I think we can get rid of this requirement, looking for the StatefulSet controlling the pod in a different way. For example, when running
kubectl describe pod ...
it shows a "Controlled By" field with the name of the StatefulSet controlling it.The text was updated successfully, but these errors were encountered: