Eric Tune
Eric Tune
In a multi-tenant environment, there should be resource isolation between VMs created by hyper. The most obvious way to do this, to me at least, is to run each VM...
When you create a CRD, it can have a schema defined using json-schema. In github.com/kubernetes/sample-controller the client libraries for a controller are generated from a go API definition, and CRDs...
@akashrv @droot Suggested additions to docs about admission webhooks: """Validating webhooks run after all mutating webhooks, so you don't need to worry about another webhook changing an object after your...
KRM convention for storing dates is to set`type: string` and `format: date` in the openAPI. For date-times it is to use `type: string` and `format: date-time`. This is RFC3339, and...
Core Kubernetes types have Feature Gates. They are documented here: https://kubernetes.io/docs/reference/command-line-tools-reference/feature-gates/ This is a good practice for anyone, whether they are building a CRD as part of the K8s org,...
Suggest adding following to KB docs. @droot @akashrv ---- Sometimes a resource is updated while the controller is working on that resource. For example, a user might modify the resource's...
I'm told that 1.16 supports interpreting a CRD which has `x-kubernetes-list-map-type` and `x-kubernetes-list-map-keys` properties. Please document somewhere an example of a CRD that uses these, so the syntax is clear....