File tree Expand file tree Collapse file tree 5 files changed +10
-5
lines changed
pkg/helm-project-operator/crd Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 7
7
"log"
8
8
"net/http"
9
9
_ "net/http/pprof"
10
+ "os"
10
11
11
12
"github.com/rancher/prometheus-federator/pkg/helm-project-operator/controllers/common"
12
13
"github.com/rancher/prometheus-federator/pkg/helm-project-operator/operator"
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ package main
4
4
5
5
import (
6
6
_ "embed"
7
+ "log"
8
+ "net/http"
9
+ _ "net/http/pprof"
10
+ "os"
11
+
7
12
"github.com/rancher/prometheus-federator/pkg/helm-project-operator/controllers/common"
8
13
"github.com/rancher/prometheus-federator/pkg/helm-project-operator/operator"
9
14
"github.com/rancher/prometheus-federator/pkg/version"
@@ -12,10 +17,6 @@ import (
12
17
_ "github.com/rancher/wrangler/pkg/generated/controllers/networking.k8s.io"
13
18
"github.com/rancher/wrangler/pkg/kubeconfig"
14
19
"github.com/spf13/cobra"
15
- "log"
16
- "net/http"
17
- _ "net/http/pprof"
18
- "os"
19
20
)
20
21
21
22
const (
Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ require (
87
87
k8s.io/gengo v0.0.0-20210813121822-485abfe95c7c // indirect
88
88
k8s.io/klog v1.0.0 // indirect
89
89
k8s.io/klog/v2 v2.30.0 // indirect
90
+ k8s.io/kube-aggregator v0.18.0 // indirect
90
91
k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65 // indirect
91
92
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
92
93
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
Original file line number Diff line number Diff line change @@ -1777,6 +1777,7 @@ k8s.io/klog/v2 v2.4.0/go.mod h1:Od+F08eJP+W3HUb4pSrPpgp9DGU4GzlpG/TmITuYh/Y=
1777
1777
k8s.io/klog/v2 v2.9.0 /go.mod h1:hy9LJ/NvuK+iVyP4Ehqva4HxZG/oXyIS3n3Jmire4Ec =
1778
1778
k8s.io/klog/v2 v2.30.0 h1:bUO6drIvCIsvZ/XFgfxoGFQU/a4Qkh0iAlvUR7vlHJw =
1779
1779
k8s.io/klog/v2 v2.30.0 /go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0 =
1780
+ k8s.io/kube-aggregator v0.18.0 h1:J+wa9FDQ3SbgyA8wQBNg2m2FMSm+mMQfs2A58500hs0 =
1780
1781
k8s.io/kube-aggregator v0.18.0 /go.mod h1:ateewQ5QbjMZF/dihEFXwaEwoA4v/mayRvzfmvb6eqI =
1781
1782
k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a /go.mod h1:1TqjTSzOxsLGIKfj0lK8EeCP7K1iUG65v09OM0/WG5E =
1782
1783
k8s.io/kube-openapi v0.0.0-20200121204235-bf4fb3bd569c /go.mod h1:GRQhZsXIAJ1xR0C9bd8UpWHZ5plfAS9fzPjJuQ6JL3E =
Original file line number Diff line number Diff line change @@ -4,13 +4,14 @@ import (
4
4
"context"
5
5
"errors"
6
6
"fmt"
7
- "github.com/rancher/wrangler/pkg/clients"
8
7
"io"
9
8
"os"
10
9
"path/filepath"
11
10
"strings"
12
11
"sync"
13
12
13
+ "github.com/rancher/wrangler/pkg/clients"
14
+
14
15
"github.com/rancher/wrangler/pkg/name"
15
16
"k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"
16
17
apimachineerrors "k8s.io/apimachinery/pkg/api/errors"
You can’t perform that action at this time.
0 commit comments