remove actionscore references (#129)

This commit is contained in:
Yaron Schneider 2019-10-15 18:37:29 -07:00 committed by GitHub
parent 0ea6fe1a26
commit 96c82fcb84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 10 deletions

View File

@ -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

View File

@ -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

View File

@ -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