Skip to content

Commit 84e0db8

Browse files
Merge pull request #127857 from Jefftree/cle-v1alpha2
Coordinated Leader Election add v1alpha2 Kubernetes-commit: 45260fd76aa7b2ceed16aea173ccb3f81e3ab98b
2 parents cbaf5a0 + fe602ca commit 84e0db8

15 files changed

+103
-229
lines changed

coordination/v1alpha1/doc.go coordination/v1alpha2/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ limitations under the License.
2121

2222
// +groupName=coordination.k8s.io
2323

24-
package v1alpha1 // import "k8s.io/api/coordination/v1alpha1"
24+
package v1alpha2 // import "k8s.io/api/coordination/v1alpha2"

coordination/v1alpha1/generated.pb.go coordination/v1alpha2/generated.pb.go

+56-65
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coordination/v1alpha1/generated.proto coordination/v1alpha2/generated.proto

+9-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coordination/v1alpha1/register.go coordination/v1alpha2/register.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2018 The Kubernetes Authors.
2+
Copyright 2024 The Kubernetes Authors.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package v1alpha1
17+
package v1alpha2
1818

1919
import (
2020
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
@@ -26,7 +26,7 @@ import (
2626
const GroupName = "coordination.k8s.io"
2727

2828
// SchemeGroupVersion is group version used to register these objects
29-
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1alpha1"}
29+
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1alpha2"}
3030

3131
// Resource takes an unqualified resource and returns a Group qualified GroupResource
3232
func Resource(resource string) schema.GroupResource {

coordination/v1alpha1/types.go coordination/v1alpha2/types.go

+12-17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2018 The Kubernetes Authors.
2+
Copyright 2024 The Kubernetes Authors.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package v1alpha1
17+
package v1alpha2
1818

1919
import (
2020
v1 "k8s.io/api/coordination/v1"
@@ -23,7 +23,7 @@ import (
2323

2424
// +genclient
2525
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
26-
// +k8s:prerelease-lifecycle-gen:introduced=1.31
26+
// +k8s:prerelease-lifecycle-gen:introduced=1.32
2727

2828
// LeaseCandidate defines a candidate for a Lease object.
2929
// Candidates are created such that coordinated leader election will pick the best leader from the list of candidates.
@@ -61,31 +61,26 @@ type LeaseCandidateSpec struct {
6161
// +optional
6262
RenewTime *metav1.MicroTime `json:"renewTime,omitempty" protobuf:"bytes,3,opt,name=renewTime"`
6363
// BinaryVersion is the binary version. It must be in a semver format without leading `v`.
64-
// This field is required when strategy is "OldestEmulationVersion"
65-
// +optional
66-
BinaryVersion string `json:"binaryVersion,omitempty" protobuf:"bytes,4,opt,name=binaryVersion"`
64+
// This field is required.
65+
// +required
66+
BinaryVersion string `json:"binaryVersion" protobuf:"bytes,4,name=binaryVersion"`
6767
// EmulationVersion is the emulation version. It must be in a semver format without leading `v`.
6868
// EmulationVersion must be less than or equal to BinaryVersion.
6969
// This field is required when strategy is "OldestEmulationVersion"
7070
// +optional
7171
EmulationVersion string `json:"emulationVersion,omitempty" protobuf:"bytes,5,opt,name=emulationVersion"`
72-
// PreferredStrategies indicates the list of strategies for picking the leader for coordinated leader election.
73-
// The list is ordered, and the first strategy supersedes all other strategies. The list is used by coordinated
74-
// leader election to make a decision about the final election strategy. This follows as
75-
// - If all clients have strategy X as the first element in this list, strategy X will be used.
76-
// - If a candidate has strategy [X] and another candidate has strategy [Y, X], Y supersedes X and strategy Y
77-
// will be used.
78-
// - If a candidate has strategy [X, Y] and another candidate has strategy [Y, X], this is a user error and leader
79-
// election will not operate the Lease until resolved.
72+
// Strategy is the strategy that coordinated leader election will use for picking the leader.
73+
// If multiple candidates for the same Lease return different strategies, the strategy provided
74+
// by the candidate with the latest BinaryVersion will be used. If there is still conflict,
75+
// this is a user error and coordinated leader election will not operate the Lease until resolved.
8076
// (Alpha) Using this field requires the CoordinatedLeaderElection feature gate to be enabled.
8177
// +featureGate=CoordinatedLeaderElection
82-
// +listType=atomic
8378
// +required
84-
PreferredStrategies []v1.CoordinatedLeaseStrategy `json:"preferredStrategies,omitempty" protobuf:"bytes,6,opt,name=preferredStrategies"`
79+
Strategy v1.CoordinatedLeaseStrategy `json:"strategy,omitempty" protobuf:"bytes,6,opt,name=strategy"`
8580
}
8681

8782
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
88-
// +k8s:prerelease-lifecycle-gen:introduced=1.31
83+
// +k8s:prerelease-lifecycle-gen:introduced=1.32
8984

9085
// LeaseCandidateList is a list of Lease objects.
9186
type LeaseCandidateList struct {

0 commit comments

Comments
 (0)