Skip to content

Commit

Permalink
[bitnami/jenkins] Fix initHookScriptsSecret (#31175)
Browse files Browse the repository at this point in the history
Signed-off-by: David Gomez <[email protected]>
  • Loading branch information
dgomezleon authored Dec 27, 2024
1 parent 28ede84 commit 77ca822
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion bitnami/jenkins/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
# Changelog

## 13.5.1 (2024-12-27)

* [bitnami/jenkins] Fix initHookScriptsSecret ([#31175](https://github.com/bitnami/charts/pull/31175))

## 13.5.0 (2024-12-10)

* [bitnami/jenkins] Detect non-standard images ([#30905](https://github.com/bitnami/charts/pull/30905))
* [bitnami/*] Add Bitnami Premium to NOTES.txt (#30854) ([3dfc003](https://github.com/bitnami/charts/commit/3dfc00376df6631f0ce54b8d440d477f6caa6186)), closes [#30854](https://github.com/bitnami/charts/issues/30854)
* [bitnami/*] docs: :memo: Add "Backup & Restore" section (#30711) ([35ab536](https://github.com/bitnami/charts/commit/35ab5363741e7548f4076f04da6e62d10153c60c)), closes [#30711](https://github.com/bitnami/charts/issues/30711)
* [bitnami/*] docs: :memo: Add "Update Credentials" (batch 2) (#30687) ([c457848](https://github.com/bitnami/charts/commit/c457848b2a111aad59830b98f85ffa1e29918e10)), closes [#30687](https://github.com/bitnami/charts/issues/30687)
* [bitnami/jenkins] Detect non-standard images (#30905) ([59a3b68](https://github.com/bitnami/charts/commit/59a3b68c1b43deabc3a6eb08002baab4e2943bcf)), closes [#30905](https://github.com/bitnami/charts/issues/30905)

## <small>13.4.28 (2024-11-28)</small>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/jenkins/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ maintainers:
name: jenkins
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/jenkins
version: 13.5.0
version: 13.5.1
4 changes: 2 additions & 2 deletions bitnami/jenkins/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -547,15 +547,15 @@ spec:
{{- if or .Values.initHookScripts .Values.initHookScriptsCM .Values.initHookScriptsSecret }}
- name: jenkins-init-hook-scripts
projected:
defaultMode: 0755
sources:
{{- if or .Values.initHookScripts .Values.initHookScriptsCM }}
- configMap:
name: {{ template "jenkins.initHookScriptsName" . }}
{{- end }}
{{- if .Values.initHookScriptsSecret }}
- secret:
secretName: {{ print (tpl .Values.initHookScriptsSecret .) }}
defaultMode: 0755
name: {{ print (tpl .Values.initHookScriptsSecret .) }}
{{- end }}
{{- end }}
{{- if .Values.extraVolumes }}
Expand Down

0 comments on commit 77ca822

Please sign in to comment.