Email or username:

Password:

Forgot your password?
Top-level
dorsk

@garritfra
```
helm template my-chart helm-repo/chart-name \
-f values.yaml \
--namespace my-namespace \
--include-crds \
| yq eval 'del(.metadata.labels["helm.sh/chart"], .metadata.labels["app.kubernetes.io/managed-by"], .spec.template.metadata.labels["helm.sh/chart"])' - > manifest.yaml
```
And then kustomization.yaml to override/complete and apply.
Defeats the purpose of helm but helm started this.

1 comment
Garrit 🏡🛠️

@dorsk we use Helm through Flux, which makes it nice and versionable. It's sad that this, or any other plain text CRD way, isn't the recommended way to install software through helm.

Go Up