-
Couldn't load subscription status.
- Fork 308
Description
Describe the issue
The v3.4.0 release did not update the helm charts, resulting in flux not updating the HELM chart.
https://fluxcd.io/flux/components/source/helmcharts/#reconcile-strategy
When doing a release, all the HELM charts need to be updated if they got changed, including the version, appVersion and the version of the dependencies. Like it is done in the v3.3.0 tag. This is also commented to the chart files itself.
fluent-operator/charts/fluent-operator/charts/fluentd-crds/Chart.yaml
Lines 14 to 23 in ef3ec94
| # This is the chart version. This version number should be incremented each time you make changes | |
| # to the chart and its templates, including the app version. | |
| # Versions are expected to follow Semantic Versioning (https://semver.org/) | |
| version: 3.3.0 | |
| # This is the version number of the application being deployed. This version number should be | |
| # incremented each time you make changes to the application. Versions are not expected to | |
| # follow Semantic Versioning. They should reflect the version the application is using. | |
| # It is recommended to use it with quotes. | |
| appVersion: "3.3.0" |
| # This is the chart version. This version number should be incremented each time you make changes | |
| # to the chart and its templates, including the app version. | |
| # Versions are expected to follow Semantic Versioning (https://semver.org/) | |
| version: 3.3.0 | |
| # This is the version number of the application being deployed. This version number should be | |
| # incremented each time you make changes to the application. Versions are not expected to | |
| # follow Semantic Versioning. They should reflect the version the application is using. | |
| # It is recommended to use it with quotes. | |
| appVersion: "3.3.0" |
fluent-operator/charts/fluent-operator/Chart.yaml
Lines 9 to 26 in ef3ec94
| version: 3.3.0 | |
| appVersion: 3.3.0 | |
| icon: https://raw.githubusercontent.com/fluent/fluent-operator/master/docs/images/fluent-operator-icon.svg | |
| home: https://www.fluentd.org/ | |
| sources: | |
| - https://github.com/fluent/fluent-operator | |
| maintainers: | |
| - name: wenchajun | |
| email: dehaocheng@kubesphere.io | |
| dependencies: | |
| - name: fluent-bit-crds | |
| repository: "file://charts/fluent-bit-crds" | |
| version: 3.3.0 | |
| condition: fluentbit.crdsEnable | |
| - name: fluentd-crds | |
| repository: "file://charts/fluentd-crds" | |
| version: 3.3.0 | |
| condition: fluentd.crdsEnable |
To Reproduce
Use flux inside a k8s cluster and try to use the chart from this repo.
Expected behavior
-
Adjust the RELEASE.md, so when performing a release, all the chart
versionvalues get bumped.
One could argue that when nothing got changes for the CRD's a version change is not needed. Which is correct, but the versions of all the three charge would differ.
My suggestion to this is Adjust RELEASE.md to also bump the helm chart for a release #1619 -
Fix the v3.4.0 release by updating the mention values above and force pushing the tag or performing a patch release for fixing the chart versions.
My suggestion to this is charts: fix chart version and appVersion #1620
Your Environment
- Fluent Operator version:
- Container Runtime:
- Operating system:
- Kernel version:How did you install fluent operator?
No response
Additional context
No response