kops/node-authorizer/pkg/utils/misc.go

57 lines
1.3 KiB
Go

/*
Copyright 2018 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 utils
import (
crypto_rand "crypto/rand"
"encoding/hex"
"os"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
)
// GetKubernetesClient returns a kubernetes api client for us
func GetKubernetesClient() (kubernetes.Interface, error) {
config, err := rest.InClusterConfig()
if err != nil {
return nil, err
}
return kubernetes.NewForConfig(config)
}
// FileExists checks if the file exists
func FileExists(filename string) bool {
if _, err := os.Stat(filename); !os.IsNotExist(err) {
return true
}
return false
}
// RandomBytes generates some random bytes
func RandomBytes(length int) (string, error) {
b := make([]byte, length)
_, err := crypto_rand.Read(b)
if err != nil {
return "", err
}
return hex.EncodeToString(b), nil
}