Update default namespace for pinniped-concierge to match install-pinniped-concierge.yaml

This commit is contained in:
Michael Nelson 2020-11-05 17:29:43 +11:00
parent 9bb9402e89
commit 57a2dc9fc1
2 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ type getKubeConfigCommand struct {
func newGetKubeConfigCommand() *getKubeConfigCommand { func newGetKubeConfigCommand() *getKubeConfigCommand {
return &getKubeConfigCommand{ return &getKubeConfigCommand{
flags: getKubeConfigFlags{ flags: getKubeConfigFlags{
namespace: "pinniped", namespace: "pinniped-concierge",
}, },
getPathToSelf: os.Executable, getPathToSelf: os.Executable,
kubeClientCreator: func(restConfig *rest.Config) (pinnipedclientset.Interface, error) { kubeClientCreator: func(restConfig *rest.Config) (pinnipedclientset.Interface, error) {

View File

@ -35,7 +35,7 @@ var (
-h, --help help for get-kubeconfig -h, --help help for get-kubeconfig
--kubeconfig string Path to the kubeconfig file --kubeconfig string Path to the kubeconfig file
--kubeconfig-context string Kubeconfig context override --kubeconfig-context string Kubeconfig context override
--pinniped-namespace string Namespace in which Pinniped was installed (default "pinniped") --pinniped-namespace string Namespace in which Pinniped was installed (default "pinniped-concierge")
--token string Credential to include in the resulting kubeconfig output (Required) --token string Credential to include in the resulting kubeconfig output (Required)
`) `)
@ -66,7 +66,7 @@ var (
-h, --help help for get-kubeconfig -h, --help help for get-kubeconfig
--kubeconfig string Path to the kubeconfig file --kubeconfig string Path to the kubeconfig file
--kubeconfig-context string Kubeconfig context override --kubeconfig-context string Kubeconfig context override
--pinniped-namespace string Namespace in which Pinniped was installed (default "pinniped") --pinniped-namespace string Namespace in which Pinniped was installed (default "pinniped-concierge")
--token string Credential to include in the resulting kubeconfig output (Required) --token string Credential to include in the resulting kubeconfig output (Required)
`) `)
) )