mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-31 15:25:57 +00:00
tolerate empty .kubeconfig files
This commit is contained in:
parent
4c87805870
commit
03dde0fc46
@ -183,7 +183,12 @@ func LoadFromFile(filename string) (*clientcmdapi.Config, error) {
|
||||
// Load takes a byte slice and deserializes the contents into Config object.
|
||||
// Encapsulates deserialization without assuming the source is a file.
|
||||
func Load(data []byte) (*clientcmdapi.Config, error) {
|
||||
config := &clientcmdapi.Config{}
|
||||
config := clientcmdapi.NewConfig()
|
||||
// if there's no data in a file, return the default object instead of failing (DecodeInto reject empty input)
|
||||
if len(data) == 0 {
|
||||
return config, nil
|
||||
}
|
||||
|
||||
if err := clientcmdlatest.Codec.DecodeInto(data, config); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user