Dmitry Rozhkov

Results 16 comments of Dmitry Rozhkov

Have you looked at [Perfetto](https://perfetto.dev/docs/instrumentation/track-events)? I think your description feels very similar to it. E.g. events from the same source could be annotated with an additional param to make them...

You are right. I thought iOS was supported, looked at the code and found this ```c++ #if PERFETTO_BUILDFLAG(PERFETTO_OS_IOS) PERFETTO_FATAL("Data source TLS not supported on iOS, see b/158814068"); #endif ```

@fabriziopandini I don't think it's needed as they are different issues: #984 is about kubeadm accepting pre-generated ECDSA certs (without kubeadm) and this issue is about kubeadm generating ECDSA certs...

I might get back to this. Will update tomorrow or on this Wednesday.

I need to finalize one my PR to Envoy's main repo and one more PR to the OpenSSL extension to Envoy first. They take all my time budget allowed for...

Submitted https://github.com/kubernetes/kubernetes/pull/86953

@neolit123 @fabriziopandini Thanks for your fast reply! I'll rework the PR to have an `init` only feature gate for ECDSA and write a KEP for the rest of possible scenarios...

@stealthybox It's safe to have keys of different types in a single certificate bundle or chain. I don't expect problems if to add the ECDSA feature gate to `ClusterConfiguration` of...

Signing certs and trust bundles are clearly different things indeed. So, I tried to separate one from the other in https://github.com/rojkov/kubernetes/commit/afed24fecbfa32d7c939fc86a9f0361e1677824c. Cluster creation (and node join) seems to work. The...