Robert Cannon

Results 50 comments of Robert Cannon

My use cases are: I have an Application that references a folder-based chart that has our Certificate declarations. That Application will fail unless the Application that installs the cert-manager helm...

It looks like this is being tracked on the roadmap in this issue. Please go upvote! https://github.com/argoproj/argo-cd/issues/3517

Thanks. Got it working!

I think making the App public is a bug somewhere. You can add a private App to the list via the UI and it works correctly.

Any update on this? We have been using this resource on our 2008R2 computers for some time and I went to rebuild them and this bug cropped up. I think...

BTW, this bug would be better named 'xGroup resource broken on Windows 2008 R2'

OK, here is the fix. The Test-IsNanoServer function should be: ``` function Test-IsNanoServer { [OutputType([Boolean])] [CmdletBinding()] param () return (Get-CimInstance -ClassName 'Win32_OperatingSystem' -Property 'OperatingSystemSKU' | %{ $_.OperatingSystemSKU }) -in @(143,144,149)...

The new code runs in 170ms vs 4700ms for the first run. Subsequent calls are much faster for both versions at 15ms-30ms.

This was broken with the 6.1.0.0 release with this commit: https://github.com/PowerShell/xPSDesiredStateConfiguration/commit/c17339aa17d4a3b69904886e950e67022fb5032a The 6.0.0.0 release resolved my issue. I will try to do a PR with my new function, but it...

The type of OperatingSystemSKU is an uint32, so there would never be more than one value: ``` uint32 NumberOfUsers; uint32 OperatingSystemSKU; string Organization; string OSArchitecture; ```