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 postgresql ( 13.4.4 β†’ 14.1.0 ) #927

Merged
merged 1 commit into from
Feb 15, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 3, 2024

Mend Renovate

This PR contains the following updates:

Package Update Change
postgresql (source) major 13.4.4 -> 14.1.0

Configuration

πŸ“… Schedule: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" in timezone Europe/Berlin, 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.

@renovate renovate bot changed the title feat(helm)!: Update chart postgresql to 14.0.0 feat(helm)!: Update chart postgresql to 14.0.1 Feb 3, 2024
@renovate renovate bot changed the title feat(helm)!: Update chart postgresql to 14.0.1 feat(helm)!: Update postgresql ( 13.4.1 β†’ 14.0.1 ) Feb 5, 2024
@renovate renovate bot changed the title feat(helm)!: Update postgresql ( 13.4.1 β†’ 14.0.1 ) feat(helm)!: Update postgresql ( 13.4.1 β†’ 14.0.2 ) Feb 8, 2024
@renovate renovate bot force-pushed the renovate/postgresql-14.x branch 2 times, most recently from 2612452 to 82dc2a0 Compare February 9, 2024 00:50
@renovate renovate bot changed the title feat(helm)!: Update postgresql ( 13.4.1 β†’ 14.0.2 ) feat(helm)!: Update postgresql ( 13.4.1 β†’ 14.0.4 ) Feb 9, 2024
@renovate renovate bot changed the title feat(helm)!: Update postgresql ( 13.4.1 β†’ 14.0.4 ) feat(helm)!: Update postgresql ( 13.4.1 β†’ 14.0.5 ) Feb 12, 2024
@bot-akira
Copy link
Contributor

bot-akira bot commented Feb 12, 2024

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

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

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

     spec:
       chart: postgresql
       sourceRef:
         kind: HelmRepository
         name: bitnami
         namespace: flux-system
-      version: 13.4.4
+      version: 14.1.0
   dependsOn:
   - name: longhorn
     namespace: longhorn-system
   install:
     remediation:
       retries: 3

@bot-akira
Copy link
Contributor

bot-akira bot commented Feb 12, 2024

--- HelmRelease: database/postgresql StatefulSet: database/postgresql

+++ HelmRelease: database/postgresql StatefulSet: database/postgresql

@@ -124,24 +124,19 @@

             - /bin/sh
             - -c
             - -e
             - |
               exec pg_isready -U "postgres" -d "dbname=postgres" -h 127.0.0.1 -p 5432
               [ -f /opt/bitnami/postgresql/tmp/.initialized ] || [ -f /bitnami/postgresql/.initialized ]
-        resources:
-          limits: {}
-          requests:
-            cpu: 250m
-            memory: 256Mi
         volumeMounts:
         - name: dshm
           mountPath: /dev/shm
         - name: data
           mountPath: /bitnami/postgresql
       - name: metrics
-        image: docker.io/bitnami/postgres-exporter:0.15.0-debian-11-r7
+        image: docker.io/bitnami/postgres-exporter:0.15.0-debian-11-r9
         imagePullPolicy: IfNotPresent
         securityContext:
           allowPrivilegeEscalation: false
           capabilities:
             drop:
             - ALL
@@ -181,15 +176,12 @@

           successThreshold: 1
           timeoutSeconds: 5
           httpGet:
             path: /
             port: http-metrics
         volumeMounts: null
-        resources:
-          limits: {}
-          requests: {}
       volumes:
       - name: dshm
         emptyDir:
           medium: Memory
       - name: data
         persistentVolumeClaim:
--- HelmRelease: database/postgresql NetworkPolicy: database/postgresql

+++ HelmRelease: database/postgresql NetworkPolicy: database/postgresql

@@ -0,0 +1,39 @@

+---
+kind: NetworkPolicy
+apiVersion: networking.k8s.io/v1
+metadata:
+  name: postgresql
+  namespace: database
+  labels:
+    app.kubernetes.io/instance: postgresql
+    app.kubernetes.io/managed-by: Helm
+    app.kubernetes.io/name: postgresql
+    app.kubernetes.io/component: primary
+spec:
+  podSelector:
+    matchLabels:
+      app.kubernetes.io/instance: postgresql
+      app.kubernetes.io/name: postgresql
+      app.kubernetes.io/component: primary
+  policyTypes:
+  - Ingress
+  - Egress
+  egress:
+  - ports:
+    - port: 53
+      protocol: UDP
+    - port: 53
+      protocol: TCP
+  - ports:
+    - port: 5432
+    to:
+    - podSelector:
+        matchLabels:
+          app.kubernetes.io/instance: postgresql
+          app.kubernetes.io/name: postgresql
+          app.kubernetes.io/component: read
+  ingress:
+  - ports:
+    - port: 5432
+    - port: 9187
+
--- HelmRelease: database/postgresql NetworkPolicy: database/postgresql-read

+++ HelmRelease: database/postgresql NetworkPolicy: database/postgresql-read

@@ -0,0 +1,39 @@

+---
+kind: NetworkPolicy
+apiVersion: networking.k8s.io/v1
+metadata:
+  name: postgresql-read
+  namespace: database
+  labels:
+    app.kubernetes.io/instance: postgresql
+    app.kubernetes.io/managed-by: Helm
+    app.kubernetes.io/name: postgresql
+    app.kubernetes.io/component: read
+spec:
+  podSelector:
+    matchLabels:
+      app.kubernetes.io/instance: postgresql
+      app.kubernetes.io/name: postgresql
+      app.kubernetes.io/component: read
+  policyTypes:
+  - Ingress
+  - Egress
+  egress:
+  - ports:
+    - port: 53
+      protocol: UDP
+    - port: 53
+      protocol: TCP
+  - ports:
+    - port: 5432
+    to:
+    - podSelector:
+        matchLabels:
+          app.kubernetes.io/instance: postgresql
+          app.kubernetes.io/name: postgresql
+          app.kubernetes.io/component: primary
+  ingress:
+  - ports:
+    - port: 5432
+    - port: 9187
+

@axeII
Copy link
Owner

axeII commented Feb 12, 2024

πŸ¦™ MegaLinter status: βœ… SUCCESS

Descriptor Linter Files Fixed Errors Elapsed time

See detailed report in MegaLinter reports
Set VALIDATE_ALL_CODEBASE: true in mega-linter.yml to validate all sources, not only the diff

MegaLinter is graciously provided by OX Security

@renovate renovate bot changed the title feat(helm)!: Update postgresql ( 13.4.1 β†’ 14.0.5 ) feat(helm)!: Update postgresql ( 13.4.4 β†’ 14.0.5 ) Feb 14, 2024
@renovate renovate bot changed the title feat(helm)!: Update postgresql ( 13.4.4 β†’ 14.0.5 ) feat(helm)!: Update postgresql ( 13.4.4 β†’ 14.1.0 ) Feb 15, 2024
@axeII axeII merged commit 2986761 into main Feb 15, 2024
8 checks passed
@renovate renovate bot deleted the renovate/postgresql-14.x branch February 15, 2024 13:59
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