From 555dea8a78ee32773de4f19d6142bb7b93e0864c Mon Sep 17 00:00:00 2001 From: Andrew Seigner Date: Wed, 20 Oct 2021 09:29:03 -0700 Subject: [PATCH] Provide a link to the #buoyant-cloud Slack (#36) On `linkerd-buoyant install`, print a message to stderr pointing the user to the #buoyant-cloud Slack channel. ``` linkerd-buoyant install ... Agent manifest available at: https://buoyant.cloud/agent/buoyant-cloud-k8s-foo.yml Need help? Message us in the #buoyant-cloud Slack channel: https://linkerd.slack.com/archives/C01QSTM20BY ``` Signed-off-by: Andrew Seigner --- cli/cmd/install.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/cmd/install.go b/cli/cmd/install.go index dbb5536..43990c8 100644 --- a/cli/cmd/install.go +++ b/cli/cmd/install.go @@ -105,6 +105,8 @@ func install(ctx context.Context, cfg *config, client k8s.Client, openURL openUR fmt.Fprintf(cfg.stderr, "Agent manifest available at:\n%s\n\n", agentURL) + fmt.Fprint(cfg.stderr, "Need help? Message us in the #buoyant-cloud Slack channel:\nhttps://linkerd.slack.com/archives/C01QSTM20BY\n\n") + return nil }