-
Notifications
You must be signed in to change notification settings - Fork 478
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into add-ctx-state
- Loading branch information
Showing
18 changed files
with
2,143 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
33 changes: 33 additions & 0 deletions
33
tests/certification/bindings/azure/eventhubs/components/binding/consumer1/eventhubs.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: azure-single-partition-binding | ||
namespace: default | ||
spec: | ||
type: bindings.azure.eventhubs | ||
version: v1 | ||
metadata: | ||
- name: connectionString # Azure EventHubs connection string | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsConnectionString | ||
value: AzureEventHubsBindingsConnectionString | ||
- name: consumerGroup # EventHubs consumer group | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsConsumerGroup | ||
value: AzureEventHubsBindingsConsumerGroup | ||
- name: storageAccountName # Azure Storage Account Name | ||
secretKeyRef: | ||
name: AzureBlobStorageAccount | ||
value: AzureBlobStorageAccount | ||
- name: storageAccountKey # Azure Storage Account Key | ||
secretKeyRef: | ||
name: AzureBlobStorageAccessKey | ||
value: AzureBlobStorageAccessKey | ||
- name: storageContainerName # Azure Storage Container Name | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsContainer | ||
value: AzureEventHubsBindingsContainer | ||
- name: partitionID | ||
value: 0 | ||
auth: | ||
secretStore: envvar-secret-store |
9 changes: 9 additions & 0 deletions
9
tests/certification/bindings/azure/eventhubs/components/binding/consumer1/localsecrets.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: envvar-secret-store | ||
namespace: default | ||
spec: | ||
type: secretstores.local.env | ||
version: v1 | ||
metadata: |
31 changes: 31 additions & 0 deletions
31
.../certification/bindings/azure/eventhubs/components/binding/consumer2/eventhubs_input.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: azure-input-binding | ||
namespace: default | ||
spec: | ||
type: bindings.azure.eventhubs | ||
version: v1 | ||
metadata: | ||
- name: connectionString # Azure EventHubs connection string | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsConnectionString | ||
value: AzureEventHubsBindingsConnectionString | ||
- name: consumerGroup # EventHubs consumer group | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsConsumerGroup | ||
value: AzureEventHubsBindingsConsumerGroup | ||
- name: storageAccountName # Azure Storage Account Name | ||
secretKeyRef: | ||
name: AzureBlobStorageAccount | ||
value: AzureBlobStorageAccount | ||
- name: storageAccountKey # Azure Storage Account Key | ||
secretKeyRef: | ||
name: AzureBlobStorageAccessKey | ||
value: AzureBlobStorageAccessKey | ||
- name: storageContainerName # Azure Storage Container Name | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsContainer | ||
value: AzureEventHubsBindingsContainer | ||
auth: | ||
secretStore: envvar-secret-store |
31 changes: 31 additions & 0 deletions
31
...certification/bindings/azure/eventhubs/components/binding/consumer2/eventhubs_output.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: azure-output-binding | ||
namespace: default | ||
spec: | ||
type: bindings.azure.eventhubs | ||
version: v1 | ||
metadata: | ||
- name: connectionString # Azure EventHubs connection string | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsConnectionString | ||
value: AzureEventHubsBindingsConnectionString | ||
- name: consumerGroup # EventHubs consumer group | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsConsumerGroup | ||
value: AzureEventHubsBindingsConsumerGroup | ||
- name: storageAccountName # Azure Storage Account Name | ||
secretKeyRef: | ||
name: AzureBlobStorageAccount | ||
value: AzureBlobStorageAccount | ||
- name: storageAccountKey # Azure Storage Account Key | ||
secretKeyRef: | ||
name: AzureBlobStorageAccessKey | ||
value: AzureBlobStorageAccessKey | ||
- name: storageContainerName # Azure Storage Container Name | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsContainer | ||
value: AzureEventHubsBindingsContainer | ||
auth: | ||
secretStore: envvar-secret-store |
9 changes: 9 additions & 0 deletions
9
tests/certification/bindings/azure/eventhubs/components/binding/consumer2/localsecrets.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: envvar-secret-store | ||
namespace: default | ||
spec: | ||
type: secretstores.local.env | ||
version: v1 | ||
metadata: |
33 changes: 33 additions & 0 deletions
33
...ification/bindings/azure/eventhubs/components/binding/consumer3/eventhubs_partition0.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: azure-partition0-binding | ||
namespace: default | ||
spec: | ||
type: bindings.azure.eventhubs | ||
version: v1 | ||
metadata: | ||
- name: connectionString # Azure EventHubs connection string | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsConnectionString | ||
value: AzureEventHubsBindingsConnectionString | ||
- name: consumerGroup # EventHubs consumer group | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsConsumerGroup | ||
value: AzureEventHubsBindingsConsumerGroup | ||
- name: storageAccountName # Azure Storage Account Name | ||
secretKeyRef: | ||
name: AzureBlobStorageAccount | ||
value: AzureBlobStorageAccount | ||
- name: storageAccountKey # Azure Storage Account Key | ||
secretKeyRef: | ||
name: AzureBlobStorageAccessKey | ||
value: AzureBlobStorageAccessKey | ||
- name: storageContainerName # Azure Storage Container Name | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsContainer | ||
value: AzureEventHubsBindingsContainer | ||
- name: partitionID | ||
value: 0 | ||
auth: | ||
secretStore: envvar-secret-store |
34 changes: 34 additions & 0 deletions
34
...ification/bindings/azure/eventhubs/components/binding/consumer3/eventhubs_partition1.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: azure-partition1-binding | ||
namespace: default | ||
spec: | ||
type: bindings.azure.eventhubs | ||
version: v1 | ||
metadata: | ||
- name: connectionString # Azure EventHubs connection string | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsConnectionString | ||
value: AzureEventHubsBindingsConnectionString | ||
- name: consumerGroup # EventHubs consumer group | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsConsumerGroup | ||
value: AzureEventHubsBindingsConsumerGroup | ||
- name: storageAccountName # Azure Storage Account Name | ||
secretKeyRef: | ||
name: AzureBlobStorageAccount | ||
value: AzureBlobStorageAccount | ||
- name: storageAccountKey # Azure Storage Account Key | ||
secretKeyRef: | ||
name: AzureBlobStorageAccessKey | ||
value: AzureBlobStorageAccessKey | ||
- name: storageContainerName # Azure Storage Container Name | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsContainer | ||
value: AzureEventHubsBindingsContainer | ||
- name: partitionID | ||
value: 1 | ||
auth: | ||
secretStore: envvar-secret-store | ||
|
9 changes: 9 additions & 0 deletions
9
tests/certification/bindings/azure/eventhubs/components/binding/consumer3/localsecrets.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: envvar-secret-store | ||
namespace: default | ||
spec: | ||
type: secretstores.local.env | ||
version: v1 | ||
metadata: |
35 changes: 35 additions & 0 deletions
35
tests/certification/bindings/azure/eventhubs/components/binding/iothub/eventhubs.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: azure-eventhubs-binding | ||
namespace: default | ||
spec: | ||
type: bindings.azure.eventhubs | ||
version: v1 | ||
metadata: | ||
- name: connectionString | ||
secretKeyRef: | ||
name: AzureIotHubEventHubConnectionString | ||
key: AzureIotHubEventHubConnectionString | ||
- name: storageAccountName | ||
secretKeyRef: | ||
name: AzureBlobStorageAccount | ||
key: AzureBlobStorageAccount | ||
- name: storageAccountKey | ||
secretKeyRef: | ||
name: AzureBlobStorageAccessKey | ||
key: AzureBlobStorageAccessKey | ||
- name: storageContainerName | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsContainer | ||
key: AzureEventHubsBindingsContainer | ||
- name: iotHub | ||
secretKeyRef: | ||
name: AzureIotHubName | ||
key: AzureIotHubName | ||
- name: consumerGroup | ||
secretKeyRef: | ||
name: AzureIotHubBindingsConsumerGroup | ||
key: AzureIotHubBindingsConsumerGroup | ||
auth: | ||
secretStore: envvar-secret-store |
9 changes: 9 additions & 0 deletions
9
tests/certification/bindings/azure/eventhubs/components/binding/iothub/localsecrets.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: envvar-secret-store | ||
namespace: default | ||
spec: | ||
type: secretstores.local.env | ||
version: v1 | ||
metadata: |
55 changes: 55 additions & 0 deletions
55
...certification/bindings/azure/eventhubs/components/binding/serviceprincipal/eventhubs.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: azure-eventhubs-binding | ||
namespace: default | ||
spec: | ||
type: bindings.azure.eventhubs | ||
version: v1 | ||
metadata: | ||
- name: eventHubNamespace | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsNamespace | ||
key: AzureEventHubsBindingsNamespace | ||
- name: azureTenantId | ||
secretKeyRef: | ||
name: AzureCertificationTenantId | ||
key: AzureCertificationTenantId | ||
- name: azureClientId | ||
secretKeyRef: | ||
name: AzureCertificationServicePrincipalClientId | ||
key: AzureCertificationServicePrincipalClientId | ||
- name: azureClientSecret | ||
secretKeyRef: | ||
name: AzureCertificationServicePrincipalClientSecret | ||
key: AzureCertificationServicePrincipalClientSecret | ||
- name: resourceGroupName | ||
secretKeyRef: | ||
name: AzureResourceGroupName | ||
key: AzureResourceGroupName | ||
- name: subscriptionID | ||
secretKeyRef: | ||
name: AzureCertificationSubscriptionId | ||
key: AzureCertificationSubscriptionId | ||
- name: storageAccountName | ||
secretKeyRef: | ||
name: AzureBlobStorageAccount | ||
key: AzureBlobStorageAccount | ||
- name: storageAccountKey | ||
secretKeyRef: | ||
name: AzureBlobStorageAccessKey | ||
key: AzureBlobStorageAccessKey | ||
- name: storageContainerName | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsContainer | ||
key: AzureEventHubsBindingsContainer | ||
- name: eventHub | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsHub | ||
key: AzureEventHubsBindingsHub | ||
- name: consumerGroup | ||
secretKeyRef: | ||
name: AzureEventHubsBindingsConsumerGroup | ||
key: AzureEventHubsBindingsConsumerGroup | ||
auth: | ||
secretStore: envvar-secret-store |
9 changes: 9 additions & 0 deletions
9
...tification/bindings/azure/eventhubs/components/binding/serviceprincipal/localsecrets.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: envvar-secret-store | ||
namespace: default | ||
spec: | ||
type: secretstores.local.env | ||
version: v1 | ||
metadata: |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Configuration | ||
metadata: | ||
name: eventhubsconfig | ||
spec: | ||
features: |
Oops, something went wrong.