Created
July 9, 2021 04:25
-
-
Save kshitijcode/c7fd61343592ddbbf46e313c6f4829ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: dapr.io/v1alpha1 | |
| kind: Component | |
| metadata: | |
| name: mongo | |
| spec: | |
| type: state.mongodb | |
| version: v1 | |
| metadata: | |
| - name: host | |
| secretKeyRef: | |
| name: MONGO_HOST | |
| - name: username | |
| secretKeyRef: | |
| name: MONGO_ROOT_USERNAME | |
| - name: password | |
| secretKeyRef: | |
| name: MONGO_ROOT_PASSWORD | |
| - name: databaseName | |
| value: admin | |
| scopes: | |
| - savestate-service | |
| auth: | |
| secretStore: envvar-secret-store |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment