Updating dapr init -k installation message (#317)

* Updating dapr init -k installation message

* Resolving code review comments.
This commit is contained in:
Shalabh Mohan Shrivastava 2020-04-08 17:04:54 -07:00 committed by GitHub
parent 69f95731f1
commit 43a4a9809e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -129,8 +129,8 @@ $ dapr init --kubernetes
⌛ Making the jump to hyperspace...
Note: this installation is recommended for testing purposes. For production environments, please use Helm
✅ Deploying the Dapr Operator to your cluster...
✅ Success! Dapr has been installed. To verify, run 'kubectl get pods -w' in your terminal
✅ Deploying the Dapr control plane to your cluster...
✅ Success! Dapr has been installed. To verify, run 'kubectl get pods -w' or 'dapr status -k' in your terminal. To get started, go here: https://aka.ms/dapr-getting-started
```
#### Uninstall Dapr on Kubernetes

View File

@ -36,7 +36,7 @@ var InitCmd = &cobra.Command{
print.FailureStatusEvent(os.Stdout, err.Error())
return
}
print.SuccessStatusEvent(os.Stdout, "Success! Dapr has been installed. To verify, run 'kubectl get pods -w' in your terminal. To get started, go here: https://aka.ms/dapr-getting-started")
print.SuccessStatusEvent(os.Stdout, "Success! Dapr has been installed. To verify, run 'kubectl get pods -w' or 'dapr status -k' in your terminal. To get started, go here: https://aka.ms/dapr-getting-started")
} else {
dockerNetwork := viper.GetString("network")
standalone.Uninstall(true, dockerNetwork)

View File

@ -34,7 +34,7 @@ func Init() error {
var daprManifestPath string = "https://github.com/dapr/dapr/releases/download/" + version + "/dapr-operator.yaml"
msg := "Deploying the Dapr Operator to your cluster..."
msg := "Deploying the Dapr control plane to your cluster..."
var s *spinner.Spinner
if runtime.GOOS == "windows" {