diff --git a/best-practices/troubleshooting/common_issues.md b/best-practices/troubleshooting/common_issues.md index 8069a9653..cea2c0259 100644 --- a/best-practices/troubleshooting/common_issues.md +++ b/best-practices/troubleshooting/common_issues.md @@ -32,7 +32,7 @@ spec: spec: containers: - name: node - image: actionscore.azurecr.io/samples/nodeapp + image: dapriosamples/hello-k8s-node ports: - containerPort: 3000 imagePullPolicy: Always diff --git a/best-practices/troubleshooting/logs.md b/best-practices/troubleshooting/logs.md index d8ea8f73f..929ed4c5b 100644 --- a/best-practices/troubleshooting/logs.md +++ b/best-practices/troubleshooting/logs.md @@ -78,16 +78,15 @@ When deploying Dapr to your cluster using Helm, you can individually set the log #### Setting the Operator log level -`helm install actionscore/dapr-operator -n dapr --namespace dapr-system --set dapr_operator.logLevel=error` +`helm install dapr/dapr --name dapr --namespace dapr-system --set dapr_operator.logLevel=error` #### Setting the Placement Service log level -`helm install actionscore/dapr-placement -n dapr --namespace dapr-system --set dapr_placement.logLevel=error` +`helm install dapr/dapr --name dapr --namespace dapr-system --set dapr_placement.logLevel=error` #### Setting the Sidecar Injector log level -`helm install actionscore/dapr-sidecar-injector -n dapr --namespace dapr-system --set dapr_sidecar_injector.logLevel=error` - +`helm install dapr/dapr --name dapr --namespace dapr-system --set dapr_sidecar_injector.logLevel=error` ## Viewing Logs on Kubernetes diff --git a/getting-started/environment-setup.md b/getting-started/environment-setup.md index 83d9ce6e5..f53c6d29f 100644 --- a/getting-started/environment-setup.md +++ b/getting-started/environment-setup.md @@ -35,7 +35,7 @@ Downloading binaries and setting up components ✅ Success! Dapr is up and running ``` -To see that Dapr has been installed successful, from a command prompt run the `docker ps` command and check that the `actionscore.azurecr.io/dapr:latest` and `redis` container images are both running. +To see that Dapr has been installed successful, from a command prompt run the `docker ps` command and check that the `daprio/dapr:latest` and `redis` container images are both running. ### Install a specific runtime version @@ -94,15 +94,14 @@ You can install Dapr to Kubernetes cluster using a Helm chart. 2. Add Azure Container Registry as a Helm repo ```bash -helm repo add dapr https://actionscore.azurecr.io/helm/v1/repo \ ---username 390401a7-d7a6-46da-b10f-3ceff7a1cdd5 \ ---password 485b3522-59bb-4152-8938-ca8b90108af6 +helm repo add dapr https://daprio.azurecr.io/helm/v1/repo +helm repo update ``` 3. Install the Dapr chart on your cluster in the `dapr-system` namespace ```bash -helm install dapr/dapr-operator --name dapr --namespace dapr-system +helm install dapr/dapr --name dapr --namespace dapr-system ``` #### Verify installation