trying to migrate from application to owner label

This commit is contained in:
tcondeixa 2026-06-30 10:47:57 +02:00
parent 1227fc2e1c
commit 9eedb98954
No known key found for this signature in database
2 changed files with 43 additions and 4 deletions

View File

@ -530,11 +530,10 @@ func (c *Cluster) compareStatefulSetWith(statefulSet *appsv1.StatefulSet) *compa
}
if (c.Statefulset.Spec.Selector != nil) && (statefulSet.Spec.Selector != nil) {
if !reflect.DeepEqual(c.Statefulset.Spec.Selector.MatchLabels, statefulSet.Spec.Selector.MatchLabels) {
// forbid introducing new labels in the selector on the new statefulset, as it would cripple replacements
// due to the fact that the new statefulset won't be able to pick up old pods with non-matching labels.
if !util.MapContains(c.Statefulset.Spec.Selector.MatchLabels, statefulSet.Spec.Selector.MatchLabels) {
c.logger.Warningf("new statefulset introduces extra labels in the label selector, cannot continue")
return &compareStatefulsetResult{}
// new selector has labels the existing pods don't carry yet; pods will be
// relabeled before the StatefulSet is replaced so they can be adopted.
c.logger.Warningf("new statefulset introduces extra labels in the selector, pods will be relabeled before replacement")
}
needsReplace = true
reasons = append(reasons, "new statefulset's selector does not match the current one")

View File

@ -211,6 +211,38 @@ func (c *Cluster) updateStatefulSet(newStatefulSet *appsv1.StatefulSet) error {
}
// replaceStatefulSet deletes an old StatefulSet and creates the new using spec in the PostgreSQL CRD.
func (c *Cluster) relabelPodsForSelector(newSelector map[string]string) error {
pods, err := c.listPods()
if err != nil {
return fmt.Errorf("could not list pods for relabeling: %v", err)
}
for _, pod := range pods {
// only patch pods that are missing one or more of the new selector labels
needsPatch := false
for k, v := range newSelector {
if pod.Labels[k] != v {
needsPatch = true
break
}
}
if !needsPatch {
continue
}
patchData, err := metaLabelsPatch(newSelector)
if err != nil {
return fmt.Errorf("could not form label patch for pod %q: %v", pod.Name, err)
}
if _, err := c.KubeClient.Pods(pod.Namespace).Patch(context.TODO(), pod.Name, types.MergePatchType, patchData, metav1.PatchOptions{}); err != nil {
return fmt.Errorf("could not relabel pod %q: %v", pod.Name, err)
}
c.logger.Infof("relabeled pod %q with new selector labels", pod.Name)
}
return nil
}
func (c *Cluster) replaceStatefulSet(newStatefulSet *appsv1.StatefulSet) error {
c.setProcessName("replacing statefulset")
if c.Statefulset == nil {
@ -220,6 +252,14 @@ func (c *Cluster) replaceStatefulSet(newStatefulSet *appsv1.StatefulSet) error {
statefulSetName := util.NameFromMeta(c.Statefulset.ObjectMeta)
c.logger.Debug("replacing statefulset")
// If the new selector has labels the existing pods don't carry, relabel them first
// so the new StatefulSet can adopt them after the cascade=orphan delete.
if !util.MapContains(c.Statefulset.Spec.Selector.MatchLabels, newStatefulSet.Spec.Selector.MatchLabels) {
if err := c.relabelPodsForSelector(newStatefulSet.Spec.Selector.MatchLabels); err != nil {
return fmt.Errorf("could not relabel pods before statefulset replacement: %v", err)
}
}
// Delete the current statefulset without deleting the pods
deletePropagationPolicy := metav1.DeletePropagationOrphan
oldStatefulset := c.Statefulset