-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Providing Values via chartFileRef #4
Comments
Changing the apiVersion: helm.fluxcd.io/v2alpha1
kind: HelmRelease
metadata:
name: redis
namespace: cache
spec:
interval: 10m
releaseName: redis
chart:
name: redis
sourceRef:
kind: HelmRepository
name: stable
valuesFile: "values-production.yaml" # defaults to values.yaml One way to achieve this, would be for source-controller to overwrite the |
Would be nice to be able to use a values file outside of the chart tarball, which is in the same directory as the helmrelease file. At the moment i have to use third party tools like yq to do something like this: yq r /dir/helmrelease.yaml 'spec.values' | helm template . -f - |
We are not going to support this, as the |
Per the roadmap git chart sources are a non goal.
In deprecating this we also will be losing the the
chartFileRef
option for providing values.Some users (like myself) have used git chart sources specifically to enable this despite agreeing that chart repository is a better solution. Many public charts like redis are published with this method for differentiating environments. While it may be messy, It would be possible to include this functionality for chart repository sources as helm does download the tar.
The text was updated successfully, but these errors were encountered: