Fix golang client-go/tools/cache package name

Documentation shows incorrect package name, I believe it should refer to
[`client-go/ools/cache`](https://pkg.go.dev/k8s.io/client-go/tools/cache).
pull/31820/head
Ariel Shaqed (Scolnicov) 2022-02-22 17:08:57 +02:00
parent 3aea799ca5
commit 9d45d964ed
No known key found for this signature in database
GPG Key ID: 8D9251A56C3F974F
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ and starting the **watch** from the `resourceVersion` that was returned.
For subscribing to collections, Kubernetes client libraries typically offer some form
of standard tool for this **list**-then-**watch** logic. (In the Go client library,
this is called a `Reflector` and is located in the `k8s.io/client-go/cache` package.)
this is called a `Reflector` and is located in the `k8s.io/client-go/tools/cache` package.)
### Watch bookmarks