From c7ab41f8eb7514f4361fba3c763ac9ea29b2b31a Mon Sep 17 00:00:00 2001 From: "Jenkins Infra Bot (updatecli)" <60776566+jenkins-infra-bot@users.noreply.github.com> Date: Wed, 13 Sep 2023 12:27:27 +0000 Subject: [PATCH 1/7] chore: Update accountapp helm chart MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- charts/accountapp/Chart.yaml | 2 +- charts/accountapp/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/accountapp/Chart.yaml b/charts/accountapp/Chart.yaml index 68289791b..c2fc3cc0a 100644 --- a/charts/accountapp/Chart.yaml +++ b/charts/accountapp/Chart.yaml @@ -3,4 +3,4 @@ description: A Helm chart for accounts.jenkins.io maintainers: - name: timja name: accountapp -version: 0.6.11 +version: 0.6.12 diff --git a/charts/accountapp/values.yaml b/charts/accountapp/values.yaml index 3c10d379d..efd3537de 100644 --- a/charts/accountapp/values.yaml +++ b/charts/accountapp/values.yaml @@ -4,7 +4,7 @@ replicaCount: 1 image: repository: jenkinsciinfra/account-app - tag: 0.4.43 + tag: 0.4.44 pullPolicy: IfNotPresent imagePullSecrets: [] nameOverride: "" From 7a0d3aa5631113856dbf5d33e4555fdebd69f002 Mon Sep 17 00:00:00 2001 From: "Jenkins Infra Bot (updatecli)" <60776566+jenkins-infra-bot@users.noreply.github.com> Date: Thu, 14 Sep 2023 00:26:14 +0000 Subject: [PATCH 2/7] chore: Update accountapp helm chart MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- charts/accountapp/Chart.yaml | 2 +- charts/accountapp/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/accountapp/Chart.yaml b/charts/accountapp/Chart.yaml index c2fc3cc0a..cee51587c 100644 --- a/charts/accountapp/Chart.yaml +++ b/charts/accountapp/Chart.yaml @@ -3,4 +3,4 @@ description: A Helm chart for accounts.jenkins.io maintainers: - name: timja name: accountapp -version: 0.6.12 +version: 0.6.13 diff --git a/charts/accountapp/values.yaml b/charts/accountapp/values.yaml index efd3537de..b52adfbf9 100644 --- a/charts/accountapp/values.yaml +++ b/charts/accountapp/values.yaml @@ -4,7 +4,7 @@ replicaCount: 1 image: repository: jenkinsciinfra/account-app - tag: 0.4.44 + tag: 0.4.45 pullPolicy: IfNotPresent imagePullSecrets: [] nameOverride: "" From e61320508821d2f51cd78d71ebd9989691778e9b Mon Sep 17 00:00:00 2001 From: smerle33 Date: Wed, 20 Sep 2023 11:10:29 +0200 Subject: [PATCH 3/7] feat(PDB/wiki): add the PDB if replicatcount greater than 1 --- charts/wiki/templates/pdb.yaml | 2 +- charts/wiki/values.yaml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/charts/wiki/templates/pdb.yaml b/charts/wiki/templates/pdb.yaml index 81398dd4d..27964358b 100644 --- a/charts/wiki/templates/pdb.yaml +++ b/charts/wiki/templates/pdb.yaml @@ -1,4 +1,4 @@ -{{- if .Values.poddisruptionbudget.enabled }} +{{- if gt .Values.replicaCount 1 }} apiVersion: policy/v1 kind: PodDisruptionBudget metadata: diff --git a/charts/wiki/values.yaml b/charts/wiki/values.yaml index 4d2c52592..c6e2a0e58 100644 --- a/charts/wiki/values.yaml +++ b/charts/wiki/values.yaml @@ -67,6 +67,5 @@ nodeSelector: {} tolerations: [] affinity: {} poddisruptionbudget: - enabled: false minAvailable: 1 maxUnavailable: 1 From 55e300412d86f88ac7be3b442be47f16a5c8786a Mon Sep 17 00:00:00 2001 From: smerle33 Date: Wed, 20 Sep 2023 11:16:33 +0200 Subject: [PATCH 4/7] bump version --- charts/wiki/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/wiki/Chart.yaml b/charts/wiki/Chart.yaml index 3e9c05e42..878632aa2 100644 --- a/charts/wiki/Chart.yaml +++ b/charts/wiki/Chart.yaml @@ -3,4 +3,4 @@ appVersion: 0.0.7 description: A Helm chart for wiki static content name: wiki type: application -version: 0.4.0 +version: 0.5.0 From 52fc1d53bc64b3e46e19a0089b9e8d8dfb80cb8c Mon Sep 17 00:00:00 2001 From: smerle33 Date: Wed, 20 Sep 2023 11:18:09 +0200 Subject: [PATCH 5/7] wip --- charts/wiki/templates/pdb.yaml | 2 +- charts/wiki/tests/custom_values_test.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/wiki/templates/pdb.yaml b/charts/wiki/templates/pdb.yaml index 27964358b..c597ab8ff 100644 --- a/charts/wiki/templates/pdb.yaml +++ b/charts/wiki/templates/pdb.yaml @@ -1,4 +1,4 @@ -{{- if gt .Values.replicaCount 1 }} +{{- if (gt (int .Values.replicaCount) 1) }} apiVersion: policy/v1 kind: PodDisruptionBudget metadata: diff --git a/charts/wiki/tests/custom_values_test.yaml b/charts/wiki/tests/custom_values_test.yaml index d21bd2417..9c2e39fc8 100644 --- a/charts/wiki/tests/custom_values_test.yaml +++ b/charts/wiki/tests/custom_values_test.yaml @@ -4,7 +4,7 @@ templates: tests: - it: should ensure the pdb has correct spec set: - poddisruptionbudget.enabled: true + replicaCount: 2 poddisruptionbudget.minAvailable: 2 poddisruptionbudget.maxUnavailable: 1 asserts: From 79dcd0453f3e0746812703730d2d47213c6cb771 Mon Sep 17 00:00:00 2001 From: "Jenkins Infra Bot (updatecli)" <60776566+jenkins-infra-bot@users.noreply.github.com> Date: Wed, 20 Sep 2023 09:26:13 +0000 Subject: [PATCH 6/7] chore: Update httpd docker image version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- charts/httpd/Chart.yaml | 2 +- charts/httpd/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/httpd/Chart.yaml b/charts/httpd/Chart.yaml index a60480a84..e41593acf 100644 --- a/charts/httpd/Chart.yaml +++ b/charts/httpd/Chart.yaml @@ -1,4 +1,4 @@ apiVersion: v1 description: httpd helm chart for Kubernetes name: httpd -version: 0.0.5 +version: 0.0.6 diff --git a/charts/httpd/values.yaml b/charts/httpd/values.yaml index d30f5d9f1..8e0f507f7 100644 --- a/charts/httpd/values.yaml +++ b/charts/httpd/values.yaml @@ -4,7 +4,7 @@ replicaCount: 1 image: repository: httpd - tag: 2.4@sha256:b55dde71414f5e7ef6a3d5b33ce1ff7357a21148fcdc6be3db155ef391b6c663 + tag: 2.4@sha256:4ffdefc17aef73b626a6e60078083420ba0c0f0a91e688eac130d9c078253bfb pullPolicy: IfNotPresent imagePullSecrets: [] nameOverride: "" From 2ba40fa4e710189f4aab70956f60d74eb43854a3 Mon Sep 17 00:00:00 2001 From: "Jenkins Infra Bot (updatecli)" <60776566+jenkins-infra-bot@users.noreply.github.com> Date: Wed, 20 Sep 2023 10:06:09 +0000 Subject: [PATCH 7/7] chore: Update wiki helm chart MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- charts/wiki/Chart.yaml | 2 +- charts/wiki/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/wiki/Chart.yaml b/charts/wiki/Chart.yaml index 878632aa2..52d38be58 100644 --- a/charts/wiki/Chart.yaml +++ b/charts/wiki/Chart.yaml @@ -3,4 +3,4 @@ appVersion: 0.0.7 description: A Helm chart for wiki static content name: wiki type: application -version: 0.5.0 +version: 0.5.1 diff --git a/charts/wiki/values.yaml b/charts/wiki/values.yaml index c6e2a0e58..d354b68ed 100644 --- a/charts/wiki/values.yaml +++ b/charts/wiki/values.yaml @@ -6,7 +6,7 @@ image: repository: jenkinsciinfra/wiki pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. - tag: 0.1.7 + tag: 0.1.8 imagePullSecrets: [] nameOverride: "" fullnameOverride: ""