We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 29fd804 + b4caec7 commit 5dc4c97Copy full SHA for 5dc4c97
cmd/openshift-install/main.go
@@ -13,6 +13,7 @@ import (
13
terminal "golang.org/x/term"
14
"k8s.io/klog"
15
klogv2 "k8s.io/klog/v2"
16
+ ctrl "sigs.k8s.io/controller-runtime"
17
"sigs.k8s.io/controller-runtime/pkg/manager/signals"
18
19
"github.com/openshift/installer/cmd/openshift-install/command"
@@ -33,6 +34,8 @@ func main() {
33
34
fsv2.Set("stderrthreshold", "4")
35
klogv2.SetOutput(io.Discard)
36
37
+ ctrl.SetLogger(klogv2.Background())
38
+
39
installerMain()
40
}
41
0 commit comments