Skip to content

Commit 6189c15

Browse files
authored
Fix priorityClassName default value (#108)
* Fix priorityClassName default value * Leave empty priorityClassName default value * Fix trailing spaces Signed-off-by: Manuel Morejon <manuel@mmorejon.io>
1 parent e510e6f commit 6189c15

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

charts/jenkins/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ Use the following links to reference issues, PRs, and commits prior to v2.6.0.
1010

1111
The change log until v1.5.7 was auto-generated based on git commits. Those entries include a reference to the git commit to be able to get more details.
1212

13+
## 2.15.1
14+
15+
Fix priorityClassName entry in values.yaml file
1316

1417
## 2.15.0
1518

charts/jenkins/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: jenkins
33
home: https://jenkins.io/
4-
version: 2.15.0
4+
version: 2.15.1
55
appVersion: lts
66
description: Open source continuous integration server. It supports multiple SCM tools
77
including CVS, Subversion and Git. It can execute Apache Ant and Apache Maven-based

charts/jenkins/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,8 @@ master:
368368
affinity: {}
369369
# Leverage a priorityClass to ensure your pods survive resource shortages
370370
# ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/
371-
# priorityClass: system-cluster-critical
371+
priorityClassName:
372+
372373
podAnnotations: {}
373374
# Add deployment annotation
374375
deploymentAnnotations: {}

0 commit comments

Comments
 (0)