Skip to content

Commit c573cb0

Browse files
authored
replace invalid "+" with valid character (#1221)
1 parent ba56ecb commit c573cb0

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

charts/jenkins/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ Use the following links to reference issues, PRs, and commits prior to v2.6.0.
1212
The changelog until v1.5.7 was auto-generated based on git commits.
1313
Those entries include a reference to the git commit to be able to get more details.
1414

15+
## 5.7.5
16+
17+
Fix helm release deployment with flux revision reconciliation
18+
1519
## 5.7.4
1620

1721
Update `kubernetes` to version `4292.v11898cf8fa_66`

charts/jenkins/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: jenkins
33
type: application
44
home: https://www.jenkins.io/
5-
version: 5.7.4
5+
version: 5.7.5
66
appVersion: 2.462.3
77
description: >
88
Jenkins - Build great things at any scale! As the leading open source automation server, Jenkins provides over 1800 plugins to support building, deploying and automating any project.

charts/jenkins/templates/auto-reload-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
labels:
88
"app.kubernetes.io/name": {{ template "jenkins.name" . }}
99
{{- if .Values.renderHelmLabels }}
10-
"helm.sh/chart": "{{ .Chart.Name }}-{{ .Chart.Version }}"
10+
"helm.sh/chart": "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}"
1111
{{- end }}
1212
"app.kubernetes.io/managed-by": "{{ $.Release.Service }}"
1313
"app.kubernetes.io/instance": "{{ $.Release.Name }}"

charts/jenkins/templates/jcasc-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
labels:
1212
"app.kubernetes.io/name": {{ template "jenkins.name" $root}}
1313
{{- if $root.Values.renderHelmLabels }}
14-
"helm.sh/chart": "{{ $root.Chart.Name }}-{{ $root.Chart.Version }}"
14+
"helm.sh/chart": "{{ $root.Chart.Name }}-{{ $root.Chart.Version | replace "+" "_" }}"
1515
{{- end }}
1616
"app.kubernetes.io/managed-by": "{{ $.Release.Service }}"
1717
"app.kubernetes.io/instance": "{{ $.Release.Name }}"
@@ -36,7 +36,7 @@ metadata:
3636
labels:
3737
"app.kubernetes.io/name": {{ template "jenkins.name" $root}}
3838
{{- if .Values.renderHelmLabels }}
39-
"helm.sh/chart": "{{ $root.Chart.Name }}-{{ $root.Chart.Version }}"
39+
"helm.sh/chart": "{{ $root.Chart.Name }}-{{ $root.Chart.Version | replace "+" "_" }}"
4040
{{- end }}
4141
"app.kubernetes.io/managed-by": "{{ $.Release.Service }}"
4242
"app.kubernetes.io/instance": "{{ $.Release.Name }}"

0 commit comments

Comments
 (0)