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 csi-driver-nfs to v4.10.0 #229

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 11, 2024

This PR contains the following updates:

Package Update Change
csi-driver-nfs minor v4.6.0 -> v4.10.0

Warning

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


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 May 11, 2024

--- kubernetes/apps/kube-system/csi-driver-nfs/app Kustomization: flux-system/cluster-apps-csi-driver-nfs HelmRelease: kube-system/csi-driver-nfs

+++ kubernetes/apps/kube-system/csi-driver-nfs/app Kustomization: flux-system/cluster-apps-csi-driver-nfs HelmRelease: kube-system/csi-driver-nfs

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

     spec:
       chart: csi-driver-nfs
       sourceRef:
         kind: HelmRepository
         name: csi-driver-nfs
         namespace: flux-system
-      version: v4.6.0
+      version: v4.10.0
   install:
     remediation:
       retries: 3
   interval: 30m
   maxHistory: 2
   uninstall:

Copy link

github-actions bot commented May 11, 2024

--- HelmRelease: kube-system/csi-driver-nfs ClusterRole: kube-system/nfs-external-provisioner-role

+++ HelmRelease: kube-system/csi-driver-nfs ClusterRole: kube-system/nfs-external-provisioner-role

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

   - persistentvolumes
   verbs:
   - get
   - list
   - watch
   - create
+  - patch
   - delete
 - apiGroups:
   - ''
   resources:
   - persistentvolumeclaims
   verbs:
--- HelmRelease: kube-system/csi-driver-nfs DaemonSet: kube-system/csi-nfs-node

+++ HelmRelease: kube-system/csi-driver-nfs DaemonSet: kube-system/csi-nfs-node

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

       nodeSelector:
         kubernetes.io/os: linux
       tolerations:
       - operator: Exists
       containers:
       - name: liveness-probe
-        image: registry.k8s.io/sig-storage/livenessprobe:v2.12.0
+        image: registry.k8s.io/sig-storage/livenessprobe:v2.15.0
         args:
         - --csi-address=/csi/csi.sock
         - --probe-timeout=3s
         - --http-endpoint=localhost:29653
         - --v=2
         imagePullPolicy: IfNotPresent
@@ -56,21 +56,13 @@

         securityContext:
           readOnlyRootFilesystem: true
           capabilities:
             drop:
             - ALL
       - name: node-driver-registrar
-        image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.10.0
-        livenessProbe:
-          exec:
-            command:
-            - /csi-node-driver-registrar
-            - --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)
-            - --mode=kubelet-registration-probe
-          initialDelaySeconds: 30
-          timeoutSeconds: 15
+        image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.13.0
         args:
         - --v=2
         - --csi-address=/csi/csi.sock
         - --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)
         env:
         - name: DRIVER_REG_SOCK_PATH
@@ -101,13 +93,13 @@

           capabilities:
             add:
             - SYS_ADMIN
             drop:
             - ALL
           allowPrivilegeEscalation: true
-        image: registry.k8s.io/sig-storage/nfsplugin:v4.6.0
+        image: registry.k8s.io/sig-storage/nfsplugin:v4.10.0
         args:
         - --v=5
         - --nodeid=$(NODE_ID)
         - --endpoint=$(CSI_ENDPOINT)
         - --drivername=nfs.csi.k8s.io
         - --mount-permissions=0
--- HelmRelease: kube-system/csi-driver-nfs Deployment: kube-system/csi-nfs-controller

+++ HelmRelease: kube-system/csi-driver-nfs Deployment: kube-system/csi-nfs-controller

@@ -39,22 +39,27 @@

       - effect: NoSchedule
         key: node-role.kubernetes.io/controlplane
         operator: Exists
       - effect: NoSchedule
         key: node-role.kubernetes.io/control-plane
         operator: Exists
+      - effect: NoSchedule
+        key: CriticalAddonsOnly
+        operator: Exists
       containers:
       - name: csi-provisioner
-        image: registry.k8s.io/sig-storage/csi-provisioner:v4.0.0
+        image: registry.k8s.io/sig-storage/csi-provisioner:v5.2.0
         args:
         - -v=2
         - --csi-address=$(ADDRESS)
         - --leader-election
         - --leader-election-namespace=kube-system
         - --extra-create-metadata=true
+        - --feature-gates=HonorPVReclaimPolicy=true
         - --timeout=1200s
+        - --retry-interval-max=30m
         env:
         - name: ADDRESS
           value: /csi/csi.sock
         imagePullPolicy: IfNotPresent
         volumeMounts:
         - mountPath: /csi
@@ -67,20 +72,46 @@

             memory: 20Mi
         securityContext:
           readOnlyRootFilesystem: true
           capabilities:
             drop:
             - ALL
+      - name: csi-resizer
+        image: registry.k8s.io/sig-storage/csi-resizer:v1.13.1
+        args:
+        - -csi-address=$(ADDRESS)
+        - -v=2
+        - -leader-election
+        - --leader-election-namespace=kube-system
+        - -handle-volume-inuse-error=false
+        env:
+        - name: ADDRESS
+          value: /csi/csi.sock
+        imagePullPolicy: IfNotPresent
+        volumeMounts:
+        - name: socket-dir
+          mountPath: /csi
+        resources:
+          limits:
+            memory: 400Mi
+          requests:
+            cpu: 10m
+            memory: 20Mi
+        securityContext:
+          capabilities:
+            drop:
+            - ALL
       - name: csi-snapshotter
-        image: registry.k8s.io/sig-storage/csi-snapshotter:v6.3.3
+        image: registry.k8s.io/sig-storage/csi-snapshotter:v8.2.0
         args:
         - --v=2
         - --csi-address=$(ADDRESS)
         - --leader-election-namespace=kube-system
         - --leader-election
         - --timeout=1200s
+        - --retry-interval-max=30m
         env:
         - name: ADDRESS
           value: /csi/csi.sock
         imagePullPolicy: IfNotPresent
         resources:
           limits:
@@ -93,13 +124,13 @@

           mountPath: /csi
         securityContext:
           capabilities:
             drop:
             - ALL
       - name: liveness-probe
-        image: registry.k8s.io/sig-storage/livenessprobe:v2.12.0
+        image: registry.k8s.io/sig-storage/livenessprobe:v2.15.0
         args:
         - --csi-address=/csi/csi.sock
         - --probe-timeout=3s
         - --http-endpoint=localhost:29652
         - --v=2
         imagePullPolicy: IfNotPresent
@@ -115,13 +146,13 @@

         securityContext:
           readOnlyRootFilesystem: true
           capabilities:
             drop:
             - ALL
       - name: nfs
-        image: registry.k8s.io/sig-storage/nfsplugin:v4.6.0
+        image: registry.k8s.io/sig-storage/nfsplugin:v4.10.0
         securityContext:
           privileged: true
           capabilities:
             add:
             - SYS_ADMIN
             drop:
@@ -133,12 +164,13 @@

         - --nodeid=$(NODE_ID)
         - --endpoint=$(CSI_ENDPOINT)
         - --drivername=nfs.csi.k8s.io
         - --mount-permissions=0
         - --working-mount-dir=/tmp
         - --default-ondelete-policy=delete
+        - --use-tar-command-in-snapshot=false
         env:
         - name: NODE_ID
           valueFrom:
             fieldRef:
               fieldPath: spec.nodeName
         - name: CSI_ENDPOINT
@@ -155,14 +187,12 @@

         volumeMounts:
         - name: pods-mount-dir
           mountPath: /var/lib/kubelet/pods
           mountPropagation: Bidirectional
         - mountPath: /csi
           name: socket-dir
-        - mountPath: /tmp
-          name: tmp-dir
         resources:
           limits:
             memory: 200Mi
           requests:
             cpu: 10m
             memory: 20Mi
@@ -170,9 +200,7 @@

       - name: pods-mount-dir
         hostPath:
           path: /var/lib/kubelet/pods
           type: Directory
       - name: socket-dir
         emptyDir: {}
-      - name: tmp-dir
-        emptyDir: {}
 
--- HelmRelease: kube-system/csi-driver-nfs ClusterRole: kube-system/nfs-external-resizer-role

+++ HelmRelease: kube-system/csi-driver-nfs ClusterRole: kube-system/nfs-external-resizer-role

@@ -0,0 +1,57 @@

+---
+kind: ClusterRole
+apiVersion: rbac.authorization.k8s.io/v1
+metadata:
+  name: nfs-external-resizer-role
+  labels:
+    app.kubernetes.io/instance: csi-driver-nfs
+    app.kubernetes.io/managed-by: Helm
+    app.kubernetes.io/name: csi-driver-nfs
+rules:
+- apiGroups:
+  - ''
+  resources:
+  - persistentvolumes
+  verbs:
+  - get
+  - list
+  - watch
+  - update
+  - patch
+- apiGroups:
+  - ''
+  resources:
+  - persistentvolumeclaims
+  verbs:
+  - get
+  - list
+  - watch
+- apiGroups:
+  - ''
+  resources:
+  - persistentvolumeclaims/status
+  verbs:
+  - update
+  - patch
+- apiGroups:
+  - ''
+  resources:
+  - events
+  verbs:
+  - list
+  - watch
+  - create
+  - update
+  - patch
+- apiGroups:
+  - coordination.k8s.io
+  resources:
+  - leases
+  verbs:
+  - get
+  - list
+  - watch
+  - create
+  - update
+  - patch
+
--- HelmRelease: kube-system/csi-driver-nfs ClusterRoleBinding: kube-system/nfs-csi-resizer-role

+++ HelmRelease: kube-system/csi-driver-nfs ClusterRoleBinding: kube-system/nfs-csi-resizer-role

@@ -0,0 +1,18 @@

+---
+kind: ClusterRoleBinding
+apiVersion: rbac.authorization.k8s.io/v1
+metadata:
+  name: nfs-csi-resizer-role
+  labels:
+    app.kubernetes.io/instance: csi-driver-nfs
+    app.kubernetes.io/managed-by: Helm
+    app.kubernetes.io/name: csi-driver-nfs
+subjects:
+- kind: ServiceAccount
+  name: csi-nfs-controller-sa
+  namespace: kube-system
+roleRef:
+  kind: ClusterRole
+  name: nfs-external-resizer-role
+  apiGroup: rbac.authorization.k8s.io
+

@renovate renovate bot changed the title feat(helm): update chart csi-driver-nfs to v4.7.0 feat(helm): update chart csi-driver-nfs to v4.8.0 Jul 18, 2024
@renovate renovate bot force-pushed the renovate/csi-driver-nfs-4.x branch from 8022455 to 46e6468 Compare July 18, 2024 14:49
@renovate renovate bot changed the title feat(helm): update chart csi-driver-nfs to v4.8.0 feat(helm): update chart csi-driver-nfs to v4.9.0 Sep 3, 2024
@renovate renovate bot force-pushed the renovate/csi-driver-nfs-4.x branch from 46e6468 to d1f9b10 Compare September 3, 2024 14:17
@renovate renovate bot changed the title feat(helm): update chart csi-driver-nfs to v4.9.0 feat(helm): update chart csi-driver-nfs to v4.10.0 Jan 24, 2025
@renovate renovate bot force-pushed the renovate/csi-driver-nfs-4.x branch from d1f9b10 to 1da9cd2 Compare January 24, 2025 04:33
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