feat(container)!: Update docker.io/nextcloud ( 33.0.8 → 34.0.3 ) - #383
Open
renovate[bot] wants to merge 1 commit into
Open
feat(container)!: Update docker.io/nextcloud ( 33.0.8 → 34.0.3 )#383renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
--- HelmRelease: default/nextcloud Deployment: default/nextcloud
+++ HelmRelease: default/nextcloud Deployment: default/nextcloud
@@ -28,13 +28,13 @@
php-config-hash: 44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a
nginx-config-hash: 18dd8f905a93ed27f032e9ae68084222ed7e5926f7144cda17b979780f4da54b
hooks-hash: 9525c2748a6c7cd0e28ec740623d0b3fa5a75c83b51ccfd136bc89c76737b204
spec:
containers:
- name: nextcloud
- image: docker.io/nextcloud:33.0.8-fpm-alpine
+ image: docker.io/nextcloud:34.0.3-fpm-alpine
imagePullPolicy: IfNotPresent
env:
- name: POSTGRES_HOST
value: postgres-primary.databases.svc:5432
- name: POSTGRES_DB
value: nextcloud
@@ -173,13 +173,13 @@
subPath: themes
- name: nextcloud-nginx-config
mountPath: /etc/nginx/conf.d/
- mountPath: /mnt/nfs
name: nfs
- name: nextcloud-cron
- image: docker.io/nextcloud:33.0.8-fpm-alpine
+ image: docker.io/nextcloud:34.0.3-fpm-alpine
imagePullPolicy: IfNotPresent
command:
- /cron.sh
env:
- name: POSTGRES_HOST
value: postgres-primary.databases.svc:5432 |
--- kubernetes/apps/default/nextcloud/app Kustomization: flux-system/nextcloud HelmRelease: default/nextcloud
+++ kubernetes/apps/default/nextcloud/app Kustomization: flux-system/nextcloud HelmRelease: default/nextcloud
@@ -26,13 +26,13 @@
cleanupOnFail: true
remediation:
retries: 3
strategy: rollback
valuesFrom:
- kind: ConfigMap
- name: nextcloud-helm-values-gb62hm5g79
+ name: nextcloud-helm-values-b9g8fhk5h8
- kind: Secret
name: nextcloud
optional: false
targetPath: externalDatabase.password
valuesKey: postgresql_pass
--- kubernetes/apps/default/nextcloud/app Kustomization: flux-system/nextcloud ConfigMap: default/nextcloud-helm-values-gb62hm5g79
+++ kubernetes/apps/default/nextcloud/app Kustomization: flux-system/nextcloud ConfigMap: default/nextcloud-helm-values-gb62hm5g79
@@ -1,170 +0,0 @@
----
-apiVersion: v1
-data:
- values.yaml: |+
- image:
- registry: docker.io
- repository: nextcloud
- tag: 33.0.8-fpm-alpine
- nginx:
- enabled: true
- # resources:
- # requests:
- # cpu: 500m
- # memory: 500Mi
- # limits:
- # memory: 8Gi
- replicaCount: 1
- env:
- TZ: Europe/Lisbon
- # PHP_MEMORY_LIMIT: 256M
-
- # podSecurityContext:
-
- # supplementalGroups:
- # - 100
-
- affinity: &affinity
- nodeAffinity:
- preferredDuringSchedulingIgnoredDuringExecution:
- - weight: 1
- preference:
- matchExpressions:
- - key: node-priority
- operator: In
- values:
- - "1"
- - weight: 2
- preference:
- matchExpressions:
- - key: node-priority
- operator: In
- values:
- - "2"
-
-
- persistence:
- existingClaim: nextcloud
- enabled: true
- # accessMode: ReadWriteMany
- # storageClass: longhorn
- # nextcloudData:
- # accessMode: ReadWriteMany
- # enabled: false
- # existingClaim: nextcloud
- resources:
- requests:
- cpu: 200m
- memory: 256Mi
- limits:
- memory: 4Gi
- hpa:
- enabled: false
-
- ingress:
- enabled: false
- service:
- annotations:
- traefik.ingress.kubernetes.io/service.sticky.cookie: "true"
-
- nextcloud:
- host: nc...PLACEHOLDER_SECRET_PUBLIC_DOMAIN1..
-
- existingSecret:
- enabled: true
- secretName: nextcloud
- usernameKey: admin_user
- passwordKey: admin_password
-
-
- extraVolumes:
- - name: nfs
- nfs:
- server: "..PLACEHOLDER_SECRET_NFS_ADDR.."
- path: "/all"
- readOnly: false
- extraVolumeMounts:
- - name: nfs
- mountPath: "/mnt/nfs"
-
- configs:
- proxy.config.php: |-
- <?php
- $CONFIG = array (
- 'trusted_proxies' => array(
- '127.0.0.1', // Loopback address (localhost)
- '10.0.0.0/8', // RFC1918 - Class A private network range
- '172.16.0.0/12', // RFC1918 - Class B private network range
- '192.168.0.0/16', // RFC1918 - Class C private network range
- ),
- 'trusted_domains' =>
- array(
- 0 => 'nc...PLACEHOLDER_SECRET_PUBLIC_DOMAIN1..',
- 1 => 'nc...PLACEHOLDER_SECRET_PRIVATE_DOMAIN..',
- 2 => 'localhost',
- ),
- 'forwarded_for_headers' => array('HTTP_X_FORWARDED_FOR'),
- );
- internalDatabase:
- enabled: false
-
- externalDatabase:
- enabled: true
- type: postgresql
- host: postgres-primary.databases.svc:5432
- database: nextcloud
- user: nextcloud
- # password: set by valuesFrom
-
- externalRedis:
- enabled: true
-
- ## Redis host
- host: "dragonfly.databases.svc.cluster.local"
-
- ## Redis port
- port: "6379"
-
-
- cronjob:
- enabled: true
- failedJobsHistoryLimit: 1
- successfulJobsHistoryLimit: 1
- curlInsecure:
- resources:
- requests:
- cpu: 5m
- memory: 10Mi
- limits:
- memory: 1Gi
-
- postgresql:
- enabled: false
-
- redis:
- enabled: false
- affinity: *affinity
- architecture: standalone
- auth:
- enabled: false
-
- startupProbe:
- enabled: false
- # initialDelaySeconds: 60
- # periodSeconds: 30
- # timeoutSeconds: 10
- # failureThreshold: 10
- # successThreshold: 1
- livenessProbe:
- enabled: false
- readinessProbe:
- enabled: false
-
-kind: ConfigMap
-metadata:
- labels:
- kustomize.toolkit.fluxcd.io/name: nextcloud
- kustomize.toolkit.fluxcd.io/namespace: flux-system
- name: nextcloud-helm-values-gb62hm5g79
- namespace: default
-
--- kubernetes/apps/default/nextcloud/app Kustomization: flux-system/nextcloud ConfigMap: default/nextcloud-helm-values-b9g8fhk5h8
+++ kubernetes/apps/default/nextcloud/app Kustomization: flux-system/nextcloud ConfigMap: default/nextcloud-helm-values-b9g8fhk5h8
@@ -0,0 +1,170 @@
+---
+apiVersion: v1
+data:
+ values.yaml: |+
+ image:
+ registry: docker.io
+ repository: nextcloud
+ tag: 34.0.3-fpm-alpine
+ nginx:
+ enabled: true
+ # resources:
+ # requests:
+ # cpu: 500m
+ # memory: 500Mi
+ # limits:
+ # memory: 8Gi
+ replicaCount: 1
+ env:
+ TZ: Europe/Lisbon
+ # PHP_MEMORY_LIMIT: 256M
+
+ # podSecurityContext:
+
+ # supplementalGroups:
+ # - 100
+
+ affinity: &affinity
+ nodeAffinity:
+ preferredDuringSchedulingIgnoredDuringExecution:
+ - weight: 1
+ preference:
+ matchExpressions:
+ - key: node-priority
+ operator: In
+ values:
+ - "1"
+ - weight: 2
+ preference:
+ matchExpressions:
+ - key: node-priority
+ operator: In
+ values:
+ - "2"
+
+
+ persistence:
+ existingClaim: nextcloud
+ enabled: true
+ # accessMode: ReadWriteMany
+ # storageClass: longhorn
+ # nextcloudData:
+ # accessMode: ReadWriteMany
+ # enabled: false
+ # existingClaim: nextcloud
+ resources:
+ requests:
+ cpu: 200m
+ memory: 256Mi
+ limits:
+ memory: 4Gi
+ hpa:
+ enabled: false
+
+ ingress:
+ enabled: false
+ service:
+ annotations:
+ traefik.ingress.kubernetes.io/service.sticky.cookie: "true"
+
+ nextcloud:
+ host: nc...PLACEHOLDER_SECRET_PUBLIC_DOMAIN1..
+
+ existingSecret:
+ enabled: true
+ secretName: nextcloud
+ usernameKey: admin_user
+ passwordKey: admin_password
+
+
+ extraVolumes:
+ - name: nfs
+ nfs:
+ server: "..PLACEHOLDER_SECRET_NFS_ADDR.."
+ path: "/all"
+ readOnly: false
+ extraVolumeMounts:
+ - name: nfs
+ mountPath: "/mnt/nfs"
+
+ configs:
+ proxy.config.php: |-
+ <?php
+ $CONFIG = array (
+ 'trusted_proxies' => array(
+ '127.0.0.1', // Loopback address (localhost)
+ '10.0.0.0/8', // RFC1918 - Class A private network range
+ '172.16.0.0/12', // RFC1918 - Class B private network range
+ '192.168.0.0/16', // RFC1918 - Class C private network range
+ ),
+ 'trusted_domains' =>
+ array(
+ 0 => 'nc...PLACEHOLDER_SECRET_PUBLIC_DOMAIN1..',
+ 1 => 'nc...PLACEHOLDER_SECRET_PRIVATE_DOMAIN..',
+ 2 => 'localhost',
+ ),
+ 'forwarded_for_headers' => array('HTTP_X_FORWARDED_FOR'),
+ );
+ internalDatabase:
+ enabled: false
+
+ externalDatabase:
+ enabled: true
+ type: postgresql
+ host: postgres-primary.databases.svc:5432
+ database: nextcloud
+ user: nextcloud
+ # password: set by valuesFrom
+
+ externalRedis:
+ enabled: true
+
+ ## Redis host
+ host: "dragonfly.databases.svc.cluster.local"
+
+ ## Redis port
+ port: "6379"
+
+
+ cronjob:
+ enabled: true
+ failedJobsHistoryLimit: 1
+ successfulJobsHistoryLimit: 1
+ curlInsecure:
+ resources:
+ requests:
+ cpu: 5m
+ memory: 10Mi
+ limits:
+ memory: 1Gi
+
+ postgresql:
+ enabled: false
+
+ redis:
+ enabled: false
+ affinity: *affinity
+ architecture: standalone
+ auth:
+ enabled: false
+
+ startupProbe:
+ enabled: false
+ # initialDelaySeconds: 60
+ # periodSeconds: 30
+ # timeoutSeconds: 10
+ # failureThreshold: 10
+ # successThreshold: 1
+ livenessProbe:
+ enabled: false
+ readinessProbe:
+ enabled: false
+
+kind: ConfigMap
+metadata:
+ labels:
+ kustomize.toolkit.fluxcd.io/name: nextcloud
+ kustomize.toolkit.fluxcd.io/namespace: flux-system
+ name: nextcloud-helm-values-b9g8fhk5h8
+ namespace: default
+ |
renovate
Bot
force-pushed
the
renovate/docker.io-nextcloud-34.x
branch
from
July 1, 2026 02:00
1ab5ae6 to
305c982
Compare
renovate
Bot
force-pushed
the
renovate/docker.io-nextcloud-34.x
branch
from
July 4, 2026 21:09
305c982 to
2379862
Compare
renovate
Bot
force-pushed
the
renovate/docker.io-nextcloud-34.x
branch
from
July 24, 2026 02:47
2379862 to
eabf11b
Compare
renovate
Bot
force-pushed
the
renovate/docker.io-nextcloud-34.x
branch
from
July 25, 2026 13:56
eabf11b to
36facc3
Compare
renovate
Bot
force-pushed
the
renovate/docker.io-nextcloud-34.x
branch
from
August 14, 2026 20:53
36facc3 to
46f7cee
Compare
renovate
Bot
force-pushed
the
renovate/docker.io-nextcloud-34.x
branch
from
August 15, 2026 05:31
46f7cee to
332bb83
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
33.0.8-fpm-alpine→34.0.3-fpm-alpineConfiguration
📅 Schedule: (in timezone Europe/Lisbon)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.