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
Using helm-charts without a proper version connection is troublesome.
Look into new ways of releasing this component.
Start using release versions which will build.
DoD Tag, Release and chart version are connected To make it possible to rollback
If you run version x of Helm you are sure it is version y of the app
The text was updated successfully, but these errors were encountered:
I have tested the following which I think might be a good solution for us:
Prod Service version: ">=1.0.0 < 2.0.0" Dev service version: ">= 1.0.0-0 < 2.0.0-0"
version: ">=1.0.0 < 2.0.0"
version: ">= 1.0.0-0 < 2.0.0-0"
Prod release is tagged with 1.X.X Dev release is tagged with 1.X.X-nightly.TIMESTAMP
1.X.X
1.X.X-nightly.TIMESTAMP
Interesting discussion: fluxcd/flux2#1298
Helm Github steps:
- name: Update helm chart id: update working-directory: infrastructure run: | yq -i '.version = "${{ steps.read.outputs.version }}"' Chart.yaml yq -i '.appVersion = "${{ steps.read.outputs.version }}"' Chart.yaml - name: Helm Login run: | helm registry login happydogsprod.azurecr.io \ --username helmuser \ --password ${{secrets.HELM_REPO_SECRET}} - name: package & push working-directory: infrastructure run: | helm package . helm push appname-${{ steps.read.outputs.version }}.tgz oci://repository.azurecr.io/helm
Sorry, something went wrong.
I see we used to push HelmCharts to ACR, does anyone remember why we stopped?
No branches or pull requests
Using helm-charts without a proper version connection is troublesome.
Look into new ways of releasing this component.
Start using release versions which will build.
DoD
Tag, Release and chart version are connected
To make it possible to rollback
If you run version x of Helm you are sure it is version y of the app
The text was updated successfully, but these errors were encountered: