You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using Flux to install the artifactory chart. During an upgrade it looks like flux set the version of the chart to 107.90.8+2. The +2 is what is causing the artifactory helm chart issues. See this line. artifactory-107.80.8+2 is not a valid label value due to the +. IMHO the chart label should be an annotation instead since it is not used in a label selector. Alternatively it can be sanitized to be a valid label.
To reproduce this without flux simply set the version in the Chart.yaml to 107.90.8+2 then run helm install to see the error.
My current workaround is to use a post render to fix the chart.
I believe this is still an issue. You just need to sanitize your labels in your chart here. Or simply move that line to be an annotation if you don't ever use it in a label selector.
I am using Flux to install the artifactory chart. During an upgrade it looks like flux set the version of the chart to
107.90.8+2
. The+2
is what is causing the artifactory helm chart issues. See this line.artifactory-107.80.8+2
is not a valid label value due to the+
. IMHO thechart
label should be an annotation instead since it is not used in a label selector. Alternatively it can be sanitized to be a valid label.To reproduce this without flux simply set the version in the Chart.yaml to
107.90.8+2
then run helm install to see the error.My current workaround is to use a post render to fix the chart.
I am using artifactory 107.90.8 and helm version v3.15.4.
The text was updated successfully, but these errors were encountered: