Aspire issue link
No response
Overview
Summary
Suggesting the addition of two Google Cloud integrations to the CommunityToolkit:
- Google Cloud Pub/Sub
- Google Cloud Storage
Both are widely used in GCP-based environments and currently have no coverage
in the toolkit.
I have working community implementations for both in my open-source project:
MVFC.Aspire.Helpers. The specific docs are below:
Happy to contribute if there's interest.
Usage example
PubSub
using Aspire.Hosting;
using MVFC.Aspire.Helpers.GcpPubSub;
var builder = DistributedApplication.CreateBuilder(args);
var messageConfig = new MessageConfig(
TopicName: "test-topic",
SubscriptionName: "test-subscription",
PushEndpoint: "/api/pub-sub-exit")
{
DeadLetterTopic = "test-dead-letter-topic",
MaxDeliveryAttempts = 5,
AckDeadlineSeconds = 300,
};
var pubSubConfig = new PubSubConfig(
projectId: "test-project",
messageConfig: messageConfig);
var gcpPubSub = builder.AddGcpPubSub("gcp-pubsub")
.WithPubSubConfigs([pubSubConfig])
.WithWaitTimeout(secondsDelay: 5);
var ui = builder.AddGcpPubSubUI("pubsub-ui")
.WithReference(gcpPubSub)
.WaitFor(gcpPubSub);
builder.AddProject<Projects.MVFC_Aspire_Helpers_Playground_Api>("api-example")
.WithReference(gcpPubSub)
.WaitFor(gcpPubSub);
await builder.Build().RunAsync();
CloudStorage
using Aspire.Hosting;
using MVFC.Aspire.Helpers.CloudStorage;
var builder = DistributedApplication.CreateBuilder(args);
var cloudStorage = builder.AddCloudStorage("cloud-storage")
.WithBucketFolder("./bucket-data");
builder.AddProject<Projects.MVFC_Aspire_Helpers_Playground_Api>("api-example")
.WithReference(cloudStorage)
.WaitFor(cloudStorage);
await builder.Build().RunAsync();
Additional context
No response
Help us help you
Yes, but only if others can assist
Aspire issue link
No response
Overview
Summary
Suggesting the addition of two Google Cloud integrations to the CommunityToolkit:
Both are widely used in GCP-based environments and currently have no coverage
in the toolkit.
I have working community implementations for both in my open-source project:
MVFC.Aspire.Helpers. The specific docs are below:
Happy to contribute if there's interest.
Usage example
PubSub
CloudStorage
Additional context
No response
Help us help you
Yes, but only if others can assist