Is there a way to work with more than a single adapter? For example, using both k8s-cloudwatch-adapter and prometheus-adapter. Once i tried to implemented both, only the latter was exposing metrics to /apis/external.metrics.k8s.io/v1beta1
Currently this is a limitation in Kubernetes Metrics API, it is accepting only one adapter being registered with Metrics API, so the latter will always replace any previous adapter you've configured.
Is there a way to work with more than a single adapter? For example, using both k8s-cloudwatch-adapter and prometheus-adapter. Once i tried to implemented both, only the latter was exposing metrics to
/apis/external.metrics.k8s.io/v1beta1
Thanks