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 memcached to v6.14.0 #61

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 15, 2024

This PR contains the following updates:

Package Update Change
memcached (source) minor 6.6.7 -> 6.14.0

Warning

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


Release Notes

bitnami/charts (memcached)

v6.14.0

v6.13.0

  • [bitnami/memcached] feat: ✨ 🔒 Add automatic adaptation for Openshift restricted-v2 SCC (45edf5f), closes #​24118

v6.12.2

v6.12.1

v6.10.1

v6.9.3

v6.9.2

v6.9.0

  • [bitnami/memcached] fix: 🔒 Move service-account token auto-mount to pod declaration (#​22431) (6609782), closes #​22431

v6.8.1

v6.8.0

  • [bitnami/memcached] fix: 🔒 Improve podSecurityContext and containerSecurityContext with essenti (a2737d0), closes #​22153

v6.7.4

v6.7.3

v6.7.2

v6.7.1

  • [bitnami/*] Remove relative links to non-README sections, add verification for that and update TL;DR (1103633), closes #​20967
  • [bitnami/*] Rename solutions to "Bitnami package for ..." (#​21038) (b82f979), closes #​21038
  • [bitnami/memcached] Release 6.7.1 updating components versions (#​21139) (a26ddc4), closes #​21139

v6.7.0

v6.6.8


Configuration

📅 Schedule: Branch creation - "on saturday" (UTC), 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 was generated by Mend Renovate. View the repository job log.

Copy link

github-actions bot commented Jan 15, 2024

--- kubernetes/apps/storage/seafile/memcached Kustomization: flux-system/cluster-apps-storage-seafile-memcached HelmRelease: seafile/seafile-memcached

+++ kubernetes/apps/storage/seafile/memcached Kustomization: flux-system/cluster-apps-storage-seafile-memcached HelmRelease: seafile/seafile-memcached

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

       chart: memcached
       interval: 15m
       sourceRef:
         kind: HelmRepository
         name: bitnami
         namespace: flux-system
-      version: 6.6.7
+      version: 6.14.0
   install:
     remediation:
       retries: 3
   interval: 15m
   maxHistory: 2
   uninstall:

Copy link

github-actions bot commented Jan 15, 2024

--- HelmRelease: seafile/seafile-memcached Deployment: seafile/seafile-memcached

+++ HelmRelease: seafile/seafile-memcached Deployment: seafile/seafile-memcached

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

       labels:
         app.kubernetes.io/instance: seafile-memcached
         app.kubernetes.io/managed-by: Helm
         app.kubernetes.io/name: memcached
       annotations: null
     spec:
+      automountServiceAccountToken: false
       affinity:
         podAffinity: null
         podAntiAffinity:
           preferredDuringSchedulingIgnoredDuringExecution:
           - podAffinityTerm:
               labelSelector:
@@ -36,20 +37,33 @@

                   app.kubernetes.io/name: memcached
               topologyKey: kubernetes.io/hostname
             weight: 1
         nodeAffinity: null
       securityContext:
         fsGroup: 1001
-      serviceAccountName: default
+        fsGroupChangePolicy: Always
+        supplementalGroups: []
+        sysctls: []
+      serviceAccountName: seafile-memcached
       containers:
       - name: memcached
-        image: docker.io/bitnami/memcached:1.6.22-debian-11-r0
+        image: docker.io/bitnami/memcached:1.6.24-debian-12-r0
         imagePullPolicy: IfNotPresent
         securityContext:
+          allowPrivilegeEscalation: false
+          capabilities:
+            drop:
+            - ALL
+          privileged: false
+          readOnlyRootFilesystem: false
+          runAsGroup: 1001
           runAsNonRoot: true
           runAsUser: 1001
+          seLinuxOptions: null
+          seccompProfile:
+            type: RuntimeDefault
         env:
         - name: BITNAMI_DEBUG
           value: 'false'
         - name: MEMCACHED_PORT_NUMBER
           value: '11211'
         ports:
@@ -68,18 +82,17 @@

           initialDelaySeconds: 5
           periodSeconds: 5
           successThreshold: 1
           timeoutSeconds: 3
           tcpSocket:
             port: memcache
-        resources:
-          limits: {}
-          requests:
-            cpu: 250m
-            memory: 256Mi
         volumeMounts:
-        - name: tmp
+        - name: empty-dir
+          mountPath: /opt/bitnami/memcached/conf
+          subPath: app-conf-dir
+        - name: empty-dir
           mountPath: /tmp
+          subPath: tmp-dir
       volumes:
-      - name: tmp
+      - name: empty-dir
         emptyDir: {}
 
--- HelmRelease: seafile/seafile-memcached NetworkPolicy: seafile/seafile-memcached

+++ HelmRelease: seafile/seafile-memcached NetworkPolicy: seafile/seafile-memcached

@@ -0,0 +1,27 @@

+---
+kind: NetworkPolicy
+apiVersion: networking.k8s.io/v1
+metadata:
+  name: seafile-memcached
+  namespace: seafile
+  labels:
+    app.kubernetes.io/instance: seafile-memcached
+    app.kubernetes.io/managed-by: Helm
+    app.kubernetes.io/name: memcached
+spec:
+  podSelector:
+    matchLabels:
+      app.kubernetes.io/instance: seafile-memcached
+      app.kubernetes.io/managed-by: Helm
+      app.kubernetes.io/name: memcached
+      app.kubernetes.io/version: 1.6.24
+      helm.sh/chart: memcached-6.14.0
+  policyTypes:
+  - Ingress
+  - Egress
+  egress:
+  - {}
+  ingress:
+  - ports:
+    - port: 11211
+
--- HelmRelease: seafile/seafile-memcached ServiceAccount: seafile/seafile-memcached

+++ HelmRelease: seafile/seafile-memcached ServiceAccount: seafile/seafile-memcached

@@ -0,0 +1,12 @@

+---
+apiVersion: v1
+kind: ServiceAccount
+automountServiceAccountToken: false
+metadata:
+  name: seafile-memcached
+  namespace: seafile
+  labels:
+    app.kubernetes.io/instance: seafile-memcached
+    app.kubernetes.io/managed-by: Helm
+    app.kubernetes.io/name: memcached
+

@renovate renovate bot force-pushed the renovate/memcached-6.x branch 2 times, most recently from 68e4104 to f6c200f Compare January 15, 2024 09:51
@renovate renovate bot changed the title feat(container): update image memcached to v6.7.3 feat(container): update image memcached to v6.7.4 Jan 15, 2024
@renovate renovate bot force-pushed the renovate/memcached-6.x branch from f6c200f to d81490f Compare January 16, 2024 14:25
@renovate renovate bot changed the title feat(container): update image memcached to v6.7.4 feat(container): update image memcached to v6.8.0 Jan 16, 2024
@renovate renovate bot changed the title feat(container): update image memcached to v6.8.0 feat(container): update image memcached to v6.8.1 Jan 18, 2024
@renovate renovate bot force-pushed the renovate/memcached-6.x branch 2 times, most recently from 14be652 to 325f793 Compare January 22, 2024 15:14
@renovate renovate bot changed the title feat(container): update image memcached to v6.8.1 feat(container): update image memcached to v6.9.0 Jan 22, 2024
@renovate renovate bot force-pushed the renovate/memcached-6.x branch from 325f793 to e69bff4 Compare January 29, 2024 12:24
@renovate renovate bot changed the title feat(container): update image memcached to v6.9.0 feat(container): update image memcached to v6.9.2 Jan 29, 2024
@renovate renovate bot force-pushed the renovate/memcached-6.x branch from e69bff4 to c2bef3f Compare January 31, 2024 06:53
@renovate renovate bot changed the title feat(container): update image memcached to v6.9.2 feat(container): update image memcached to v6.9.3 Jan 31, 2024
@renovate renovate bot changed the title feat(container): update image memcached to v6.9.3 feat(container): update image memcached to v6.10.1 Feb 3, 2024
@renovate renovate bot force-pushed the renovate/memcached-6.x branch from c2bef3f to 5bec1de Compare February 3, 2024 05:06
@renovate renovate bot force-pushed the renovate/memcached-6.x branch from 5bec1de to c8685f3 Compare February 16, 2024 13:52
@renovate renovate bot changed the title feat(container): update image memcached to v6.10.1 feat(container): update image memcached to v6.11.4 Feb 16, 2024
@renovate renovate bot force-pushed the renovate/memcached-6.x branch from c8685f3 to 096c71f Compare February 16, 2024 21:29
@renovate renovate bot changed the title feat(container): update image memcached to v6.11.4 feat(container): update image memcached to v6.11.5 Feb 16, 2024
@renovate renovate bot force-pushed the renovate/memcached-6.x branch from 096c71f to db4a367 Compare February 21, 2024 19:00
@renovate renovate bot changed the title feat(container): update image memcached to v6.11.5 feat(container): update image memcached to v6.12.1 Feb 21, 2024
@renovate renovate bot force-pushed the renovate/memcached-6.x branch from db4a367 to 3c0b253 Compare February 28, 2024 06:10
@renovate renovate bot changed the title feat(container): update image memcached to v6.12.1 feat(container): update image memcached to v6.12.2 Feb 28, 2024
@renovate renovate bot force-pushed the renovate/memcached-6.x branch from 3c0b253 to d90e030 Compare March 5, 2024 20:29
@renovate renovate bot changed the title feat(container): update image memcached to v6.12.2 feat(container): update image memcached to v6.13.0 Mar 5, 2024
@renovate renovate bot changed the title feat(container): update image memcached to v6.13.0 feat(container): update image memcached to v6.14.0 Mar 6, 2024
@renovate renovate bot force-pushed the renovate/memcached-6.x branch from d90e030 to 6c4f635 Compare March 6, 2024 16:40
@renovate renovate bot force-pushed the renovate/memcached-6.x branch from 6c4f635 to 89ddf28 Compare May 27, 2024 11:11
@renovate renovate bot force-pushed the renovate/memcached-6.x branch from 89ddf28 to 5cd06a4 Compare October 11, 2024 04:16
@renovate renovate bot force-pushed the renovate/memcached-6.x branch from 5cd06a4 to feb77c2 Compare October 31, 2024 04:18
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.

0 participants