This repository was archived by the owner on May 17, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ require (
6
6
github.com/Masterminds/semver v1.4.2
7
7
github.com/golang/mock v0.0.0-20160127222235-bd3c8e81be01
8
8
github.com/heptiolabs/healthcheck v0.0.0-20180807145615-6ff867650f40
9
+ github.com/sirupsen/logrus v1.4.1
9
10
github.com/spf13/cobra v0.0.5
10
11
gopkg.in/square/go-jose.v2 v2.3.1
11
12
k8s.io/api v0.0.0
Original file line number Diff line number Diff line change @@ -11,13 +11,15 @@ import (
11
11
"time"
12
12
13
13
"github.com/Masterminds/semver"
14
- "github.com/jetstack/kube-oidc-proxy/pkg/utils "
14
+ log "github.com/sirupsen/logrus "
15
15
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
16
16
"k8s.io/client-go/kubernetes"
17
17
"k8s.io/client-go/tools/clientcmd"
18
18
"k8s.io/klog"
19
19
"sigs.k8s.io/kind/pkg/cluster"
20
20
"sigs.k8s.io/kind/pkg/cluster/config"
21
+
22
+ "github.com/jetstack/kube-oidc-proxy/pkg/utils"
21
23
)
22
24
23
25
const (
@@ -89,6 +91,8 @@ kind: ClusterConfiguration
89
91
conf .Nodes [i ].Image = nodeImage
90
92
}
91
93
94
+ log .SetLevel (log .DebugLevel )
95
+
92
96
// create kind cluster
93
97
klog .Infof ("creating kind cluster '%s'" , clusterContext .Name ())
94
98
if err := clusterContext .Create (conf ); err != nil {
You can’t perform that action at this time.
0 commit comments