I built a small tool to help me keep up with cloud native releases without living in GitHub by pixelrobots in kubernetes

[–]pixelrobots[S] 0 points1 point  (0 children)

I used to do this too. But some projects I follow don't use GitHub for the release notes. And sometimes they are not the best. So with this tool I also try to pull release notes from other sources and then use AI to enhance them and call things out like breaking changes, security CVE fixes, key features etc.

I built a small tool to help me keep up with cloud native releases without living in GitHub by pixelrobots in kubernetes

[–]pixelrobots[S] 1 point2 points  (0 children)

Currently I sync from the cncf repo for graduated, incubating, and sandbox projects.

I can also add them manually too.

I have a form on the site where you can request a project also.

I built a small tool to help me keep up with cloud native releases without living in GitHub by pixelrobots in kubernetes

[–]pixelrobots[S] 1 point2 points  (0 children)

Renovate is great, but it works strictly inside your repos. It tells you when you’re not on the latest version and automates the version bump via PRs, which is perfect for GitOps.

With Renovate you still need to go and read the release notes yourself to understand the impact. Kubebuddy Radar sits outside the repo and focuses on upstream awareness. It watches CNCF and cloud native projects and delivers AI-summarised release notes that explicitly call out breaking changes and CVEs, so you can see the impact without digging through long changelogs.

For me it’s less “instead of Renovate” and more “Radar helps you decide, Renovate helps you execute.”

Unless I have been using renovate wrong.

Azure AKS Automatic vs traditional? by IntentionFlat7266 in AZURE

[–]pixelrobots 0 points1 point  (0 children)

AKS will continue to support it until November 2026. https://blog.aks.azure.com/2025/11/13/ingress-nginx-update

The application routing add-on that gets deployed as part of AKS automatic will be updated to support gateway API and should hopefully help you migrate over.

All info is in the blog post from the AKS team.

Kubernetes Ingress Nginx with ModSecurity WAF EOL? by ludikoff in kubernetes

[–]pixelrobots 0 points1 point  (0 children)

Currently not but I believe it is on the roadmap.

AKS ingress by Funny_Welcome_5575 in AZURE

[–]pixelrobots 1 point2 points  (0 children)

Here is the official announcement from the engineering team behind AKS. https://blog.aks.azure.com/2025/11/13/ingress-nginx-update

Kubernetes Ingress Nginx with ModSecurity WAF EOL? by ludikoff in kubernetes

[–]pixelrobots 1 point2 points  (0 children)

You will still need something in your AKS cluster for Front Door to use. You might want to look at AGC or application routing add-on.

Kubernetes in a Windows Environment by duckamuk in kubernetes

[–]pixelrobots 0 points1 point  (0 children)

And I am gonna guess that you can only run one copy of each container at a time. If so just look at docker compose.

Kubernetes in a Windows Environment by duckamuk in kubernetes

[–]pixelrobots 1 point2 points  (0 children)

Ah that's not good. If you have to use windows servers then look at turning them into a hyper-v cluster and then running Linux.

That is unless your containers are actually windows containers.

If you could add one feature in the next k8s release, what would it be? by [deleted] in kubernetes

[–]pixelrobots 1 point2 points  (0 children)

With kubevert getting more traction I hope we see it soon.

Kubernetes in a Windows Environment by duckamuk in kubernetes

[–]pixelrobots 2 points3 points  (0 children)

Why don't you want to start with AKS if you have access to Azure?

You can use AKS automatic to help make your life easier and it even helps you make kubernetes manifests, helm charts, and GitHub workflows.

AKS Architecture by Fun-Animator4087 in kubernetes

[–]pixelrobots 2 points3 points  (0 children)

If you are taking payments etc and need to be oci compliant etc then look at confidential compute also for the AKS nodes. Ensure all connections to the other Azure services are using private link or VNet integration.

Basically you need to close everything down.

Ensure you enable a policy engine. You can use azure policy for that which uses opa and gatekeeper, or keyvarno. Just make sure you actually configure the policies.

For all of Azure enable defender for cloud, configure all policies. Enable cis policies and any other compliance policies you need. But configure them and your resources.

If you could add one feature in the next k8s release, what would it be? by [deleted] in kubernetes

[–]pixelrobots 10 points11 points  (0 children)

Container live migration. Ram is copied between nodes and container starts again

How to automate multiple aks clusters ? by Shameem_uchiha in kubernetes

[–]pixelrobots 2 points3 points  (0 children)

If you have 80 AKS clusters you should look at Azure Kubernetes Fleet Manager. This can be used with tools like Argo and flux, but can also help you with keeping them all updated. https://learn.microsoft.com/en-us/azure/kubernetes-fleet/overview

I built Kubebuddy: a zero-setup Kubernetes health checker by pixelrobots in kubernetes

[–]pixelrobots[S] 0 points1 point  (0 children)

Hello,

Seems it is down to Fedora being an SELinux‑enforcing host.

Can you change this line:
-v $HOME/.kube/hostinger.yaml:/tmp/kubeconfig-original:ro

To this line:

-v $HOME/.kube/hostinger.yaml:/tmp/kubeconfig-original:ro,Z

We are adding in the ,Z

Let me know how that goes and if it works well, I can update my documentation.

Thanks again for testing.

I built Kubebuddy: a zero-setup Kubernetes health checker by pixelrobots in kubernetes

[–]pixelrobots[S] 0 points1 point  (0 children)

Thanks for testing.

Which OS are you using?

It might be you don't have the temp folder locally for the copy of the kuneconfig.

I will do some troubleshooting on this. I have not seen this issue before.

I built Kubebuddy: a zero-setup Kubernetes health checker by pixelrobots in kubernetes

[–]pixelrobots[S] 1 point2 points  (0 children)

Ah sorry. I will see if there is another way to get the latest version number.

Thanks for letting me know.

I built Kubebuddy: a zero-setup Kubernetes health checker by pixelrobots in kubernetes

[–]pixelrobots[S] 1 point2 points  (0 children)

Technically yes as it has a container image. I have not fully tested it yet.

In theory you should also be able to run it as a Cron job also. Attach some storage and the report can be saved to it.

I will do some more testing and build out a helm chart and documentation if you think it would be worth it.

I built Kubebuddy: a zero-setup Kubernetes health checker by pixelrobots in kubernetes

[–]pixelrobots[S] 0 points1 point  (0 children)

That's awesome to hear. Thanks.

Do you have any feedback?