Skip to content

Commit 28633f4

Browse files
authored
Fix variable names (#164)
Signed-off-by: Oleksandr Kuzmin <kuzmin0486@gmail.com>
1 parent b239117 commit 28633f4

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

charts/jenkins/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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 change log 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+
## 3.0.2
16+
17+
* Fix `.Values.controller.tolerations` and `.Values.controller.nodeSelector` variable names in templates\jenkins-backup-cronjob.yaml
18+
1519
## 3.0.1
1620

1721
* added 'runAsNonroot' to security context

charts/jenkins/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: jenkins
33
home: https://jenkins.io/
4-
version: 3.0.1
4+
version: 3.0.2
55
appVersion: 2.249.3
66
description: Jenkins - Build great things at any scale! The leading open source automation server, Jenkins provides hundreds of plugins to support building, deploying and automating any project.
77
sources:

charts/jenkins/templates/jenkins-backup-cronjob.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,11 @@ spec:
131131
operator: In
132132
values:
133133
- {{ .Release.Name }}
134-
{{- with .Values.master.tolerations }}
134+
{{- with .Values.controller.tolerations }}
135135
tolerations:
136136
{{- toYaml . | nindent 10 }}
137137
{{- end }}
138-
{{- with .Values.master.nodeSelector }}
138+
{{- with .Values.controller.nodeSelector }}
139139
nodeSelector:
140140
{{- toYaml . | nindent 12 }}
141141
{{- end }}

0 commit comments

Comments
 (0)