From 5be6a4e2b0a453bc474661484c2c5c3ba0a447f4 Mon Sep 17 00:00:00 2001 From: Prateek Nandle <56027872+Prateeknandle@users.noreply.github.com> Date: Thu, 5 May 2022 00:41:21 +0530 Subject: [PATCH] removed kubeconfig flags (#3744) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Prateeknandle Co-authored-by: Vyankatesh Kudtarkar Co-authored-by: Charles-Edouard Brétéché --- cmd/initContainer/main.go | 2 +- cmd/kyverno/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/initContainer/main.go b/cmd/initContainer/main.go index 0832a3d02f..bd2920871a 100644 --- a/cmd/initContainer/main.go +++ b/cmd/initContainer/main.go @@ -61,7 +61,6 @@ func main() { klog.InitFlags(nil) log.SetLogger(klogr.New().WithCallDepth(1)) // arguments - flag.StringVar(&kubeconfig, "kubeconfig", "", "Path to a kubeconfig. Only required if out-of-cluster.") flag.Float64Var(&clientRateLimitQPS, "clientRateLimitQPS", 0, "Configure the maximum QPS to the Kubernetes API server from Kyverno. Uses the client default if zero.") flag.IntVar(&clientRateLimitBurst, "clientRateLimitBurst", 0, "Configure the maximum burst for throttle. Uses the client default if zero.") if err := flag.Set("v", "2"); err != nil { @@ -73,6 +72,7 @@ func main() { // os signal handler stopCh := signal.SetupSignalHandler() // create client config + kubeconfig = "" clientConfig, err := config.CreateClientConfig(kubeconfig, clientRateLimitQPS, clientRateLimitBurst) if err != nil { setupLog.Error(err, "Failed to build kubeconfig") diff --git a/cmd/kyverno/main.go b/cmd/kyverno/main.go index 1d0c86b6dd..a371a354b0 100755 --- a/cmd/kyverno/main.go +++ b/cmd/kyverno/main.go @@ -74,7 +74,6 @@ func main() { log.SetLogger(klogr.New().WithCallDepth(1)) flag.IntVar(&webhookTimeout, "webhookTimeout", int(webhookconfig.DefaultWebhookTimeout), "Timeout for webhook configurations.") flag.IntVar(&genWorkers, "genWorkers", 10, "Workers for generate controller") - flag.StringVar(&kubeconfig, "kubeconfig", "", "Path to a kubeconfig. Only required if out-of-cluster.") flag.StringVar(&serverIP, "serverIP", "", "IP address where Kyverno controller runs. Only required if out-of-cluster.") flag.BoolVar(&profile, "profile", false, "Set this flag to 'true', to enable profiling.") flag.StringVar(&profilePort, "profilePort", "6060", "Enable profiling at given port, defaults to 6060.") @@ -98,6 +97,7 @@ func main() { cleanUp := make(chan struct{}) stopCh := signal.SetupSignalHandler() + kubeconfig = "" debug := serverIP != "" // clients