helmfile icon indicating copy to clipboard operation
helmfile copied to clipboard

Deploy Kubernetes Helm Charts

Results 162 helmfile issues
Sort by recently updated
recently updated
newest added

For example the following are possible in other tools - `kubectl --as=cluster-admin ...` - `helm --kube-as-user cluster-admin ...` - `k9s --as=cluster-admin ...` The benefits are outlined nicely [here](https://johnharris.io/2019/08/least-privilege-in-kubernetes-using-impersonation/) and the...

I'm running deployments of our app in our CI and obviously don't want to store a file with plain text passwords in it. I don't want to directly declare the...

let's say i have something along those lines : ``` values: - nodeSelector: nodeType: infra - nodeSelector: null ``` in the end, `nodeSelector` is not reset to `null`. is this...

question
blocked by external project

Hi, I tried `strategicMergePatches` do today, but It failed because `"kustomize": executable file not found in $PATH`. Since kubernetes 1.14, kustomize ist part of the kubectl command (kubectl kustomize). The...

Hello! We are using our own post-renderer with helm. It creates resources from JS files. We are basically writing charts using JavaScript. There are currently no easy way to integrate...

Is there any plan to work on fixing security vulnerabilities in published docker images? My organization is using XRay, which blocks images with high severity vulnerabilities, and this greatly reduces...

When I attempt to patch additional labels before deploying a resource derived from a CRD e.g., a `ServiceMonitor` from `monitoring.coreos.com/v1` then `helmfile template` complains with ``` in ./helmfile.yaml: [exit status...

When environment variables are used in helmfile.yaml definition, missing values are reported incorrectly. **How to reproduce the issue:** Following configuration files were used: helmfile.yaml ``` helmDefaults: cleanupOnFail: false atomic: false...

documentation

IMO it is related to https://github.com/roboll/helmfile/issues/2075 but have different way to discover. ## reproduce helmfile: ```yaml repositories: - name: huma url: ghcr.io/huma-engineering/helm-charts oci: true releases: - name: compose-operator namespace: compose-operator...

## Reproduce ### Start with a hemlfile.yaml ```yaml repositories: - name: jetstack url: https://charts.jetstack.io releases: - name: cert-manager namespace: cert-manager chart: jetstack/cert-manager version: v1.6.1 wait: true timeout: 300 atomic: true...