/* Copyright 2019 The Kubernetes Authors. 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 kubeconfig import ( "fmt" "k8s.io/client-go/rest" "k8s.io/client-go/tools/clientcmd" clientcmdapi "k8s.io/client-go/tools/clientcmd/api" "k8s.io/klog/v2" ) // KubeconfigBuilder builds a kubecfg file // This logic previously lives in the bash scripts (create-kubeconfig in cluster/common.sh) type KubeconfigBuilder struct { Server string Context string Namespace string User string KubeBearerToken string KubeUser string KubePassword string CACert []byte ClientCert []byte ClientKey []byte AuthenticationExec []string } // Create new KubeconfigBuilder func NewKubeconfigBuilder() *KubeconfigBuilder { return &KubeconfigBuilder{} } func (b *KubeconfigBuilder) DeleteKubeConfig(configAccess clientcmd.ConfigAccess) error { config, err := configAccess.GetStartingConfig() if err != nil { return fmt.Errorf("error loading kubeconfig: %v", err) } if config == nil || clientcmdapi.IsConfigEmpty(config) { klog.V(2).Info("kubeconfig is empty") return nil } delete(config.Clusters, b.Context) delete(config.AuthInfos, b.Context) delete(config.AuthInfos, fmt.Sprintf("%s-basic-auth", b.Context)) delete(config.Contexts, b.Context) if config.CurrentContext == b.Context { config.CurrentContext = "" } if err := clientcmd.ModifyConfig(configAccess, *config, false); err != nil { return fmt.Errorf("error writing kubeconfig: %v", err) } fmt.Printf("Deleted kubectl config for %s\n", b.Context) return nil } // Create new Rest Client func (c *KubeconfigBuilder) BuildRestConfig() (*rest.Config, error) { restConfig := &rest.Config{ Host: c.Server, } restConfig.CAData = c.CACert restConfig.CertData = c.ClientCert restConfig.KeyData = c.ClientKey // username/password or bearer token may be set, but not both if c.KubeBearerToken != "" { restConfig.BearerToken = c.KubeBearerToken } else { restConfig.Username = c.KubeUser restConfig.Password = c.KubePassword } return restConfig, nil } // Write out a new kubeconfig func (b *KubeconfigBuilder) WriteKubecfg(configAccess clientcmd.ConfigAccess) error { config, err := configAccess.GetStartingConfig() if err != nil { return fmt.Errorf("error reading kubeconfig: %v", err) } if config == nil { config = &clientcmdapi.Config{} } { cluster := config.Clusters[b.Context] if cluster == nil { cluster = clientcmdapi.NewCluster() } cluster.Server = b.Server cluster.CertificateAuthorityData = b.CACert if config.Clusters == nil { config.Clusters = make(map[string]*clientcmdapi.Cluster) } config.Clusters[b.Context] = cluster } // If the user has the same name as the context, it is the admin user if b.User == b.Context { authInfo := config.AuthInfos[b.Context] if authInfo == nil { authInfo = clientcmdapi.NewAuthInfo() } if b.KubeBearerToken != "" { authInfo.Token = b.KubeBearerToken } else if b.KubeUser != "" && b.KubePassword != "" { authInfo.Username = b.KubeUser authInfo.Password = b.KubePassword } if b.ClientCert != nil && b.ClientKey != nil { authInfo.ClientCertificate = "" authInfo.ClientCertificateData = b.ClientCert authInfo.ClientKey = "" authInfo.ClientKeyData = b.ClientKey } if len(b.AuthenticationExec) != 0 { authInfo.Exec = &clientcmdapi.ExecConfig{ APIVersion: "client.authentication.k8s.io/v1beta1", Command: b.AuthenticationExec[0], Args: b.AuthenticationExec[1:], } } if config.AuthInfos == nil { config.AuthInfos = make(map[string]*clientcmdapi.AuthInfo) } config.AuthInfos[b.Context] = authInfo } else if b.User != "" { if config.AuthInfos[b.User] == nil { return fmt.Errorf("could not find user %q", b.User) } } // If we have a bearer token, also create a credential entry with basic auth // so that it is easy to discover the basic auth password for your cluster // to use in a web browser. if b.KubeUser != "" && b.KubePassword != "" { name := b.Context + "-basic-auth" authInfo := config.AuthInfos[name] if authInfo == nil { authInfo = clientcmdapi.NewAuthInfo() } authInfo.Username = b.KubeUser authInfo.Password = b.KubePassword if config.AuthInfos == nil { config.AuthInfos = make(map[string]*clientcmdapi.AuthInfo) } config.AuthInfos[name] = authInfo } { context := config.Contexts[b.Context] if context == nil { context = clientcmdapi.NewContext() } context.Cluster = b.Context if b.User != "" { context.AuthInfo = b.User } if b.Namespace != "" { context.Namespace = b.Namespace } if config.Contexts == nil { config.Contexts = make(map[string]*clientcmdapi.Context) } config.Contexts[b.Context] = context } config.CurrentContext = b.Context if err := clientcmd.ModifyConfig(configAccess, *config, true); err != nil { return err } fmt.Printf("kops has set your kubectl context to %s\n", b.Context) return nil }