We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The published standalone schema for helmrelease-helm-v2beta1.json will flag a release using a chartRef instead of a chart as invalid.
Example helmrelease
apiVersion: helm.toolkit.fluxcd.io/v2beta1 kind: HelmRelease metadata: name: external-dns namespace: external-dns spec: chartRef: kind: OCIRepository name: external-dns namespace: flux-system interval: 15m timeout: 5m releaseName: external-dns values: ...
validation json should allow either chart or chartref
So
"spec": { ... "required": [ "chart", "interval" ], }
becomes
"spec": { ... "required": [ "interval" ], "oneOf": [ { "required": [ "chart" ] }, { "required":[ "chartRef" ] } ], }
No response
N/A
v2.4.0
The text was updated successfully, but these errors were encountered:
The chartRef is only supposed in v2
chartRef
Sorry, something went wrong.
No branches or pull requests
Describe the bug
The published standalone schema for helmrelease-helm-v2beta1.json will flag a release using a chartRef instead of a chart as invalid.
Steps to reproduce
Example helmrelease
Expected behavior
validation json should allow either chart or chartref
So
becomes
Screenshots and recordings
No response
OS / Distro
N/A
Flux version
v2.4.0
Flux check
N/A
Git provider
No response
Container Registry provider
No response
Additional context
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: