The io/ioutil package has been deprecated as of Go 1.16 [1]. This commit replaces the existing io/ioutil functions with their new definitions in io and os packages. [1]: https://golang.org/doc/go1.16#ioutil Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
66 lines
1.8 KiB
Go
66 lines
1.8 KiB
Go
/*
|
|
Copyright 2020 KubeSphere 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 cluster
|
|
|
|
import (
|
|
"os"
|
|
|
|
"k8s.io/client-go/rest"
|
|
"k8s.io/client-go/tools/clientcmd"
|
|
"k8s.io/client-go/tools/clientcmd/api"
|
|
)
|
|
|
|
func buildKubeconfigFromRestConfig(config *rest.Config) ([]byte, error) {
|
|
apiConfig := api.NewConfig()
|
|
|
|
apiCluster := &api.Cluster{
|
|
Server: config.Host,
|
|
CertificateAuthorityData: config.CAData,
|
|
}
|
|
|
|
// generated kubeconfig will be used by cluster federation, CAFile is not
|
|
// accepted by kubefed, so we need read CAFile
|
|
if len(apiCluster.CertificateAuthorityData) == 0 && len(config.CAFile) != 0 {
|
|
caData, err := os.ReadFile(config.CAFile)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
apiCluster.CertificateAuthorityData = caData
|
|
}
|
|
|
|
apiConfig.Clusters["kubernetes"] = apiCluster
|
|
|
|
apiConfig.AuthInfos["kubernetes-admin"] = &api.AuthInfo{
|
|
ClientCertificateData: config.CertData,
|
|
ClientKeyData: config.KeyData,
|
|
Token: config.BearerToken,
|
|
TokenFile: config.BearerTokenFile,
|
|
Username: config.Username,
|
|
Password: config.Password,
|
|
}
|
|
|
|
apiConfig.Contexts["kubernetes-admin@kubernetes"] = &api.Context{
|
|
Cluster: "kubernetes",
|
|
AuthInfo: "kubernetes-admin",
|
|
}
|
|
|
|
apiConfig.CurrentContext = "kubernetes-admin@kubernetes"
|
|
|
|
return clientcmd.Write(*apiConfig)
|
|
}
|