Fix statefulset label selector diffing (#273)
Otherwise, rolling updates are done unnecessarily.
This commit is contained in:
		
							parent
							
								
									9bf80afa6b
								
							
						
					
					
						commit
						88c68712b6
					
				|  | @ -348,11 +348,10 @@ func (c *Cluster) compareStatefulSetWith(statefulSet *v1beta1.StatefulSet) *comp | ||||||
| 				c.logger.Warningf("new statefulset introduces extra labels in the label selector, cannot continue") | 				c.logger.Warningf("new statefulset introduces extra labels in the label selector, cannot continue") | ||||||
| 				return &compareStatefulsetResult{} | 				return &compareStatefulsetResult{} | ||||||
| 			} | 			} | ||||||
| 		} |  | ||||||
| 			needsReplace = true | 			needsReplace = true | ||||||
| 		needsRollUpdate = true |  | ||||||
| 			reasons = append(reasons, "new statefulset's selector doesn't match the current one") | 			reasons = append(reasons, "new statefulset's selector doesn't match the current one") | ||||||
| 		} | 		} | ||||||
|  | 	} | ||||||
| 
 | 
 | ||||||
| 	if !reflect.DeepEqual(c.Statefulset.Spec.Template.Annotations, statefulSet.Spec.Template.Annotations) { | 	if !reflect.DeepEqual(c.Statefulset.Spec.Template.Annotations, statefulSet.Spec.Template.Annotations) { | ||||||
| 		needsRollUpdate = true | 		needsRollUpdate = true | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue