From d7199d7ba57313dba42a11ea64a21e5d3d88b15a Mon Sep 17 00:00:00 2001 From: iwilltry42 Date: Tue, 14 Jul 2020 12:37:01 +0200 Subject: [PATCH] createCluster: fix description --- cmd/create/createCluster.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cmd/create/createCluster.go b/cmd/create/createCluster.go index 2dbd5177..61d8a6b8 100644 --- a/cmd/create/createCluster.go +++ b/cmd/create/createCluster.go @@ -42,9 +42,10 @@ import ( const createClusterDescription = ` Create a new k3s cluster with containerized nodes (k3s in docker). -Every cluster will consist of at least 2 containers: - - 1 master node container (k3s) - - 1 loadbalancer container as the entrypoint to the cluster (nginx) +Every cluster will consist of one or more containers: + - 1 (or more) master node container (k3s) + - (optionally) 1 loadbalancer container as the entrypoint to the cluster (nginx) + - (optionally) 1 (or more) worker node containers (k3s) ` // NewCmdCreateCluster returns a new cobra command