summaryrefslogtreecommitdiffstats
path: root/client/go/internal/cli/cmd/prod.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/internal/cli/cmd/prod.go')
-rw-r--r--client/go/internal/cli/cmd/prod.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/go/internal/cli/cmd/prod.go b/client/go/internal/cli/cmd/prod.go
index 496d1f27e3b..9e78b299e4b 100644
--- a/client/go/internal/cli/cmd/prod.go
+++ b/client/go/internal/cli/cmd/prod.go
@@ -315,7 +315,7 @@ func promptNodeCount(cli *CLI, stdin *bufio.Reader, clusterID string, nodeCount
validator := func(input string) error {
min, _, err := xml.ParseNodeCount(input)
if min < 2 {
- return fmt.Errorf("at least 2 nodes are required for all clusters in a production environment")
+ return fmt.Errorf("at least 2 nodes are required for all clusters in a production environment.\nSee https://cloud.vespa.ai/en/production-deployment for more details.")
}
return err
}