Skip to content

Commit 89beb5b

Browse files
dprotasok8s-publishing-bot
authored andcommitted
Don't clear the cached resourcelock when errors occurs on updates
This allows the lock to be release normally - even with a potentially stale lock. This flow should only occur when we're the lease holders. Kubernetes-commit: 04170f66529f98367bc0d91f9419962948f95188
1 parent 2f053ea commit 89beb5b

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

tools/leaderelection/resourcelock/configmaplock.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,12 @@ func (cml *ConfigMapLock) Update(ctx context.Context, ler LeaderElectionRecord)
9292
cml.cm.Annotations = make(map[string]string)
9393
}
9494
cml.cm.Annotations[LeaderElectionRecordAnnotationKey] = string(recordBytes)
95-
cml.cm, err = cml.Client.ConfigMaps(cml.ConfigMapMeta.Namespace).Update(ctx, cml.cm, metav1.UpdateOptions{})
96-
return err
95+
cm, err := cml.Client.ConfigMaps(cml.ConfigMapMeta.Namespace).Update(ctx, cml.cm, metav1.UpdateOptions{})
96+
if err != nil {
97+
return err
98+
}
99+
cml.cm = cm
100+
return nil
97101
}
98102

99103
// RecordEvent in leader election while adding meta-data

tools/leaderelection/resourcelock/endpointslock.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,12 @@ func (el *EndpointsLock) Update(ctx context.Context, ler LeaderElectionRecord) e
8787
el.e.Annotations = make(map[string]string)
8888
}
8989
el.e.Annotations[LeaderElectionRecordAnnotationKey] = string(recordBytes)
90-
el.e, err = el.Client.Endpoints(el.EndpointsMeta.Namespace).Update(ctx, el.e, metav1.UpdateOptions{})
91-
return err
90+
e, err := el.Client.Endpoints(el.EndpointsMeta.Namespace).Update(ctx, el.e, metav1.UpdateOptions{})
91+
if err != nil {
92+
return err
93+
}
94+
el.e = e
95+
return nil
9296
}
9397

9498
// RecordEvent in leader election while adding meta-data

tools/leaderelection/resourcelock/leaselock.go

+8-3
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,14 @@ func (ll *LeaseLock) Update(ctx context.Context, ler LeaderElectionRecord) error
7171
return errors.New("lease not initialized, call get or create first")
7272
}
7373
ll.lease.Spec = LeaderElectionRecordToLeaseSpec(&ler)
74-
var err error
75-
ll.lease, err = ll.Client.Leases(ll.LeaseMeta.Namespace).Update(ctx, ll.lease, metav1.UpdateOptions{})
76-
return err
74+
75+
lease, err := ll.Client.Leases(ll.LeaseMeta.Namespace).Update(ctx, ll.lease, metav1.UpdateOptions{})
76+
if err != nil {
77+
return err
78+
}
79+
80+
ll.lease = lease
81+
return nil
7782
}
7883

7984
// RecordEvent in leader election while adding meta-data

0 commit comments

Comments
 (0)