Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(container): update image mongodb to v15.6.26 #6862

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

clarknova99-bot[bot]
Copy link
Contributor

@clarknova99-bot clarknova99-bot bot commented Jun 15, 2024

This PR contains the following updates:

Package Update Change
mongodb (source) minor 15.1.1 -> 15.6.26

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

bitnami/charts (mongodb)

v15.6.26

  • [bitnami/mongodb] Fixed arbiter anti affinity rules to prevent it from running on the same node of a (ded7e1f), closes #​29565

v15.6.25

v15.6.24

v15.6.23

v15.6.22

v15.6.21

v15.6.20

v15.6.19

v15.6.18

v15.6.17

v15.6.16

v15.6.15

v15.6.14

v15.6.13

v15.6.12

v15.6.11

v15.6.10

v15.6.9

v15.6.8

v15.6.7

v15.6.6

v15.6.5

v15.6.3

v15.6.1

v15.6.0

v15.5.3

  • [bitnami/mongodb]Add "or" condition between .Values.auth.existingSecret and .Values.auth.rootPasswor (5f2204f), closes #​25944 #​25885

v15.5.2

v15.5.1

v15.4.5

v15.4.4

v15.4.3

v15.4.2

v15.4.1

v15.4.0

v15.3.1

v15.3.0

v15.2.0

v15.1.7

v15.1.5

v15.1.4

v15.1.3


Configuration

📅 Schedule: Branch creation - "on saturday" in timezone America/New_York, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@clarknova99-bot clarknova99-bot bot requested a review from clarknova99 as a code owner June 15, 2024 04:24
@clarknova99-bot clarknova99-bot bot added renovate/container type/minor area/kubernetes Changes made in the kubernetes directory area/ansible Changes made in the ansible directory area/github Changes made in the github directory labels Jun 15, 2024
@clarknova99-bot
Copy link
Contributor Author

clarknova99-bot bot commented Jun 15, 2024

--- kubernetes/apps/database/mongodb/app Kustomization: flux-system/cluster-apps-mongodb HelmRelease: database/mongodb

+++ kubernetes/apps/database/mongodb/app Kustomization: flux-system/cluster-apps-mongodb HelmRelease: database/mongodb

@@ -13,13 +13,13 @@

       chart: mongodb
       interval: 15m
       sourceRef:
         kind: HelmRepository
         name: bitnami
         namespace: flux-system
-      version: 15.1.1
+      version: 15.6.24
   install:
     createNamespace: true
     remediation:
       retries: 5
   interval: 15m
   upgrade:

@clarknova99-bot
Copy link
Contributor Author

clarknova99-bot bot commented Jun 15, 2024

--- HelmRelease: database/mongodb Deployment: database/mongodb

+++ HelmRelease: database/mongodb Deployment: database/mongodb

@@ -40,15 +40,51 @@

       securityContext:
         fsGroup: 1001
         fsGroupChangePolicy: Always
         supplementalGroups: []
         sysctls: []
       enableServiceLinks: true
+      initContainers:
+      - name: log-dir
+        image: docker.io/bitnami/mongodb:7.0.14-debian-12-r3
+        imagePullPolicy: IfNotPresent
+        command:
+        - /bin/bash
+        args:
+        - -ec
+        - |
+          ln -sf /dev/stdout "/opt/bitnami/mongodb/logs/mongodb.log"
+        securityContext:
+          allowPrivilegeEscalation: false
+          capabilities:
+            drop:
+            - ALL
+          privileged: false
+          readOnlyRootFilesystem: true
+          runAsGroup: 1001
+          runAsNonRoot: true
+          runAsUser: 1001
+          seLinuxOptions: {}
+          seccompProfile:
+            type: RuntimeDefault
+        resources:
+          limits:
+            cpu: 750m
+            ephemeral-storage: 2Gi
+            memory: 768Mi
+          requests:
+            cpu: 500m
+            ephemeral-storage: 50Mi
+            memory: 512Mi
+        volumeMounts:
+        - name: empty-dir
+          mountPath: /opt/bitnami/mongodb/logs
+          subPath: app-logs-dir
       containers:
       - name: mongodb
-        image: docker.io/bitnami/mongodb:7.0.7-debian-12-r0
+        image: docker.io/bitnami/mongodb:7.0.14-debian-12-r3
         imagePullPolicy: IfNotPresent
         securityContext:
           allowPrivilegeEscalation: false
           capabilities:
             drop:
             - ALL
@@ -100,13 +136,13 @@

           exec:
             command:
             - /bitnami/scripts/readiness-probe.sh
         resources:
           limits:
             cpu: 750m
-            ephemeral-storage: 1024Mi
+            ephemeral-storage: 2Gi
             memory: 768Mi
           requests:
             cpu: 500m
             ephemeral-storage: 50Mi
             memory: 512Mi
         volumeMounts:
@@ -119,12 +155,15 @@

         - name: empty-dir
           mountPath: /opt/bitnami/mongodb/tmp
           subPath: app-tmp-dir
         - name: empty-dir
           mountPath: /opt/bitnami/mongodb/logs
           subPath: app-logs-dir
+        - name: empty-dir
+          mountPath: /.mongodb
+          subPath: mongosh-home
         - name: datadir
           mountPath: /bitnami/mongodb
           subPath: null
         - name: common-scripts
           mountPath: /bitnami/scripts
       volumes:
--- HelmRelease: database/mongodb PodDisruptionBudget: database/mongodb

+++ HelmRelease: database/mongodb PodDisruptionBudget: database/mongodb

@@ -0,0 +1,19 @@

+---
+apiVersion: policy/v1
+kind: PodDisruptionBudget
+metadata:
+  name: mongodb
+  namespace: database
+  labels:
+    app.kubernetes.io/instance: mongodb
+    app.kubernetes.io/managed-by: Helm
+    app.kubernetes.io/name: mongodb
+    app.kubernetes.io/component: mongodb
+spec:
+  maxUnavailable: 1
+  selector:
+    matchLabels:
+      app.kubernetes.io/instance: mongodb
+      app.kubernetes.io/name: mongodb
+      app.kubernetes.io/component: mongodb
+

@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch 2 times, most recently from 169e09b to e01a385 Compare June 17, 2024 19:16
@clarknova99-bot clarknova99-bot bot changed the title feat(container): update image mongodb to v15.6.6 feat(container): update image mongodb to v15.6.7 Jun 17, 2024
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch from e01a385 to 46bedce Compare June 18, 2024 01:17
@clarknova99-bot clarknova99-bot bot changed the title feat(container): update image mongodb to v15.6.7 feat(container): update image mongodb to v15.6.8 Jun 18, 2024
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch from 46bedce to 4e32e69 Compare June 18, 2024 18:26
@clarknova99-bot clarknova99-bot bot changed the title feat(container): update image mongodb to v15.6.8 feat(container): update image mongodb to v15.6.9 Jun 18, 2024
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch 3 times, most recently from b5c4b96 to 77d3c01 Compare June 20, 2024 11:18
@clarknova99-bot clarknova99-bot bot changed the title feat(container): update image mongodb to v15.6.9 feat(container): update image mongodb to v15.6.10 Jun 20, 2024
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch 9 times, most recently from 8e73688 to 2b6c687 Compare June 25, 2024 12:36
@clarknova99-bot clarknova99-bot bot changed the title feat(container): update image mongodb to v15.6.10 feat(container): update image mongodb to v15.6.11 Jun 25, 2024
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch from 2b6c687 to da0e7c6 Compare June 25, 2024 17:19
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch 3 times, most recently from efa87b7 to ac33b5c Compare July 31, 2024 15:25
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch from ac33b5c to f50c7cb Compare August 6, 2024 18:29
@clarknova99-bot clarknova99-bot bot changed the title feat(container): update image mongodb to v15.6.16 feat(container): update image mongodb to v15.6.17 Aug 6, 2024
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch from f50c7cb to 5f19de6 Compare August 7, 2024 16:26
@clarknova99-bot clarknova99-bot bot changed the title feat(container): update image mongodb to v15.6.17 feat(container): update image mongodb to v15.6.18 Aug 7, 2024
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch from 5f19de6 to c02c7ca Compare August 14, 2024 21:22
@clarknova99-bot clarknova99-bot bot changed the title feat(container): update image mongodb to v15.6.18 feat(container): update image mongodb to v15.6.19 Aug 14, 2024
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch 2 times, most recently from 2ed305e to d65f856 Compare August 20, 2024 14:21
@clarknova99-bot clarknova99-bot bot changed the title feat(container): update image mongodb to v15.6.19 feat(container): update image mongodb to v15.6.20 Aug 20, 2024
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch from d65f856 to b870658 Compare August 27, 2024 14:21
@clarknova99-bot clarknova99-bot bot changed the title feat(container): update image mongodb to v15.6.20 feat(container): update image mongodb to v15.6.21 Aug 27, 2024
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch from b870658 to d2868b2 Compare August 29, 2024 09:25
@clarknova99-bot clarknova99-bot bot changed the title feat(container): update image mongodb to v15.6.21 feat(container): update image mongodb to v15.6.22 Aug 29, 2024
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch 2 times, most recently from 7837499 to bd144eb Compare August 31, 2024 13:26
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch from bd144eb to d492acf Compare September 12, 2024 07:24
@clarknova99-bot clarknova99-bot bot changed the title feat(container): update image mongodb to v15.6.22 feat(container): update image mongodb to v15.6.23 Sep 12, 2024
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch from d492acf to 6c5a854 Compare September 14, 2024 21:22
@clarknova99-bot clarknova99-bot bot changed the title feat(container): update image mongodb to v15.6.23 feat(container): update image mongodb to v15.6.24 Sep 14, 2024
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch 3 times, most recently from 4f4fa14 to 88e7005 Compare September 19, 2024 11:21
@clarknova99-bot clarknova99-bot bot changed the title feat(container): update image mongodb to v15.6.24 feat(container): update image mongodb to v15.6.25 Sep 19, 2024
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch from 88e7005 to 26d9ab2 Compare September 23, 2024 09:29
@clarknova99-bot clarknova99-bot bot changed the title feat(container): update image mongodb to v15.6.25 feat(container): update image mongodb to v15.6.26 Sep 23, 2024
@clarknova99-bot clarknova99-bot bot force-pushed the renovate/mongodb-15.x branch from 26d9ab2 to a869a79 Compare December 26, 2024 22:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/ansible Changes made in the ansible directory area/github Changes made in the github directory area/kubernetes Changes made in the kubernetes directory renovate/container type/minor
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants