chartify icon indicating copy to clipboard operation
chartify copied to clipboard

Convert K8s manifests/Kustomization into Helm Chart

Results 11 chartify issues
Sort by recently updated
recently updated
newest added

Bumps [helm.sh/helm/v3](https://github.com/helm/helm) from 3.14.4 to 3.15.1. Release notes Sourced from helm.sh/helm/v3's releases. Helm v3.15.1 is a patch release. The Helm application source is the same as 3.15.0. The 3.15.0 builds...

dependencies
go

Hello, everyone! I tried to use the tool, but I'm a little confused. In the Makefile, I don't see any build section, and in the readme, there are no instructions...

question

You can run kustomize commands with kubectl like this: ```sh kubectl kustomize ... ``` Either fall back automatically to the kubectl built-in kustomize, or allow the user to select it.

https://github.com/helmfile/helmfile/issues/928

Hello, I have a need for a transformer that patch a complex yaml configuration (nodeSelector) in multiple template of a chart. So I figure a kustomize transformer might solve this...

see: https://github.com/kubernetes-sigs/kustomize/blob/master/examples/inlinePatch.md

Currently the arguments that are passed during a chartify of a kustomization build are `build --enable-alpha-plugins --load-restrictor=LoadRestrictionsNone --enable-helm --helm-command=helm` For plugins like ksops https://github.com/viaduct-ai/kustomize-sops need to pass extra arg --enable-exec....

enhancement

This PR implements Kustomize-style patches support for chartify, adding a unified `patches` field that can handle both Strategic Merge Patches and JSON Patches with automatic type detection. ## Overview The...

This PR adds support for passing extra arguments to the `kustomize build` command, which is needed for kustomize plugins like [ksops](https://github.com/viaduct-ai/kustomize-sops) that require additional flags such as `--enable-exec`. ## Changes...

This PR addresses the confusion around building and using the chartify tool by adding comprehensive build targets and documentation that were missing from the repository. ## Changes Made ### Makefile...