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
Helm chart version 2.0.0
Current behavior:
If you set the following values, the label app.kubernetes.io/version is still set to app.kubernetes.io/version: "0.3.1"
app.kubernetes.io/version
app.kubernetes.io/version: "0.3.1"
image: pullPolicy: Always tag: 0.3.2
Expected behavior:
The label should be app.kubernetes.io/version: "0.3.2" as set in the values file.
app.kubernetes.io/version: "0.3.2"
Steps to reproduce:
Deploy with a tag value in the values file.
Related code:
I think it's here in the chart that needs fixing.
{{/* Common labels */}} {{- define "chart.labels" -}} helm.sh/chart: {{ include "chart.chart" . }} {{ include "chart.selectorLabels" . }} {{- if .Chart.AppVersion }} app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} {{- end }} app.kubernetes.io/managed-by: {{ .Release.Service }} {{- end }}
Other information:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug Report
Helm chart version 2.0.0
Current behavior:
If you set the following values, the label
app.kubernetes.io/version
is still set toapp.kubernetes.io/version: "0.3.1"
Expected behavior:
The label should be
app.kubernetes.io/version: "0.3.2"
as set in the values file.Steps to reproduce:
Deploy with a tag value in the values file.
Related code:
I think it's here in the chart that needs fixing.
Other information:
The text was updated successfully, but these errors were encountered: