diff --git a/bitnami/jenkins/CHANGELOG.md b/bitnami/jenkins/CHANGELOG.md
index 69adfd3fc9..5be5529c28 100644
--- a/bitnami/jenkins/CHANGELOG.md
+++ b/bitnami/jenkins/CHANGELOG.md
@@ -1,8 +1,12 @@
# Changelog
-## 13.4.9 (2024-07-10)
+## 13.4.10 (2024-07-16)
-* [bitnami/jenkins] Release 13.4.9 ([#27888](https://github.com/bitnami/charts/pull/27888))
+* [bitnami/jenkins] Global StorageClass as default value ([#28035](https://github.com/bitnami/charts/pull/28035))
+
+## 13.4.9 (2024-07-10)
+
+* [bitnami/jenkins] Release 13.4.9 (#27888) ([484ab86](https://github.com/bitnami/charts/commit/484ab8654f528decedde68c13942ce196d6cccf0)), closes [#27888](https://github.com/bitnami/charts/issues/27888)
## 13.4.8 (2024-07-05)
diff --git a/bitnami/jenkins/Chart.lock b/bitnami/jenkins/Chart.lock
index d8bb982efd..d37c61a070 100644
--- a/bitnami/jenkins/Chart.lock
+++ b/bitnami/jenkins/Chart.lock
@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
- version: 2.20.3
-digest: sha256:569e1c9d81abdcad3891e065c0f23c83786527d2043f2bc68193c43d18886c19
-generated: "2024-06-18T11:43:37.863920689Z"
+ version: 2.20.5
+digest: sha256:5b98791747a148b9d4956b81bb8635f49a0ae831869d700d52e514b8fd1a2445
+generated: "2024-07-16T12:08:51.969766+02:00"
diff --git a/bitnami/jenkins/Chart.yaml b/bitnami/jenkins/Chart.yaml
index 6a55426363..91a5ec18c1 100644
--- a/bitnami/jenkins/Chart.yaml
+++ b/bitnami/jenkins/Chart.yaml
@@ -14,25 +14,25 @@ annotations:
apiVersion: v2
appVersion: 2.452.3
dependencies:
-- name: common
- repository: oci://registry-1.docker.io/bitnamicharts
- tags:
- - bitnami-common
- version: 2.x.x
+ - name: common
+ repository: oci://registry-1.docker.io/bitnamicharts
+ tags:
+ - bitnami-common
+ version: 2.x.x
description: Jenkins is an open source Continuous Integration and Continuous Delivery (CI/CD) server designed to automate the building, testing, and deploying of any software project.
home: https://bitnami.com
icon: https://bitnami.com/assets/stacks/jenkins/img/jenkins-stack-220x234.png
keywords:
-- jenkins
-- ci
-- cd
-- http
-- web
-- application
+ - jenkins
+ - ci
+ - cd
+ - http
+ - web
+ - application
maintainers:
-- name: Broadcom, Inc. All Rights Reserved.
- url: https://github.com/bitnami/charts
+ - name: Broadcom, Inc. All Rights Reserved.
+ url: https://github.com/bitnami/charts
name: jenkins
sources:
-- https://github.com/bitnami/charts/tree/main/bitnami/jenkins
-version: 13.4.9
+ - https://github.com/bitnami/charts/tree/main/bitnami/jenkins
+version: 13.4.10
diff --git a/bitnami/jenkins/README.md b/bitnami/jenkins/README.md
index fff09eebb9..bfd64eee10 100644
--- a/bitnami/jenkins/README.md
+++ b/bitnami/jenkins/README.md
@@ -186,7 +186,8 @@ s
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ |
| `global.imageRegistry` | Global Docker image registry | `""` |
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
-| `global.storageClass` | Global StorageClass for Persistent Volume(s) | `""` |
+| `global.defaultStorageClass` | Global default StorageClass for Persistent Volume(s) | `""` |
+| `global.storageClass` | DEPRECATED: use global.defaultStorageClass instead | `""` |
| `global.compatibility.openshift.adaptSecurityContext` | Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) | `auto` |
### Common parameters
diff --git a/bitnami/jenkins/values.yaml b/bitnami/jenkins/values.yaml
index 614d6f2738..686c0699de 100644
--- a/bitnami/jenkins/values.yaml
+++ b/bitnami/jenkins/values.yaml
@@ -8,7 +8,8 @@
## @param global.imageRegistry Global Docker image registry
## @param global.imagePullSecrets Global Docker registry secret names as an array
-## @param global.storageClass Global StorageClass for Persistent Volume(s)
+## @param global.defaultStorageClass Global default StorageClass for Persistent Volume(s)
+## @param global.storageClass DEPRECATED: use global.defaultStorageClass instead
##
global:
imageRegistry: ""
@@ -17,6 +18,7 @@ global:
## - myRegistryKeySecretName
##
imagePullSecrets: []
+ defaultStorageClass: ""
storageClass: ""
## Compatibility adaptations for Kubernetes platforms
##