Trey Hendon
Trey Hendon
We were having the same issue. Updating [chromium-setup.sh](https://github.com/TIBCOSoftware/js-docker/blob/master/scripts/chromium-setup.sh#L30) by adding `apt-get update` before line 30 in our forked private repo fixed it. From searching the repo, this seems to be...
Odd @mbfrahry wouldn't you know that I'm not getting that error consistently now either now that I fixed some casing issues for other assets ( #16076 ). I'm scratching my...
Sure, I'll give it a try. We were able to get our production stuff out the door after 3.0 updates, so I'll try one of our non-prod environments tomorrow starting...
I suspect this is an issue with any `azurefile` Storage. We are using AKS dynamic PVCs with no issue, but we're using `managed-premium` storage class. Azure File is SMB 3.0...
Hey, thanks for this! We're getting our Dremio Prod up and going in k8s and want to have metrics (and use this chart as-is). Any chance this will get resolved...
Hey all, just checking in. I'm trying to get the connection string from the database configuration. Having access to Polymath would allow me to grab it very easily.
Sorry, was away for a few days. Here's a simple console app that will show the differences in the path between 3.0.0.2 and 3.1.0. ``` using System.Text.Json; using Json.Patch; JsonDocument...
Sorry about that, how's this? ``` [Test] public void CreatePatch3() { var initial = JsonDocument.Parse("{\"spec\":{\"replicas\":0,\"selector\":{\"matchLabels\":{\"app\":\"myapp\"}},\"template\":{\"metadata\":{\"creationTimestamp\":null,\"labels\":{\"app\":\"myapp\"},\"annotations\":{\"kubectl.kubernetes.io/restartedAt\":\"1719861246\",\"date\":\"1719861246\"}}}}}"); var expected = JsonDocument.Parse("{\"spec\":{\"replicas\":0,\"selector\":{\"matchLabels\":{\"app\":\"myapp\"}},\"template\":{\"metadata\":{\"creationTimestamp\":null,\"labels\":{\"app\":\"myapp\"},\"annotations\":{\"kubectl.kubernetes.io/restartedAt\":\"\",\"date\":\"1719925004\"}}}}}"); var patchExpected = JsonSerializer.Deserialize( "[{\"op\":\"replace\",\"path\":\"/spec/template/metadata/annotations/kubectl.kubernetes.io~1restartedAt\",\"value\":\"\"},{\"op\":\"replace\",\"path\":\"/spec/template/metadata/annotations/date\",\"value\":\"1719925004\"}]", TestEnvironment.SerializerOptions ); var patch = initial.CreatePatch(expected,...
We successfully use VaultSharp with .NET 8 in multiple projects. (Microsoft is trying to maintain backwards compatibility in the .NET Core family so packages like this should "just work".) That...
I've used this SDK in AKS for years with no issues creating my client - starting back in .net 5, through .net 6, and now .net8. My only difference to...