check both revisions of sts

This commit is contained in:
Felix Kunde 2020-04-22 10:49:32 +02:00
parent 43ae91f44a
commit 69bc5ec564
1 changed files with 2 additions and 1 deletions

View File

@ -343,7 +343,8 @@ func (c *Cluster) recreatePods() error {
role := PostgresRole(pod.Labels[c.OpConfig.PodRoleLabel])
// final check if spec of running pod differs from template
if pod.ObjectMeta.Labels["controller-revision-hash"] == c.Statefulset.Status.UpdateRevision {
if c.Statefulset.Status.CurrentRevision != c.Statefulset.Status.UpdateRevision &&
pod.ObjectMeta.Labels["controller-revision-hash"] == c.Statefulset.Status.UpdateRevision {
c.logger.Infof("%q pod %q already updated", role, podName)
continue
}