mirror of
https://github.com/ahmetb/kubectx.git
synced 2025-07-10 22:03:02 +00:00
* feat(kubens): added force flag to switch namespaces even if it doesn't exist * Merged lines * fixed README.md and flags.go * updated flags.go, flags_test.go
115 lines
3.2 KiB
Go
115 lines
3.2 KiB
Go
// Copyright 2021 Google LLC
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"os"
|
|
|
|
"github.com/pkg/errors"
|
|
errors2 "k8s.io/apimachinery/pkg/api/errors"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"github.com/ahmetb/kubectx/internal/kubeconfig"
|
|
"github.com/ahmetb/kubectx/internal/printer"
|
|
)
|
|
|
|
type SwitchOp struct {
|
|
Target string // '-' for back and forth, or NAME
|
|
Force bool // force switch even if the namespace doesn't exist
|
|
}
|
|
|
|
func (s SwitchOp) Run(_, stderr io.Writer) error {
|
|
kc := new(kubeconfig.Kubeconfig).WithLoader(kubeconfig.DefaultLoader)
|
|
defer kc.Close()
|
|
if err := kc.Parse(); err != nil {
|
|
return errors.Wrap(err, "kubeconfig error")
|
|
}
|
|
|
|
toNS, err := switchNamespace(kc, s.Target, s.Force)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = printer.Success(stderr, "Active namespace is \"%s\"", printer.SuccessColor.Sprint(toNS))
|
|
return err
|
|
}
|
|
|
|
func switchNamespace(kc *kubeconfig.Kubeconfig, ns string, force bool) (string, error) {
|
|
ctx := kc.GetCurrentContext()
|
|
if ctx == "" {
|
|
return "", errors.New("current-context is not set")
|
|
}
|
|
curNS, err := kc.NamespaceOfContext(ctx)
|
|
if err != nil {
|
|
return "", errors.Wrap(err, "failed to get current namespace")
|
|
}
|
|
|
|
f := NewNSFile(ctx)
|
|
prev, err := f.Load()
|
|
if err != nil {
|
|
return "", errors.Wrap(err, "failed to load previous namespace from file")
|
|
}
|
|
|
|
if ns == "-" {
|
|
if prev == "" {
|
|
return "", errors.Errorf("No previous namespace found for current context (%s)", ctx)
|
|
}
|
|
ns = prev
|
|
}
|
|
|
|
if !force {
|
|
ok, err := namespaceExists(kc, ns)
|
|
if err != nil {
|
|
return "", errors.Wrap(err, "failed to query if namespace exists (is cluster accessible?)")
|
|
}
|
|
if !ok {
|
|
return "", errors.Errorf("no namespace exists with name \"%s\"", ns)
|
|
}
|
|
}
|
|
|
|
if err := kc.SetNamespace(ctx, ns); err != nil {
|
|
return "", errors.Wrapf(err, "failed to change to namespace \"%s\"", ns)
|
|
}
|
|
if err := kc.Save(); err != nil {
|
|
return "", errors.Wrap(err, "failed to save kubeconfig file")
|
|
}
|
|
if curNS != ns {
|
|
if err := f.Save(curNS); err != nil {
|
|
return "", errors.Wrap(err, "failed to save the previous namespace to file")
|
|
}
|
|
}
|
|
return ns, nil
|
|
}
|
|
|
|
func namespaceExists(kc *kubeconfig.Kubeconfig, ns string) (bool, error) {
|
|
// for tests
|
|
if os.Getenv("_MOCK_NAMESPACES") != "" {
|
|
return ns == "ns1" || ns == "ns2", nil
|
|
}
|
|
|
|
clientset, err := newKubernetesClientSet(kc)
|
|
if err != nil {
|
|
return false, errors.Wrap(err, "failed to initialize k8s REST client")
|
|
}
|
|
|
|
namespace, err := clientset.CoreV1().Namespaces().Get(context.Background(), ns, metav1.GetOptions{})
|
|
if errors2.IsNotFound(err) {
|
|
return false, nil
|
|
}
|
|
return namespace != nil, errors.Wrapf(err, "failed to query "+
|
|
"namespace %q from k8s API", ns)
|
|
}
|