Benoit Gagnon
Benoit Gagnon
Nice! #224 is a good step, but it's still: * hardcoded to use the standard library `json` * does not support `Deferred` decoding
[Shopify/kubenetes-deploy](https://github.com/Shopify/kubernetes-deploy) (soon to be renamed _krane_)
With #246, the setting is now adjusted dynamically in the _cluster state_, but how is it passed to the nodes during initial startup? What prevents them from declaring themselves master...
Agree with @dwightbiddle-ef. While the ability to _skip_ validation of CustomResourceDefinitions is desirable, the ultimate goal should be to _support_ their validation according to the schema. Modern CRDs have the...
I have a working prototype for a potential solution to this approach. Here's the general idea: * use git submodules to collect upstream definitions * use [js-yaml](https://github.com/nodeca/js-yaml) to convert from...
The schema generation bug that @garethr mentioned is likely due to the circular reference contained in the Kubernetes OpenAPI/Swagger schemas. It is not possible to "resolve" (de-reference and inline) all...
@jehiah any chance this pull request can get merged?
I signed it!
The observed value is likely the uninitialized value for `time.Time{}` when there are zero verified chains: ```go func getLastChainExpiry(state *tls.ConnectionState) time.Time { lastChainExpiry := time.Time{} for _, chain := range...
From https://golang.org/pkg/time/#Time: > The zero value of type Time is January 1, year 1, 00:00:00.000000000 UTC. As this time is unlikely to come up in practice, the IsZero method gives...