diff --git a/README.md b/README.md index a1c5d77..0a99573 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ See `scripts/local-gateway` for details on how this is done, the `scripts/local- # Running in Kubernetes - Quick guide -#### [📃 SUB-SECTION: Deployment guide for Kubernetes](./deploy/) +#### [📃 Extra Doc: Deployment guide for Kubernetes](./deploy/) # Running Locally - Quick guide @@ -262,7 +262,7 @@ The default mode of operation for the Dapr Store is in "demo mode" where there i Optionally Dapr store can be configured utilise the [Microsoft identity platform](https://docs.microsoft.com/en-us/azure/active-directory/develop/) (aka Microsoft Entra ID) as an identity provider. This then supports real user sign-in, and securing of the APIs. -#### [📃 SECTION: Full details on security, identity & authentication](./docs/auth-identity/) +#### [📃 Extra Doc: Security, identity & authentication](./docs/auth-identity/) # Configuration @@ -300,7 +300,7 @@ Frontend host config: ## Dapr Components -#### [📃 SECTION: Details of the Dapr components used by the application and how to configure them.](components/) +#### [📃 Extra Doc: Dapr components used and how to configure them.](components/) # Concepts and Terms diff --git a/deploy/helm/daprstore/README.md b/deploy/helm/daprstore/README.md index 9e7f695..e3b8117 100644 --- a/deploy/helm/daprstore/README.md +++ b/deploy/helm/daprstore/README.md @@ -20,7 +20,7 @@ A reference application showcasing the use of Dapr | frontendHost.replicas | int | `1` | Dapr store frontend host replica count | | image.pullSecrets | list | `[]` | Any pullsecrets that are required to pull the image | | image.registry | string | `"ghcr.io"` | Image registry, only change if you're using your own images | -| image.repo | string | `"benc-uk/azure-samples"` | Image repository | +| image.repo | string | `"azure-samples/dapr-store"` | Image repository | | image.tag | string | `"latest"` | Image tag | | ingress.certIssuer | string | `nil` | Cert manager issuer, leave unset to run in insecure mode | | ingress.certName | string | `nil` | Set this to enable TLS, leave unset to run in insecure mode | diff --git a/deploy/helm/daprstore/values.yaml b/deploy/helm/daprstore/values.yaml index beda614..63791c7 100644 --- a/deploy/helm/daprstore/values.yaml +++ b/deploy/helm/daprstore/values.yaml @@ -6,7 +6,7 @@ image: # -- Image registry, only change if you're using your own images registry: ghcr.io # -- Image repository - repo: benc-uk/azure-samples + repo: azure-samples/dapr-store # -- Image tag tag: latest # -- Any pullsecrets that are required to pull the image diff --git a/deploy/readme.md b/deploy/readme.md index fdb05f9..d67733f 100644 --- a/deploy/readme.md +++ b/deploy/readme.md @@ -5,7 +5,7 @@ This is a brief guide to deploying Dapr Store to Kubernetes. Assumptions: - kubectl is installed, and configured to access your Kubernetes cluster -- dapr CLI is installed - https://docs.dapr.io/getting-started/install-dapr-cli/ +- Dapr CLI is installed - https://docs.dapr.io/getting-started/install-dapr-cli/ - helm is installed - https://helm.sh/docs/intro/install/ This guide does not cover more advanced deployment scenarios such as deploying behind a DNS name, or with HTTPS enabled or with used identity enabled.