mirror of https://github.com/knative/caching.git
bumping knative.dev/pkg 865e331...9c5a731: > 9c5a731 bump k8s deps to v0.23.8 (# 2534) > 1f01575 Add fix for CVE-2022-28948 (# 2532) > 7d607d6 Update community files (# 2531) bumping k8s.io/apimachinery 276a8a7...276a8a7: bumping k8s.io/client-go 97582f2...14fa49e: > 14fa49e Update dependencies to v0.23.8 tag > a475c28 Merge pull request # 108791 from aojea/cherry-pick-108772 > 8041ba9 Merge pull request # 109159 from wojtek-t/automated-cherry-pick-of-# 109137-upstream-release-1.23 > a26f2df client-go: update generated > 0c2c708 Addresses the issue which caused # 109115 > b6f49c1 default kubernetes agent for generated clients > 9b9e45f Add test for indexer with multiple values > ad6be0f sync: initially remove files BUILD */BUILD BUILD.bazel */BUILD.bazel Gopkg.toml */.gitattributes bumping k8s.io/code-generator fb849a7...31c00a6: > 31c00a6 Merge pull request # 108791 from aojea/cherry-pick-108772 > 995ba7c client-go: update generated > f955c88 default kubernetes agent for generated clients bumping k8s.io/api cd271e7...e08b72c: > e08b72c Update dependencies to v0.23.8 tag > 27e5860 Merge pull request # 109179 from liggitt/openapi-1.23 > 905a7dc Drop enum tag from certificate request condition > a8c2f0b Merge pull request # 108740 from jiahuif-forks/automated-cherry-pick-of-# 108639-upstream-release-1.23 > e1e0014 polish comments of non-enum values. > 5358347 unmark non-validated types as enums. bumping knative.dev/hack fd240e2...dc6c287: > dc6c287 Update community files (# 185) Signed-off-by: Knative Automation <automation@knative.team> |
||
---|---|---|
.. | ||
cmd | ||
pkg | ||
third_party/forked/golang | ||
CONTRIBUTING.md | ||
LICENSE | ||
README.md | ||
SECURITY_CONTACTS | ||
code-of-conduct.md | ||
doc.go | ||
generate-groups.sh | ||
generate-internal-groups.sh | ||
go.mod | ||
go.sum | ||
tools.go |
README.md
code-generator
Golang code-generators used to implement Kubernetes-style API types.
Purpose
These code-generators can be used
- in the context of CustomResourceDefinition to build native, versioned clients, informers and other helpers
- in the context of User-provider API Servers to build conversions between internal and versioned types, defaulters, protobuf codecs, internal and versioned clients and informers.
Resources
- The example sample controller shows a code example of a controller that uses the clients, listers and informers generated by this library.
- The article Kubernetes Deep Dive: Code Generation for CustomResources gives a step by step instruction on how to use this library.
Compatibility
HEAD of this repo will match HEAD of k8s.io/apiserver, k8s.io/apimachinery, and k8s.io/client-go.
Where does it come from?
code-generator
is synced from https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/code-generator.
Code changes are made in that location, merged into k8s.io/kubernetes
and later synced here.