should compare label for service and update
This commit is contained in:
parent
daec1a40c2
commit
2899729c0b
|
|
@ -1,4 +1,4 @@
|
|||
LEADER_LABEL_VALUE = "master" # master or primary
|
||||
LEADER_LABEL_VALUE = "master" # value should be the same as in the configmap: pod_leader_label_value
|
||||
SPILO_CURRENT = "registry.opensource.zalan.do/acid/spilo-16-e2e:0.1"
|
||||
SPILO_LAZY = "registry.opensource.zalan.do/acid/spilo-16-e2e:0.2"
|
||||
SPILO_FULL_IMAGE = "ghcr.io/zalando/spilo-16:3.2-p3"
|
||||
|
|
|
|||
|
|
@ -837,6 +837,10 @@ func (c *Cluster) compareServices(old, new *v1.Service) (bool, string) {
|
|||
}
|
||||
}
|
||||
|
||||
if !reflect.DeepEqual(old.Labels, new.Labels) {
|
||||
return false, "new service's labels do not match the current ones"
|
||||
}
|
||||
|
||||
if !reflect.DeepEqual(old.ObjectMeta.OwnerReferences, new.ObjectMeta.OwnerReferences) {
|
||||
return false, "new service's owner references do not match the current ones"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue