Skip to content

Commit 3cc3f37

Browse files
committed
Merge branch 'v1.9' of https://github.com/dapr/docs into v1.9
2 parents 0f67669 + e1e001f commit 3cc3f37

File tree

17 files changed

+2108
-28
lines changed

17 files changed

+2108
-28
lines changed

daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,13 +155,14 @@ Learn more in the [declarative and programmatic subscriptions doc]({{< ref subsc
155155
Create a file named `subscription.yaml` and paste the following:
156156

157157
```yaml
158-
apiVersion: dapr.io/v1alpha1
158+
apiVersion: dapr.io/v2alpha1
159159
kind: Subscription
160160
metadata:
161161
name: order-pub-sub
162162
spec:
163163
topic: orders
164-
route: /checkout
164+
routes:
165+
default: /checkout
165166
pubsubname: order-pub-sub
166167
scopes:
167168
- orderprocessing

daprdocs/content/en/developing-applications/integrations/Azure/azure-kubernetes-service-extension.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,4 @@ dapr-sidecar-injector-9555889bc-rpjwl 1/1 Running 0 1h
106106
dapr-sidecar-injector-9555889bc-rqjgt 1/1 Running 0 1h
107107
```
108108

109-
For further information such as configuration options and targeting specific versions of Dapr, see the official [AKS Dapr Extension Docs](https://docs.microsoft.com/azure/aks/dapr).
109+
For more information about configuration options and targeting specific Dapr versions, see the official [AKS Dapr Extension Docs](https://docs.microsoft.com/azure/aks/dapr).

daprdocs/content/en/getting-started/quickstarts/_index.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,4 @@ Hit the ground running with our Dapr quickstarts, complete with code samples aim
2727
| [State Management]({{< ref statemanagement-quickstart.md >}}) | Store a service's data as key/value pairs in supported state stores. |
2828
| [Bindings]({{< ref bindings-quickstart.md >}}) | Work with external systems using input bindings to respond to events and output bindings to call operations. |
2929
| [Secrets Management]({{< ref secrets-quickstart.md >}}) | Securely fetch secrets. |
30-
| Actors | Coming soon. |
31-
| Observability | Coming soon. |
32-
| Configuration | Coming soon. |
33-
| Distributed Lock | Coming soon. |
30+
| [Resiliency]({{< ref resiliency >}}) | Define and apply fault-tolerance policies to your Dapr API requests. |
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
type: docs
3+
title: "Resiliency Quickstarts"
4+
linkTitle: "Resiliency"
5+
weight: 100
6+
description: "Get started with Dapr's resiliency component"
7+
---

0 commit comments

Comments
 (0)