diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a85350aa..c9472a97 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,4 +6,4 @@ Please follow the same [contributing guide](https://git.k8s.io/kubernetes/CONTRI This repository is published from [kubernetes/kubernetes/staging/src/k8s.io/client-go](https://git.k8s.io/kubernetes/staging/src/k8s.io/client-go) by the [kubernetes publishing-bot](https://git.k8s.io/publishing-bot). -Please see [Staging Directory and Publishing](https://git.k8s.io/community/contributors/devel/staging.md) for more information +Please see [Staging Directory and Publishing](https://git.k8s.io/community/contributors/devel/sig-architecture/staging.md) for more information diff --git a/examples/create-update-delete-deployment/main.go b/examples/create-update-delete-deployment/main.go index ad32b74f..76a8504a 100644 --- a/examples/create-update-delete-deployment/main.go +++ b/examples/create-update-delete-deployment/main.go @@ -120,7 +120,7 @@ func main() { // using the retry utility package included with client-go. (RECOMMENDED) // // More Info: - // https://github.com/kubernetes/community/blob/master/contributors/devel/api-conventions.md#concurrency-control-and-consistency + // https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency retryErr := retry.RetryOnConflict(retry.DefaultRetry, func() error { // Retrieve the latest version of Deployment before attempting update diff --git a/examples/workqueue/README.md b/examples/workqueue/README.md index 2ac97049..2cde9c17 100644 --- a/examples/workqueue/README.md +++ b/examples/workqueue/README.md @@ -7,7 +7,7 @@ It demonstrates how to: * combine the workqueue with a cache to a full controller * synchronize the controller on startup -The example is based on https://git.k8s.io/community/contributors/devel/controllers.md. +The example is based on https://git.k8s.io/community/contributors/devel/sig-api-machinery/controllers.md. ## Running