diff --git a/bitnami/jenkins/Chart.yaml b/bitnami/jenkins/Chart.yaml index a25367e666f8bf..d1f660a0ee8379 100644 --- a/bitnami/jenkins/Chart.yaml +++ b/bitnami/jenkins/Chart.yaml @@ -35,4 +35,4 @@ maintainers: name: jenkins sources: - https://github.com/bitnami/charts/tree/main/bitnami/jenkins -version: 13.1.5 +version: 13.2.0 diff --git a/bitnami/jenkins/README.md b/bitnami/jenkins/README.md index c877adebba0a54..133c60d78faa0b 100644 --- a/bitnami/jenkins/README.md +++ b/bitnami/jenkins/README.md @@ -196,6 +196,7 @@ s | `kubeVersion` | Override Kubernetes version | `""` | | `nameOverride` | String to partially override common.names.fullname | `""` | | `fullnameOverride` | String to fully override common.names.fullname | `""` | +| `replicaCount` | Number of container replicas | `1` | | `commonLabels` | Labels to add to all deployed objects | `{}` | | `commonAnnotations` | Annotations to add to all deployed objects | `{}` | | `clusterDomain` | Kubernetes cluster domain name | `cluster.local` | @@ -620,4 +621,4 @@ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. \ No newline at end of file +limitations under the License. diff --git a/bitnami/jenkins/templates/deployment.yaml b/bitnami/jenkins/templates/deployment.yaml index 8b8ef5f369ddd9..7c7a096cad08f5 100644 --- a/bitnami/jenkins/templates/deployment.yaml +++ b/bitnami/jenkins/templates/deployment.yaml @@ -16,6 +16,7 @@ spec: {{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.podLabels .Values.commonLabels ) "context" . ) }} selector: matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }} + replicas: {{ .Values.replicaCount }} strategy: {{- include "common.tplvalues.render" (dict "value" .Values.updateStrategy "context" $ ) | nindent 4 }} template: metadata: diff --git a/bitnami/jenkins/values.yaml b/bitnami/jenkins/values.yaml index 99256c3c36eaf2..d0181ad6b84601 100644 --- a/bitnami/jenkins/values.yaml +++ b/bitnami/jenkins/values.yaml @@ -38,6 +38,9 @@ nameOverride: "" ## @param fullnameOverride String to fully override common.names.fullname ## fullnameOverride: "" +## @param replicaCount Number of container replicas +## +replicaCount: 1 ## @param commonLabels Labels to add to all deployed objects ## commonLabels: {}