Nxs-universal-chart – open-source tool to install applications into Kubernetes(github.com)
github.com
Nxs-universal-chart – open-source tool to install applications into Kubernetes
https://github.com/nixys
3 comments
Nice work, starred. Hit the same "every app needs the same 8 resources stitched together" problem in a recent project. We ended up generating manifests from a typed app spec rather than templating, but a universal chart is a more GitOps-native answer for Helm-first teams. Values validation and signed OCI releases are the right things to invest in early. Good luck with the release.
Why do you need a universal chart?
Usually deploying applications in Kubernetes means stitching together many resources, such as services, Ingress, secrets, monitoring, autoscaling, and more. So, engineers have to duplicate Helm charts, maintain custom templates and deal with inconsistent configurations across environments. A universal chart provides an entry point to deploy an application with all its infrastructure. It's a modular platform for Kubernetes and platform delivery, with a stronger focus on reliability, GitOps, and CI/CD.
Features
• Modular and extensible chart architecture • Strong values validation • GitOps-friendly rendering • Better testing and reliability • OCI distribution and signed releases
We would be grateful for your PRs and stars!