Fix various typos in pgk/cloudprovider,dns,kubectl

This commit is contained in:
Jedrzej Nowak
2016-08-30 23:46:06 +02:00
parent 3fd14d97fb
commit 9e2abd4b02
12 changed files with 13 additions and 13 deletions

View File

@@ -74,7 +74,7 @@ func configFromEnv() (*CSConfig, bool) {
cfg.Global.Zone = os.Getenv("CS_ZONE")
// It is save to ignore the error here. If the input cannot be parsed SSLNoVerify
// will still be a bool with it's zero value (false) which is the expected default.
// will still be a bool with its zero value (false) which is the expected default.
cfg.Global.SSLNoVerify, _ = strconv.ParseBool(os.Getenv("CS_SSL_NO_VERIFY"))
// Check if we have the minimum required info to be able to connect to CloudStack.