Skip to content

Conversation

@terminator-bot
Copy link
Contributor

@terminator-bot terminator-bot bot commented Feb 1, 2026

This PR contains the following updates:

Package Update Change
snapshot-controller major 4.0.15.0.2

Release Notes

piraeusdatastore/helm-charts (snapshot-controller)

v5.0.2

Compare Source

Deploys a Snapshot Controller in a cluster. Snapshot Controllers are often bundled with the Kubernetes distribution, this chart is meant for cases where it is not.

v5.0.1

Compare Source

Deploys a Snapshot Controller in a cluster. Snapshot Controllers are often bundled with the Kubernetes distribution, this chart is meant for cases where it is not.

v5.0.0

Compare Source

Deploys a Snapshot Controller in a cluster. Snapshot Controllers are often bundled with the Kubernetes distribution, this chart is meant for cases where it is not.

v4.2.0

Compare Source

Deploys a Snapshot Controller in a cluster. Snapshot Controllers are often bundled with the Kubernetes distribution, this chart is meant for cases where it is not.

v4.1.1

Compare Source

Deploys a Snapshot Controller in a cluster. Snapshot Controllers are often bundled with the Kubernetes distribution, this chart is meant for cases where it is not.

v4.1.0

Compare Source

Deploys a Snapshot Controller in a cluster. Snapshot Controllers are often bundled with the Kubernetes distribution, this chart is meant for cases where it is not.

v4.0.2

Compare Source

Deploys a Snapshot Controller in a cluster. Snapshot Controllers are often bundled with the Kubernetes distribution, this chart is meant for cases where it is not.


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 Renovate Bot.

| datasource | package             | from  | to    |
| ---------- | ------------------- | ----- | ----- |
| helm       | snapshot-controller | 4.0.1 | 5.0.2 |
@github-actions github-actions bot added the area/kubernetes Changes made in the kubernetes directory label Feb 1, 2026
@github-actions
Copy link

github-actions bot commented Feb 1, 2026

--- HelmRelease: storage/snapshot-controller Deployment: storage/snapshot-controller

+++ HelmRelease: storage/snapshot-controller Deployment: storage/snapshot-controller

@@ -29,15 +29,16 @@

           capabilities:
             drop:
             - ALL
           readOnlyRootFilesystem: true
           runAsNonRoot: true
           runAsUser: 1000
-        image: registry.k8s.io/sig-storage/snapshot-controller:v8.2.0
+        image: registry.k8s.io/sig-storage/snapshot-controller:v8.4.0
         imagePullPolicy: IfNotPresent
         args:
+        - --feature-gates=CSIVolumeGroupSnapshot=true
         - --http-endpoint=:8080
         - --leader-election=true
         - --leader-election-namespace=$(NAMESPACE)
         ports:
         - name: http
           containerPort: 8080
--- HelmRelease: storage/snapshot-controller ServiceAccount: storage/snapshot-controller-conversion-webhook

+++ HelmRelease: storage/snapshot-controller ServiceAccount: storage/snapshot-controller-conversion-webhook

@@ -0,0 +1,11 @@

+---
+apiVersion: v1
+kind: ServiceAccount
+metadata:
+  name: snapshot-controller-conversion-webhook
+  namespace: storage
+  labels:
+    app.kubernetes.io/name: conversion-webhook
+    app.kubernetes.io/instance: snapshot-controller
+    app.kubernetes.io/managed-by: Helm
+
--- HelmRelease: storage/snapshot-controller Service: storage/snapshot-controller-conversion-webhook

+++ HelmRelease: storage/snapshot-controller Service: storage/snapshot-controller-conversion-webhook

@@ -0,0 +1,19 @@

+---
+apiVersion: v1
+kind: Service
+metadata:
+  name: snapshot-controller-conversion-webhook
+  namespace: storage
+  labels:
+    app.kubernetes.io/name: conversion-webhook
+    app.kubernetes.io/instance: snapshot-controller
+    app.kubernetes.io/managed-by: Helm
+spec:
+  ports:
+  - port: 443
+    targetPort: 8443
+    name: https
+  selector:
+    app.kubernetes.io/name: conversion-webhook
+    app.kubernetes.io/instance: snapshot-controller
+
--- HelmRelease: storage/snapshot-controller Deployment: storage/snapshot-controller-conversion-webhook

+++ HelmRelease: storage/snapshot-controller Deployment: storage/snapshot-controller-conversion-webhook

@@ -0,0 +1,61 @@

+---
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+  name: snapshot-controller-conversion-webhook
+  namespace: storage
+  labels:
+    app.kubernetes.io/name: conversion-webhook
+    app.kubernetes.io/instance: snapshot-controller
+    app.kubernetes.io/managed-by: Helm
+spec:
+  replicas: 1
+  revisionHistoryLimit: 10
+  selector:
+    matchLabels:
+      app.kubernetes.io/name: conversion-webhook
+      app.kubernetes.io/instance: snapshot-controller
+  template:
+    metadata:
+      labels:
+        app.kubernetes.io/name: conversion-webhook
+        app.kubernetes.io/instance: snapshot-controller
+    spec:
+      serviceAccountName: snapshot-controller-conversion-webhook
+      securityContext: {}
+      containers:
+      - name: conversion-webhook
+        securityContext:
+          capabilities:
+            drop:
+            - ALL
+          readOnlyRootFilesystem: true
+          runAsNonRoot: true
+          runAsUser: 1000
+        image: ghcr.io/piraeusdatastore/snapshot-conversion-webhook:v8.4.0
+        imagePullPolicy: IfNotPresent
+        args:
+        - --port=8443
+        - --tls-cert-file=/etc/webhook/tls.crt
+        - --tls-private-key-file=/etc/webhook/tls.key
+        ports:
+        - name: https
+          containerPort: 8443
+          protocol: TCP
+        livenessProbe:
+          httpGet:
+            port: https
+            path: /readyz
+            scheme: HTTPS
+        resources: {}
+        volumeMounts:
+        - name: tls
+          mountPath: /etc/webhook
+          readOnly: true
+      hostNetwork: false
+      dnsPolicy: ClusterFirst
+      volumes:
+      - name: tls
+        secret:
+          secretName: snapshot-controller-conversion-webhook
+

@github-actions
Copy link

github-actions bot commented Feb 1, 2026

--- kubernetes/apps/storage/snapshot-controller/app Kustomization: flux-system/storage-snapshot-controller HelmRelease: storage/snapshot-controller

+++ kubernetes/apps/storage/snapshot-controller/app Kustomization: flux-system/storage-snapshot-controller HelmRelease: storage/snapshot-controller

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

     spec:
       chart: snapshot-controller
       sourceRef:
         kind: HelmRepository
         name: piraeus
         namespace: flux-system
-      version: 4.0.1
+      version: 5.0.2
   install:
     createNamespace: true
     remediation:
       retries: 3
   interval: 15m
   maxHistory: 3

@samip5 samip5 closed this Feb 1, 2026
@samip5 samip5 deleted the renovate/snapshot-controller-5.x branch February 1, 2026 19:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/kubernetes Changes made in the kubernetes directory renovate/helm type/major

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant