Skip to content

Commit 5f5c02d

Browse files
authored
Merge pull request kubernetes#124012 from Jefftree/le-controller
Coordinated Leader Election
2 parents e9d9a82 + 56b278d commit 5f5c02d

File tree

137 files changed

+12384
-330
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+12384
-330
lines changed

api/discovery/aggregated_v2.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1631,6 +1631,32 @@
16311631
}
16321632
],
16331633
"version": "v1"
1634+
},
1635+
{
1636+
"freshness": "Current",
1637+
"resources": [
1638+
{
1639+
"resource": "leasecandidates",
1640+
"responseKind": {
1641+
"group": "",
1642+
"kind": "LeaseCandidate",
1643+
"version": ""
1644+
},
1645+
"scope": "Namespaced",
1646+
"singularResource": "leasecandidate",
1647+
"verbs": [
1648+
"create",
1649+
"delete",
1650+
"deletecollection",
1651+
"get",
1652+
"list",
1653+
"patch",
1654+
"update",
1655+
"watch"
1656+
]
1657+
}
1658+
],
1659+
"version": "v1alpha1"
16341660
}
16351661
]
16361662
},

api/discovery/aggregated_v2beta1.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1631,6 +1631,32 @@
16311631
}
16321632
],
16331633
"version": "v1"
1634+
},
1635+
{
1636+
"freshness": "Current",
1637+
"resources": [
1638+
{
1639+
"resource": "leasecandidates",
1640+
"responseKind": {
1641+
"group": "",
1642+
"kind": "LeaseCandidate",
1643+
"version": ""
1644+
},
1645+
"scope": "Namespaced",
1646+
"singularResource": "leasecandidate",
1647+
"verbs": [
1648+
"create",
1649+
"delete",
1650+
"deletecollection",
1651+
"get",
1652+
"list",
1653+
"patch",
1654+
"update",
1655+
"watch"
1656+
]
1657+
}
1658+
],
1659+
"version": "v1alpha1"
16341660
}
16351661
]
16361662
},

api/discovery/apis.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,10 @@
242242
{
243243
"groupVersion": "coordination.k8s.io/v1",
244244
"version": "v1"
245+
},
246+
{
247+
"groupVersion": "coordination.k8s.io/v1alpha1",
248+
"version": "v1alpha1"
245249
}
246250
]
247251
},

api/discovery/apis__coordination.k8s.io.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
{
1111
"groupVersion": "coordination.k8s.io/v1",
1212
"version": "v1"
13+
},
14+
{
15+
"groupVersion": "coordination.k8s.io/v1alpha1",
16+
"version": "v1alpha1"
1317
}
1418
]
1519
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"apiVersion": "v1",
3+
"groupVersion": "coordination.k8s.io/v1alpha1",
4+
"kind": "APIResourceList",
5+
"resources": [
6+
{
7+
"kind": "LeaseCandidate",
8+
"name": "leasecandidates",
9+
"namespaced": true,
10+
"singularName": "leasecandidate",
11+
"storageVersionHash": "VM2ILh8OBCI=",
12+
"verbs": [
13+
"create",
14+
"delete",
15+
"deletecollection",
16+
"get",
17+
"list",
18+
"patch",
19+
"update",
20+
"watch"
21+
]
22+
}
23+
]
24+
}

0 commit comments

Comments
 (0)