We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cd2447 commit 8581cb0Copy full SHA for 8581cb0
1 file changed
pkg/devspace/clients/kubectl/client.go
@@ -63,6 +63,11 @@ func GetClientConfig() (*rest.Config, error) {
63
if err != nil {
64
log.Warnf("Couldn't update cloud provider %s information: %v", *config.Cluster.CloudProvider, err)
65
}
66
+
67
+ err = configutil.SaveConfig()
68
+ if err != nil {
69
+ return nil, fmt.Errorf("Error saving config: %v", err)
70
+ }
71
72
73
if (config.Cluster.UseKubeConfig != nil && *config.Cluster.UseKubeConfig) || config.Cluster.APIServer == nil {
0 commit comments