From 9d89a8dea420f4f0e2c9612209e641a03ffabc30 Mon Sep 17 00:00:00 2001 From: Joshua Casey Date: Fri, 22 Sep 2023 09:15:39 -0500 Subject: [PATCH] Shorten kubeconfigCommand func for lint funlen --- cmd/pinniped/cmd/kubeconfig.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/cmd/pinniped/cmd/kubeconfig.go b/cmd/pinniped/cmd/kubeconfig.go index a07abcde..1674c1bd 100644 --- a/cmd/pinniped/cmd/kubeconfig.go +++ b/cmd/pinniped/cmd/kubeconfig.go @@ -154,13 +154,14 @@ func kubeconfigCommand(deps kubeconfigDeps) *cobra.Command { f.StringVar(&flags.credentialCachePath, "credential-cache", "", "Path to cluster-specific credentials cache") f.StringVar(&flags.pinnipedCliPath, "pinniped-cli-path", "", "Full path or executable name for the Pinniped CLI binary to be embedded in the resulting kubeconfig output (e.g. 'pinniped') (default: full path of the binary used to execute this command)") f.StringVar(&flags.installHint, "install-hint", "The pinniped CLI does not appear to be installed. See https://get.pinniped.dev/cli for more details", "This text is shown to the user when the pinniped CLI is not installed.") - mustMarkHidden(cmd, "oidc-debug-session-cache") - // --oidc-skip-listen is mainly needed for testing. We'll leave it hidden until we have a non-testing use case. - mustMarkHidden(cmd, "oidc-skip-listen") + mustMarkHidden(cmd, + "oidc-debug-session-cache", + "oidc-skip-listen", // --oidc-skip-listen is mainly needed for testing. We'll leave it hidden until we have a non-testing use case. + "concierge-namespace", + ) mustMarkDeprecated(cmd, "concierge-namespace", "not needed anymore") - mustMarkHidden(cmd, "concierge-namespace") cmd.RunE = func(cmd *cobra.Command, args []string) error { if flags.outputPath != "" {