Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Cp Helm Charts | 742 | 21 days ago | 265 | apache-2.0 | Mustache | |||||
The Confluent Platform Helm charts enable you to deploy Confluent Platform services on Kubernetes for development, test, and proof of concept environments. | ||||||||||
Kubeview | 716 | 21 days ago | 30 | mit | Vue | |||||
Kubernetes cluster visualiser and graphical explorer | ||||||||||
Skywalking Kubernetes | 409 | 2 days ago | apache-2.0 | Smarty | ||||||
Apache SkyWalking Kubernetes Deployment Helm Chart | ||||||||||
K8s Wait For | 404 | 4 months ago | 4 | mit | Shell | |||||
A simple script that allows to wait for a k8s service, job or pods to enter a desired state | ||||||||||
Airflow Chart | 246 | 3 days ago | 15 | other | Python | |||||
A Helm chart to install Apache Airflow on Kubernetes | ||||||||||
Datadog Operator | 184 | 1 | 4 days ago | 70 | February 02, 2023 | 62 | apache-2.0 | Go | ||
Datadog Agent Kubernetes Operator | ||||||||||
Helm Kubernetes Services | 165 | 10 days ago | 24 | apache-2.0 | Go | |||||
Helm charts that can be used to package your applications into production ready deployments for Kubernetes. https://www.gruntwork.io | ||||||||||
Pulsar Helm Chart | 164 | 12 days ago | 85 | apache-2.0 | Shell | |||||
Official Apache Pulsar Helm Chart | ||||||||||
Acs Deployment | 151 | 6 days ago | 13 | apache-2.0 | Smarty | |||||
Alfresco Content Services containerized deployment (Helm and Docker Compose) | ||||||||||
Meilisearch Kubernetes | 131 | 15 days ago | 7 | mit | Mustache | |||||
Meilisearch on Kubernetes Helm charts and manifests |
A generic Helm chart for your application deployments.
Because no-one can remember the Kubernetes yaml syntax.
Add the OneChart Helm repository:
helm repo add onechart https://chart.onechart.dev
Check the generated Kubernetes yaml:
helm template my-release onechart/onechart \
--set image.repository=nginx \
--set image.tag=1.19.3
Deploy with Helm:
helm install my-release onechart/onechart \
--set image.repository=nginx \
--set image.tag=1.19.3
See all Examples
Thank you for your interest in contributing to the Gimlet project.
Below are some guidelines and best practices for contributing to this repository:
If you are running a fork of OneChart and would like to upstream a feature, please open a pull request for it.
If you are planning to add a new feature to OneChart, please open an issue for it first. Helm charts are prone to having too many features, and OneChart want to keep the supported use-cases in-check. Proposed features have to be generally applicable, targeting newcomers to the Kubernetes ecosystem.
Development of OneChart does not differ from developing a regular Helm chart.
The source for OneChart is under charts/onechart
where you can locate the Chart.yaml
, values.yaml
and the templates.
We write unit tests for our helm charts. Pull requests are only accepted with proper test coverage.
The tests are located under charts/onechart/test
and use the https://github.com/DataDog/helm-unittest.git Helm plugin to run the tests.
For installation, refer to the CI workflow at .github/workflows/build.yaml
.
make all
to test and package the Helm chart.
The chart archives are put under docs/
together with the Helm repository manifest (index.yaml)
It is then served with Github Pages on https://chart.onechart.dev
Github Actions is used to automate the make calls on git tag events.