mirror of https://github.com/dapr/cli.git
Updating dapr init -k installation message (#317)
* Updating dapr init -k installation message * Resolving code review comments.
This commit is contained in:
parent
69f95731f1
commit
43a4a9809e
|
@ -129,8 +129,8 @@ $ dapr init --kubernetes
|
||||||
⌛ Making the jump to hyperspace...
|
⌛ Making the jump to hyperspace...
|
||||||
ℹ️ Note: this installation is recommended for testing purposes. For production environments, please use Helm
|
ℹ️ Note: this installation is recommended for testing purposes. For production environments, please use Helm
|
||||||
|
|
||||||
✅ Deploying the Dapr Operator to your cluster...
|
✅ Deploying the Dapr control plane to your cluster...
|
||||||
✅ Success! Dapr has been installed. To verify, run 'kubectl get pods -w' in your terminal
|
✅ 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
|
#### Uninstall Dapr on Kubernetes
|
||||||
|
|
|
@ -36,7 +36,7 @@ var InitCmd = &cobra.Command{
|
||||||
print.FailureStatusEvent(os.Stdout, err.Error())
|
print.FailureStatusEvent(os.Stdout, err.Error())
|
||||||
return
|
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 {
|
} else {
|
||||||
dockerNetwork := viper.GetString("network")
|
dockerNetwork := viper.GetString("network")
|
||||||
standalone.Uninstall(true, dockerNetwork)
|
standalone.Uninstall(true, dockerNetwork)
|
||||||
|
|
|
@ -34,7 +34,7 @@ func Init() error {
|
||||||
|
|
||||||
var daprManifestPath string = "https://github.com/dapr/dapr/releases/download/" + version + "/dapr-operator.yaml"
|
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
|
var s *spinner.Spinner
|
||||||
|
|
||||||
if runtime.GOOS == "windows" {
|
if runtime.GOOS == "windows" {
|
||||||
|
|
Loading…
Reference in New Issue