Ryan Davis

Results 37 comments of Ryan Davis

In the example `nginx.conf`, the `include mime.types;` directive is saying that part of this config is in another file. If that file is missing, then `nginx.conf` isn't considered valid, because...

This line is the problem: > `crossplane.build(conf["config"])` The `build` function does not accept the whole config dict, it needs just the "parsed" data. The config dict has other metadata that's...

Looks like `AddLink` is no longer experimental now that https://github.com/open-telemetry/opentelemetry-specification/pull/3887 went through. I have a few batching scenarios where I'd like one trace for the batch, and then separate trace...

The only workaround I found was to delete files in the local cache directory. I was using the local cache in a github action, and running into problems with the...

I'd like to close this issue based on https://github.com/hashicorp/terraform-provider-azurerm/pull/25400. These skus map to azure marketplace plan names, and we use the [private plan](https://learn.microsoft.com/en-us/marketplace/private-plans) feature to make customized plan names that...

That looks great, very extensible.

is this still alive?

> I think both these examples will make it tricky for anyone using Crossplane to modify NGINX configs unless we also provide some tooling to manage this. Definitely. The LSP...

We did find a workaround using the fixed [`service.Client.FilterBlobs`](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/storage/[email protected]/service#Client.FilterBlobs) from #19742 and adding a `@container` clause to our filter query: ```go cred, err := azidentity.NewDefaultAzureCredential(nil) client, err := azblob.NewClient("MY STORAGE...