mirror of https://github.com/dapr/docs.git
Merge branch 'website' into patch-2
This commit is contained in:
commit
951aa71d1e
|
|
@ -6,7 +6,7 @@ weight: 2000
|
||||||
description: "Use Redis as a backend state store"
|
description: "Use Redis as a backend state store"
|
||||||
---
|
---
|
||||||
|
|
||||||
Dapr doesn't transform state values while saving and retrieving states. Dapr requires all state store implementations to abide by a certain key format scheme (see [Dapr state management spec]({{<ref state_api.md>}}). You can directly interact with the underlying store to manipulate the state data, such querying states, creating aggregated views and making backups.
|
Dapr doesn't transform state values while saving and retrieving states. Dapr requires all state store implementations to abide by a certain key format scheme (see [Dapr state management spec]({{<ref state_api.md>}}). You can directly interact with the underlying store to manipulate the state data, such as querying states, creating aggregated views and making backups.
|
||||||
|
|
||||||
>**NOTE:** The following examples uses Redis CLI against a Redis store using the default Dapr state store implementation.
|
>**NOTE:** The following examples uses Redis CLI against a Redis store using the default Dapr state store implementation.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -102,16 +102,16 @@ description: How to configure Azure Key Vault and Kubernetes to use Azure Manage
|
||||||
name: [you managed identity name]
|
name: [you managed identity name]
|
||||||
spec:
|
spec:
|
||||||
type: 0
|
type: 0
|
||||||
ResourceID: [you managed identity id]
|
resourceID: [you managed identity id]
|
||||||
ClientID: [you managed identity Client ID]
|
clientID: [you managed identity Client ID]
|
||||||
---
|
---
|
||||||
apiVersion: "aadpodidentity.k8s.io/v1"
|
apiVersion: "aadpodidentity.k8s.io/v1"
|
||||||
kind: AzureIdentityBinding
|
kind: AzureIdentityBinding
|
||||||
metadata:
|
metadata:
|
||||||
name: [you managed identity name]-identity-binding
|
name: [you managed identity name]-identity-binding
|
||||||
spec:
|
spec:
|
||||||
AzureIdentity: [you managed identity name]
|
azureIdentity: [you managed identity name]
|
||||||
Selector: [you managed identity selector]
|
selector: [you managed identity selector]
|
||||||
```
|
```
|
||||||
|
|
||||||
10. Deploy the azure-identity-config.yaml:
|
10. Deploy the azure-identity-config.yaml:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue