From a6bd29ccc8ed0de32dd479c76a58b3496e770194 Mon Sep 17 00:00:00 2001 From: sneakernuts <671942+sneakernuts@users.noreply.github.com> Date: Fri, 22 May 2026 14:37:32 -0600 Subject: [PATCH 1/2] spelling Signed-off-by: sneakernuts <671942+sneakernuts@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a23b666..e59d41a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ `chartify` converts anything to a Helm chart and modifies a chart in-place so that you don't need to fork an upstream helm chart only for a few custom requirements. -`chartify` is a Go library that is primarily used by [helmfile](https://github.com/helmfile/helmfile) to let it convert Kuberntes resource YAMLs or [kustomize](https://github.com/kubernetes-sigs/kustomize) into a [helm](https://github.com/helm/helm) chart, and apply various modifications to the resulting chart. +`chartify` is a Go library that is primarily used by [helmfile](https://github.com/helmfile/helmfile) to let it convert Kubernetes resource YAMLs or [kustomize](https://github.com/kubernetes-sigs/kustomize) into a [helm](https://github.com/helm/helm) chart, and apply various modifications to the resulting chart. `chartify` is intended to be run immediately before running `helm upgrade --install`. For example, instead of forking a helm chart, you should be able to prepend a `chartify` step into your deployment job in your CD pipeline. `chartify` isn't intended to create a fork of a chart. The output of `chartify` is a helm chart that is pre-rendered with all the helm values provided to `chartify`. From bb0dc8fd973c540ada801ea6697f3c291a0dfaee Mon Sep 17 00:00:00 2001 From: sneakernuts <671942+sneakernuts@users.noreply.github.com> Date: Fri, 22 May 2026 14:47:45 -0600 Subject: [PATCH 2/2] its Signed-off-by: sneakernuts <671942+sneakernuts@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e59d41a..ee0c084 100644 --- a/README.md +++ b/README.md @@ -42,12 +42,12 @@ go build -o chartreposerver ./cmd/chartreposerver ## CLI -Beyond it's usage with helmfile, it also provides a basic CLI application that can be run independently. +Beyond its usage with helmfile, it also provides a basic CLI application that can be run independently. The simplest usage of the command is: ``` -$ chartify $RELEASE $CHART -o $OUTPUT_DIR +chartify $RELEASE $CHART -o $OUTPUT_DIR ``` Examples: