Skip to content

Commit 646e79b

Browse files
skittk8s-publishing-bot
authored andcommitted
Run codegen
Signed-off-by: Stephen Kitt <[email protected]> Kubernetes-commit: be03bcf3244e6c280b8aaf7a638d1926f0960eab
1 parent c475fe0 commit 646e79b

File tree

194 files changed

+3119
-17918
lines changed

Some content is hidden

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

194 files changed

+3119
-17918
lines changed

gentype/fake.go

+17-10
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import (
2121
json "encoding/json"
2222
"fmt"
2323

24+
"k8s.io/apimachinery/pkg/api/meta"
2425
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2526
labels "k8s.io/apimachinery/pkg/labels"
2627
"k8s.io/apimachinery/pkg/runtime"
@@ -31,7 +32,7 @@ import (
3132
)
3233

3334
// FakeClient represents a fake client
34-
type FakeClient[T objectWithMeta] struct {
35+
type FakeClient[T runtime.Object] struct {
3536
*testing.Fake
3637
ns string
3738
resource schema.GroupVersionResource
@@ -40,40 +41,40 @@ type FakeClient[T objectWithMeta] struct {
4041
}
4142

4243
// FakeClientWithList represents a fake client with support for lists.
43-
type FakeClientWithList[T objectWithMeta, L runtime.Object] struct {
44+
type FakeClientWithList[T runtime.Object, L runtime.Object] struct {
4445
*FakeClient[T]
4546
alsoFakeLister[T, L]
4647
}
4748

4849
// FakeClientWithApply represents a fake client with support for apply declarative configurations.
49-
type FakeClientWithApply[T objectWithMeta, C namedObject] struct {
50+
type FakeClientWithApply[T runtime.Object, C namedObject] struct {
5051
*FakeClient[T]
5152
alsoFakeApplier[T, C]
5253
}
5354

5455
// FakeClientWithListAndApply represents a fake client with support for lists and apply declarative configurations.
55-
type FakeClientWithListAndApply[T objectWithMeta, L runtime.Object, C namedObject] struct {
56+
type FakeClientWithListAndApply[T runtime.Object, L runtime.Object, C namedObject] struct {
5657
*FakeClient[T]
5758
alsoFakeLister[T, L]
5859
alsoFakeApplier[T, C]
5960
}
6061

6162
// Helper types for composition
62-
type alsoFakeLister[T objectWithMeta, L runtime.Object] struct {
63+
type alsoFakeLister[T runtime.Object, L runtime.Object] struct {
6364
client *FakeClient[T]
6465
newList func() L
6566
copyListMeta func(L, L)
6667
getItems func(L) []T
6768
setItems func(L, []T)
6869
}
6970

70-
type alsoFakeApplier[T objectWithMeta, C namedObject] struct {
71+
type alsoFakeApplier[T runtime.Object, C namedObject] struct {
7172
client *FakeClient[T]
7273
}
7374

7475
// NewFakeClient constructs a fake client, namespaced or not, with no support for lists or apply.
7576
// Non-namespaced clients are constructed by passing an empty namespace ("").
76-
func NewFakeClient[T objectWithMeta](
77+
func NewFakeClient[T runtime.Object](
7778
fake *testing.Fake, namespace string, resource schema.GroupVersionResource, kind schema.GroupVersionKind, emptyObjectCreator func() T,
7879
) *FakeClient[T] {
7980
return &FakeClient[T]{fake, namespace, resource, kind, emptyObjectCreator}
@@ -149,7 +150,7 @@ func FromPointerSlice[T any](src []*T) []T {
149150
return result
150151
}
151152

152-
// List takes label and field selectors, and returns the list of ClusterRoles that match those selectors.
153+
// List takes label and field selectors, and returns the list of resources that match those selectors.
153154
func (l *alsoFakeLister[T, L]) List(ctx context.Context, opts metav1.ListOptions) (result L, err error) {
154155
emptyResult := l.newList()
155156
obj, err := l.client.Fake.
@@ -160,13 +161,19 @@ func (l *alsoFakeLister[T, L]) List(ctx context.Context, opts metav1.ListOptions
160161

161162
label, _, _ := testing.ExtractFromListOptions(opts)
162163
if label == nil {
163-
label = labels.Everything()
164+
// Everything matches
165+
return obj.(L), nil
164166
}
165167
list := l.newList()
166168
l.copyListMeta(list, obj.(L))
167169
var items []T
168170
for _, item := range l.getItems(obj.(L)) {
169-
if label.Matches(labels.Set(item.GetLabels())) {
171+
itemMeta, err := meta.Accessor(item)
172+
if err != nil {
173+
// No ObjectMeta, nothing can match
174+
continue
175+
}
176+
if label.Matches(labels.Set(itemMeta.GetLabels())) {
170177
items = append(items, item)
171178
}
172179
}

kubernetes/typed/admissionregistration/v1/fake/fake_admissionregistration_client.go

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

kubernetes/typed/admissionregistration/v1/fake/fake_mutatingwebhookconfiguration.go

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

0 commit comments

Comments
 (0)