home.social
  1. @zas Also, KIC has _great_ support for the (even the preview stuff like ) as far as I can tell.

    I haven't tried it, because BYOCNI made it harder to switch off , and I have a talk to do ;-)

    docs.konghq.com/kubernetes-ing

  2. @zas Yeah, I've been trying to set up an with using the exclusively instead of my and it's tricky, not because of the "BYOCNI" part, but because *most* helm charts still don't support Gateway -- but do support Ingress.

    Sadly, the project got so sidetracked supporting vendor extensions that the current version can't even generate plain HTTP Routes from ingresses unless you're using @istiomesh

  3. Has anyone had problems since this week with New-AzApiManagementApiRevision?

    Something like this?
    github.com/Azure/azure-powersh

  4. This graphapi vulnerability (seriously, phpinfo, in 2023?) is one of those things that only affect a fraction of users, but if you're affected, you'd better have already addressed it, because the is live.

    arstechnica.com/security/2023/

  5. The GitHub "actions/runner-images" project has been insisting they are just sticking with "LTS" for a year now.

    PowerShell 7.4 GA is out and is the new LTS release.

    github.com/actions/runner-imag

    Since 7.2 doesn't expire until November, my bet is they not do anything for several months, at least.

    Anyone betting against me?

    P.S. I'm using in my builds, so I can build and test with the versions of I want to support.

    earthly.dev/

  6. @thorstenbutz I am using (via chocolatey), and the global tool to get with etc.

    # new, elevated window
    choco update miniconda dotnet-sdk -y

    # new, elevated window
    $ENV:PATH += ';C:\tools\miniconda3\Scripts'
    (& "conda.exe" "shell.powershell" "hook") -join "`n" | Invoke-Expression

    # conda init powershell
    conda install jupyter
    dotnet tool install -g Microsoft.dotnet-interactive
    dotnet interactive jupyter install

    # Double-check:
    jupyter kernelspec list

  7. @[email protected] wait, does provide their SDK without a redistribution license?

  8. I don't know if I'm learning syntax or just making a collection of usable queries, but here's one for yaml from today.

    To pull the config for the user(s) with "prod" in the name:

    yq '.users.[] | select(.name|contains("prod"))' $home\.kube\config

    That's github.com/mikefarah/yq

    doesn't (yet) support _all_ of jq's syntax, but it supports everything I've needed, and it works on yaml AS WELL AS on json...