aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristian Aune <kkraune@users.noreply.github.com>2023-11-13 09:10:17 +0100
committerGitHub <noreply@github.com>2023-11-13 09:10:17 +0100
commit26285c69cd996e05040b2d147e48d36b9a0ad648 (patch)
treec637a02ec0171787d1c832ec92eda190cbe281ae
parentd89ef46334c9b6771d18822e23eec1a657952b01 (diff)
parent31b57b40dad7690ddd0ea3dc19d1d2775c7a2291 (diff)
Merge pull request #29316 from vespa-engine/ean/pointers-to-doc-in-prod-init
Add link to production deployment
-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
}