Update docs links

This commit is contained in:
Aaron Crawfis 2020-10-23 11:18:30 -07:00
parent e2e592943f
commit 4591a9d37b
5 changed files with 5 additions and 5 deletions

View File

@ -46,7 +46,7 @@ Before you file an issue, make sure you've checked the following:
- 👎 down-vote
1. For bugs
- Check it's not an environment issue. For example, if running on Kubernetes, make sure prerequisites are in place. (state stores, bindings, etc.)
- You have as much data as possible. This usually comes in the form of logs and/or stacktrace. If running on Kubernetes or other environment, look at the logs of the Dapr services (runtime, operator, placement service). More details on how to get logs can be found [here](https://github.com/dapr/docs/tree/master/best-practices/troubleshooting/logs.md).
- You have as much data as possible. This usually comes in the form of logs and/or stacktrace. If running on Kubernetes or other environment, look at the logs of the Dapr services (runtime, operator, placement service). More details on how to get logs can be found [here](https://docs.dapr.io/operations/troubleshooting/logs-troubleshooting/).
1. For proposals
- Many changes to the Dapr runtime may require changes to the API. In that case, the best place to discuss the potential feature is the main [Dapr repo](https://github.com/dapr/dapr).
- Other examples could include bindings, state stores or entirely new components.

View File

@ -185,7 +185,7 @@ The init command will install Dapr to a Kubernetes cluster. For more advanced us
$ dapr init -k
⌛ Making the jump to hyperspace...
Note: To install Dapr using Helm, see here: https://github.com/dapr/docs/blob/master/getting-started/environment-setup.md#using-helm-advanced
Note: To install Dapr using Helm, see here: https://docs.dapr.io/getting-started/install-dapr/#install-with-helm-advanced
✅ Deploying the Dapr control plane to your cluster...
✅ Success! Dapr has been installed to namespace dapr-system. To verify, run "dapr status -k" in your terminal. To get started, go here: https://aka.ms/dapr-getting-started

View File

@ -37,7 +37,7 @@ var InitCmd = &cobra.Command{
print.PendingStatusEvent(os.Stdout, "Making the jump to hyperspace...")
if kubernetesMode {
print.InfoStatusEvent(os.Stdout, "Note: To install Dapr using Helm, see here: https://github.com/dapr/docs/blob/master/getting-started/environment-setup.md#using-helm-advanced\n")
print.InfoStatusEvent(os.Stdout, "Note: To install Dapr using Helm, see here: https://docs.dapr.io/getting-started/install-dapr/#install-with-helm-advanced\n")
config := kubernetes.InitConfiguration{
Namespace: initNamespace,

View File

@ -97,5 +97,5 @@ if($UserPathEnvionmentVar -like '*dapr*') {
}
Write-Output "`r`nDapr CLI is installed successfully."
Write-Output "To get started with Dapr, please visit https://github.com/dapr/docs/tree/master/getting-started ."
Write-Output "To get started with Dapr, please visit https://docs.dapr.io/getting-started/ ."
Write-Output "Ensure that Docker Desktop is set to Linux containers mode when you run Dapr in self hosted mode."

View File

@ -161,7 +161,7 @@ cleanup() {
}
installCompleted() {
echo -e "\nTo get started with Dapr, please visit https://github.com/dapr/docs/tree/master/getting-started"
echo -e "\nTo get started with Dapr, please visit https://docs.dapr.io/getting-started/"
}
# -----------------------------------------------------------------------------