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(helm): update chart redis to 18.19.2 #5499

Merged
merged 1 commit into from
Mar 14, 2024
Merged

feat(helm): update chart redis to 18.19.2 #5499

merged 1 commit into from
Mar 14, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 13, 2024

Mend Renovate

This PR contains the following updates:

Package Update Change
redis (source) minor 18.12.1 -> 18.19.2

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 Mend Renovate. View repository job log here.

@rosey-the-renovator-bot rosey-the-renovator-bot bot force-pushed the renovate/redis-18.x branch 4 times, most recently from 912a6d7 to 70ef696 Compare February 27, 2024 11:09
@renovate renovate bot changed the title feat(helm): update chart redis to 18.13.0 feat(helm): update chart redis to 18.17.0 Feb 29, 2024
@renovate renovate bot force-pushed the renovate/redis-18.x branch from 70ef696 to 40273da Compare February 29, 2024 14:09
@renovate renovate bot changed the title feat(helm): update chart redis to 18.17.0 feat(helm): update chart redis to 18.17.1 Mar 4, 2024
@renovate renovate bot force-pushed the renovate/redis-18.x branch from 40273da to 8a45ee0 Compare March 4, 2024 11:39
@renovate renovate bot changed the title feat(helm): update chart redis to 18.17.1 feat(helm): update chart redis to 18.18.0 Mar 5, 2024
@renovate renovate bot force-pushed the renovate/redis-18.x branch 2 times, most recently from b79bd66 to bcc5e4a Compare March 8, 2024 13:10
@renovate renovate bot changed the title feat(helm): update chart redis to 18.18.0 feat(helm): update chart redis to 18.18.1 Mar 8, 2024
@renovate renovate bot changed the title feat(helm): update chart redis to 18.18.1 feat(helm): update chart redis to 18.19.0 Mar 8, 2024
@renovate renovate bot force-pushed the renovate/redis-18.x branch from bcc5e4a to b05056f Compare March 8, 2024 16:35
@renovate renovate bot changed the title feat(helm): update chart redis to 18.19.0 feat(helm): update chart redis to 18.19.1 Mar 8, 2024
@renovate renovate bot force-pushed the renovate/redis-18.x branch 2 times, most recently from 00bbf57 to 94aaccf Compare March 11, 2024 15:58
@renovate renovate bot changed the title feat(helm): update chart redis to 18.19.1 feat(helm): update chart redis to 18.19.2 Mar 11, 2024
@rosey-the-renovator-bot
Copy link
Contributor

rosey-the-renovator-bot bot commented Mar 11, 2024

--- HelmRelease: databases/redis StatefulSet: databases/redis-master

+++ HelmRelease: databases/redis StatefulSet: databases/redis-master

@@ -55,19 +55,20 @@

             weight: 1
         nodeAffinity: null
       enableServiceLinks: true
       terminationGracePeriodSeconds: 30
       containers:
       - name: redis
-        image: docker.io/bitnami/redis:7.2.4-debian-11-r5
+        image: docker.io/bitnami/redis:7.2.4-debian-12-r9
         imagePullPolicy: IfNotPresent
         securityContext:
           allowPrivilegeEscalation: false
           capabilities:
             drop:
             - ALL
+          readOnlyRootFilesystem: false
           runAsGroup: 0
           runAsNonRoot: true
           runAsUser: 1001
           seLinuxOptions: null
           seccompProfile:
             type: RuntimeDefault
@@ -109,36 +110,36 @@

           failureThreshold: 5
           exec:
             command:
             - sh
             - -c
             - /health/ping_readiness_local.sh 1
-        resources:
-          limits: {}
-          requests: {}
         volumeMounts:
         - name: start-scripts
           mountPath: /opt/bitnami/scripts/start-scripts
         - name: health
           mountPath: /health
         - name: redis-data
           mountPath: /data
         - name: config
           mountPath: /opt/bitnami/redis/mounted-etc
-        - name: redis-tmp-conf
+        - name: empty-dir
           mountPath: /opt/bitnami/redis/etc/
-        - name: tmp
+          subPath: app-conf-dir
+        - name: empty-dir
           mountPath: /tmp
+          subPath: tmp-dir
       - name: metrics
-        image: docker.io/bitnami/redis-exporter:1.57.0-debian-11-r2
+        image: docker.io/bitnami/redis-exporter:1.58.0-debian-12-r4
         imagePullPolicy: IfNotPresent
         securityContext:
           allowPrivilegeEscalation: false
           capabilities:
             drop:
             - ALL
+          readOnlyRootFilesystem: false
           runAsGroup: 0
           runAsNonRoot: true
           runAsUser: 1001
           seLinuxOptions: null
           seccompProfile:
             type: RuntimeDefault
@@ -172,31 +173,29 @@

           periodSeconds: 10
           successThreshold: 1
           timeoutSeconds: 1
           httpGet:
             path: /
             port: metrics
-        resources:
-          limits: {}
-          requests: {}
-        volumeMounts: null
+        volumeMounts:
+        - name: empty-dir
+          mountPath: /tmp
+          subPath: app-tmp-dir
       volumes:
       - name: start-scripts
         configMap:
           name: redis-scripts
           defaultMode: 493
       - name: health
         configMap:
           name: redis-health
           defaultMode: 493
       - name: config
         configMap:
           name: redis-configuration
-      - name: redis-tmp-conf
-        emptyDir: {}
-      - name: tmp
+      - name: empty-dir
         emptyDir: {}
   volumeClaimTemplates:
   - apiVersion: v1
     kind: PersistentVolumeClaim
     metadata:
       name: redis-data
--- HelmRelease: databases/redis StatefulSet: databases/redis-replicas

+++ HelmRelease: databases/redis StatefulSet: databases/redis-replicas

@@ -55,19 +55,20 @@

             weight: 1
         nodeAffinity: null
       enableServiceLinks: true
       terminationGracePeriodSeconds: 30
       containers:
       - name: redis
-        image: docker.io/bitnami/redis:7.2.4-debian-11-r5
+        image: docker.io/bitnami/redis:7.2.4-debian-12-r9
         imagePullPolicy: IfNotPresent
         securityContext:
           allowPrivilegeEscalation: false
           capabilities:
             drop:
             - ALL
+          readOnlyRootFilesystem: false
           runAsGroup: 0
           runAsNonRoot: true
           runAsUser: 1001
           seLinuxOptions: null
           seccompProfile:
             type: RuntimeDefault
@@ -121,34 +122,36 @@

           failureThreshold: 5
           exec:
             command:
             - sh
             - -c
             - /health/ping_readiness_local_and_master.sh 1
-        resources:
-          limits: {}
-          requests: {}
         volumeMounts:
         - name: start-scripts
           mountPath: /opt/bitnami/scripts/start-scripts
         - name: health
           mountPath: /health
         - name: redis-data
           mountPath: /data
         - name: config
           mountPath: /opt/bitnami/redis/mounted-etc
-        - name: redis-tmp-conf
+        - name: empty-dir
           mountPath: /opt/bitnami/redis/etc
+          subPath: app-conf-dir
+        - name: empty-dir
+          mountPath: /tmp
+          subPath: tmp-dir
       - name: metrics
-        image: docker.io/bitnami/redis-exporter:1.57.0-debian-11-r2
+        image: docker.io/bitnami/redis-exporter:1.58.0-debian-12-r4
         imagePullPolicy: IfNotPresent
         securityContext:
           allowPrivilegeEscalation: false
           capabilities:
             drop:
             - ALL
+          readOnlyRootFilesystem: false
           runAsGroup: 0
           runAsNonRoot: true
           runAsUser: 1001
           seLinuxOptions: null
           seccompProfile:
             type: RuntimeDefault
@@ -182,27 +185,27 @@

           periodSeconds: 10
           successThreshold: 1
           timeoutSeconds: 1
           httpGet:
             path: /
             port: metrics
-        resources:
-          limits: {}
-          requests: {}
-        volumeMounts: null
+        volumeMounts:
+        - name: empty-dir
+          mountPath: /tmp
+          subPath: tmp-dir
       volumes:
       - name: start-scripts
         configMap:
           name: redis-scripts
           defaultMode: 493
       - name: health
         configMap:
           name: redis-health
           defaultMode: 493
       - name: config
         configMap:
           name: redis-configuration
-      - name: redis-tmp-conf
+      - name: empty-dir
         emptyDir: {}
       - name: redis-data
         emptyDir: {}
 

@renovate renovate bot force-pushed the renovate/redis-18.x branch 3 times, most recently from a78e2a1 to b3fbbe2 Compare March 12, 2024 12:50
@rosey-the-renovator-bot
Copy link
Contributor

--- kubernetes/main/apps/databases/redis/app Kustomization: flux-system/databases-redis HelmRelease: databases/redis

+++ kubernetes/main/apps/databases/redis/app Kustomization: flux-system/databases-redis HelmRelease: databases/redis

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

     spec:
       chart: redis
       sourceRef:
         kind: HelmRepository
         name: bitnami-charts
         namespace: flux-system
-      version: 18.12.1
+      version: 18.19.2
   install:
     remediation:
       retries: 3
   interval: 15m
   upgrade:
     remediation:

@renovate renovate bot force-pushed the renovate/redis-18.x branch 3 times, most recently from 74988f6 to 7fb4c1a Compare March 12, 2024 15:48
| datasource | package | from    | to      |
| ---------- | ------- | ------- | ------- |
| helm       | redis   | 18.12.1 | 18.19.2 |
@renovate renovate bot force-pushed the renovate/redis-18.x branch from 7fb4c1a to af7345c Compare March 13, 2024 00:50
@rwlove rwlove merged commit e0c949a into main Mar 14, 2024
11 checks passed
@rwlove rwlove deleted the renovate/redis-18.x branch March 14, 2024 18:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant