From fb7bfe5e7006c52c390ee91769d4206ada807d5f Mon Sep 17 00:00:00 2001 From: Daniel Gerlag Date: Sat, 19 Oct 2024 12:07:19 -0700 Subject: [PATCH] Update default-source-providers.yaml --- .../resources/default-source-providers.yaml | 61 ++++++++++++++++++- 1 file changed, 60 insertions(+), 1 deletion(-) diff --git a/cli/service/resources/default-source-providers.yaml b/cli/service/resources/default-source-providers.yaml index 889d0c7b..28012f94 100644 --- a/cli/service/resources/default-source-providers.yaml +++ b/cli/service/resources/default-source-providers.yaml @@ -146,4 +146,63 @@ spec: partitionKey: type: string required: - - partitionKey \ No newline at end of file + - partitionKey +--- +apiVersion: v1 +kind: SourceProvider +name: Dataverse +spec: + services: + proxy: + image: source-dataverse-proxy + dapr: + app-port: "80" + reactivator: + image: source-dataverse-reactivator + config_schema: + type: object + properties: + endpoint: + type: string + clientId: + type: string + secret: + type: string + entities: + type: array + interval: + type: integer + default: 60 + required: + - endpoint + - clientId + - secret + - entities +--- +apiVersion: v1 +kind: SourceProvider +name: EventHub +spec: + services: + proxy: + image: source-eventhub-proxy + dapr: + app-port: "80" + reactivator: + image: source-eventhub-reactivator + config_schema: + type: object + properties: + connectionString: + type: string + consumerGroup: + type: string + default: "$Default" + eventHubs: + type: array + bootstrapWindow: + type: integer + default: 0 + required: + - connectionString + - eventHubs