From 1ca91937763aba64c6f12995dce8913cebb300d0 Mon Sep 17 00:00:00 2001 From: iwilltry42 Date: Mon, 11 Nov 2019 09:33:41 +0100 Subject: [PATCH] add warning for multi-master setups --- cmd/create/createCluster.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/create/createCluster.go b/cmd/create/createCluster.go index 1f2b9d54..f1a04f79 100644 --- a/cmd/create/createCluster.go +++ b/cmd/create/createCluster.go @@ -94,9 +94,9 @@ func parseCreateClusterCmd(cmd *cobra.Command, args []string) (runtimes.Runtime, } // TODO: allow more than one master - // if masterCount > 1 { - // log.Fatalln("Only one master node supported right now!") - // } + if masterCount > 1 { + log.Warnln("Multi-Master is setup not fully implemented/supported right now!") + } // --workers workerCount, err := cmd.Flags().GetInt("workers")