forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clientgo/examples: add ToC for examples
Also add authenticate- prefix to auth samples. Signed-off-by: Ahmet Alp Balkan <[email protected]>
- Loading branch information
Showing
10 changed files
with
40 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# client-go Examples | ||
|
||
This directory contains examples that cover various use cases and functionality | ||
for client-go. | ||
|
||
### Configuration | ||
|
||
- [**Authenticate in cluster**](./in-cluster-client-configuration): Configure a | ||
client while running inside the Kubernetes cluster. | ||
- [**Authenticate out of cluster**](./out-of-cluster-client-configuration): | ||
Configure a client to access a Kubernetes cluster from outside. | ||
|
||
### Basics | ||
|
||
- [**Managing resources with API**](./create-update-delete-deployment): Create, | ||
get, update, delete a Deployment resource. | ||
|
||
### Advanced Concepts | ||
|
||
- [**Work queues**](./workqueue): Create a hotloop-free controller with the | ||
rate-limited workqueue and the [informer framework][informer]. | ||
- [**Third-party resources (deprecated)**](./third-party-resources-deprecated): | ||
Register a custom resource type with the API, create/update/query this custom | ||
type, and write a controller drives the cluster state based on the changes to | ||
the custom resources. | ||
|
||
[informer]: https://godoc.org/k8s.io/client-go/tools/cache#NewInformer | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.