rebase: update K8s packages to v0.32.1

Update K8s packages in go.mod to v0.32.1

Signed-off-by: Praveen M <m.praveen@ibm.com>
This commit is contained in:
Praveen M
2025-01-16 09:41:46 +05:30
committed by mergify[bot]
parent 5aef21ea4e
commit 7eb99fc6c9
2442 changed files with 273386 additions and 47788 deletions

View File

@ -7,7 +7,6 @@ approvers:
- deads2k
- caesarxuchao
- liggitt
- ncdc
reviewers:
- thockin
- smarterclayton
@ -23,6 +22,6 @@ reviewers:
- jsafrane
- dims
- ingvagabund
- ncdc
emeritus_approvers:
- lavalamp
- ncdc

View File

@ -57,7 +57,7 @@ var (
// Reflector watches a specified resource and causes all changes to be reflected in the given store.
type Reflector struct {
// name identifies this reflector. By default it will be a file:line if possible.
// name identifies this reflector. By default, it will be a file:line if possible.
name string
// The name of the type we expect to place in the store. The name
// will be the stringification of expectedGVK if provided, and the
@ -121,6 +121,14 @@ type Reflector struct {
UseWatchList *bool
}
func (r *Reflector) Name() string {
return r.name
}
func (r *Reflector) TypeDescription() string {
return r.typeDescription
}
// ResourceVersionUpdater is an interface that allows store implementation to
// track the current resource version of the reflector. This is especially
// important if storage bookmarks are enabled.