*: move all imports to github.com/kubernetes-sigs/prometheus-adapter

Signed-off-by: paulfantom <pawel@krupa.net.pl>
This commit is contained in:
paulfantom 2021-02-22 15:26:02 +01:00
parent dd841a6e5e
commit cd55a67b89
No known key found for this signature in database
GPG key ID: 12AE0185401674E7
24 changed files with 50 additions and 50 deletions

View file

@ -24,8 +24,8 @@ import (
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/runtime/schema"
prom "github.com/directxman12/k8s-prometheus-adapter/pkg/client"
"github.com/directxman12/k8s-prometheus-adapter/pkg/config"
prom "github.com/kubernetes-sigs/prometheus-adapter/pkg/client"
"github.com/kubernetes-sigs/prometheus-adapter/pkg/config"
)
// MetricNamer knows how to convert Prometheus series names and label names to

View file

@ -27,7 +27,7 @@ import (
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/selection"
prom "github.com/directxman12/k8s-prometheus-adapter/pkg/client"
prom "github.com/kubernetes-sigs/prometheus-adapter/pkg/client"
)
// MetricsQuery represents a compiled metrics query for some set of

View file

@ -20,7 +20,7 @@ import (
"fmt"
"testing"
prom "github.com/directxman12/k8s-prometheus-adapter/pkg/client"
prom "github.com/kubernetes-sigs/prometheus-adapter/pkg/client"
pmodel "github.com/prometheus/common/model"
labels "k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/runtime/schema"

View file

@ -21,7 +21,7 @@ import (
"github.com/stretchr/testify/require"
"github.com/directxman12/k8s-prometheus-adapter/pkg/config"
"github.com/kubernetes-sigs/prometheus-adapter/pkg/config"
)
func TestReMatcherIs(t *testing.T) {

View file

@ -26,9 +26,9 @@ import (
apimeta "k8s.io/apimachinery/pkg/api/meta"
"k8s.io/apimachinery/pkg/runtime/schema"
prom "github.com/directxman12/k8s-prometheus-adapter/pkg/client"
"github.com/directxman12/k8s-prometheus-adapter/pkg/config"
"github.com/kubernetes-sigs/custom-metrics-apiserver/pkg/provider"
prom "github.com/kubernetes-sigs/prometheus-adapter/pkg/client"
"github.com/kubernetes-sigs/prometheus-adapter/pkg/config"
pmodel "github.com/prometheus/common/model"
"k8s.io/klog/v2"
)