David Fowler

Results 1251 comments of David Fowler

I'd like to make sure we get this in for Aspire 9.

First, resolve the merge conflicts. Second, @eerhardt I think we should split out the azure resource tests, but I'm not sure it should be done as part of this PR....

That sounds great, how would it work? Is there a container that runs the storage explorer that exposes an http endpoint?

```C# var builder = DistributedApplication.CreateBuilder(args); var storage = builder.AddAzureStorage("storage") .RunAsEmulator(config => config.WithDataVolume()) .AddBlobs("blobs"); builder.AddContainer("storage-explorer", "sebagomez/azurestorageexplorer") .WithHttpEndpoint(targetPort: 8080) .WithEnvironment(e => { e.EnvironmentVariables["AZURE_STORAGE_CONNECTIONSTRING"] = new ConnectionStringReference(storage.Resource, optional: false); }) .ExcludeFromManifest(); builder.Build().Run(); ```...

Filed an issue https://github.com/dotnet/aspire/issues/6234. Closing this as there's no locally hostable storage explorer that we would embed by default.

I think they don’t make much sense for publish but we do want to give people control. Maybe that means a cli arg that maps to ASPIRE_ENVIRONMENT which sets the...

Can we expose this too https://github.com/dotnet/aspire/issues/11534