1
1
/*
2
- Copyright 2018 The Kubernetes Authors.
2
+ Copyright 2024 The Kubernetes Authors.
3
3
4
4
Licensed under the Apache License, Version 2.0 (the "License");
5
5
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
14
14
limitations under the License.
15
15
*/
16
16
17
- package v1alpha1
17
+ package v1alpha2
18
18
19
19
import (
20
20
v1 "k8s.io/api/coordination/v1"
@@ -23,7 +23,7 @@ import (
23
23
24
24
// +genclient
25
25
// +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
27
27
28
28
// LeaseCandidate defines a candidate for a Lease object.
29
29
// 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 {
61
61
// +optional
62
62
RenewTime * metav1.MicroTime `json:"renewTime,omitempty" protobuf:"bytes,3,opt,name=renewTime"`
63
63
// 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"`
67
67
// EmulationVersion is the emulation version. It must be in a semver format without leading `v`.
68
68
// EmulationVersion must be less than or equal to BinaryVersion.
69
69
// This field is required when strategy is "OldestEmulationVersion"
70
70
// +optional
71
71
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.
80
76
// (Alpha) Using this field requires the CoordinatedLeaderElection feature gate to be enabled.
81
77
// +featureGate=CoordinatedLeaderElection
82
- // +listType=atomic
83
78
// +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 "`
85
80
}
86
81
87
82
// +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
89
84
90
85
// LeaseCandidateList is a list of Lease objects.
91
86
type LeaseCandidateList struct {
0 commit comments