Merge branch 'master' into reenable-parallel-deployment-in-ci

This commit is contained in:
Willy Kloucek
2022-05-09 11:52:55 +02:00
21 changed files with 169 additions and 149 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ func InitCommand(cfg *config.Config) *cli.Command {
insecureFlag := c.String("insecure")
insecure := false
if insecureFlag == "ask" {
answer := strings.ToLower(stringPrompt("Do you want to configure oCIS with certificate checking disabled?\n This is not recommended for public instances! [yes | no = default]"))
answer := strings.ToLower(stringPrompt("Do you want to configure Infinite Scale with certificate checking disabled?\n This is not recommended for public instances! [yes | no = default]"))
if answer == "yes" || answer == "y" {
insecure = true
}