Merge branch 'master' into aacrawfi_docs

This commit is contained in:
Aaron Crawfis 2020-03-06 11:00:24 -08:00
commit 3994aab849
1 changed files with 19 additions and 0 deletions

View File

@ -6,6 +6,25 @@ In order to reference a secret, you need to set the `auth.secretStore` field to
When running in Kubernetes, if the `auth.secretStore` is empty, the Kubernetes secret store is assumed.
## Non default namespaces
If your Dapr enabled apps are using components that fetch secrets from non-default namespaces, apply the following resource to the namespace:
```yaml
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: dapr-secret-reader
subjects:
- kind: ServiceAccount
name: default
namespace: <YOUR-NAMESPACE-HERE>
roleRef:
kind: ClusterRole
name: secret-reader
apiGroup: rbac.authorization.k8s.io
```
## Examples
Using plain text: