From d21fc6e762276747e3306cfaf27b0ce1201071c2 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Fri, 16 Sep 2022 15:14:13 +0100 Subject: [PATCH] client-go: remove reference to TPR in examples 5 years after third party resources were removed, we're probably just confusing readers with this reference. --- staging/src/k8s.io/client-go/examples/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging/src/k8s.io/client-go/examples/README.md b/staging/src/k8s.io/client-go/examples/README.md index 57579f06e94..0ec0e13d6aa 100644 --- a/staging/src/k8s.io/client-go/examples/README.md +++ b/staging/src/k8s.io/client-go/examples/README.md @@ -37,7 +37,7 @@ import _ "k8s.io/client-go/plugin/pkg/client/auth/oidc" - [**Work queues**](./workqueue): Create a hotloop-free controller with the rate-limited workqueue and the [informer framework][informer]. -- [**Custom Resource Definition (successor of TPR)**](https://git.k8s.io/apiextensions-apiserver/examples/client-go): +- [**Custom Resource Definition (CRD)**](https://git.k8s.io/apiextensions-apiserver/examples/client-go): Register a custom resource type with the API, create/update/query this custom type, and write a controller that drives the cluster state based on the changes to the custom resources.