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 snapshot-controller ( 3.0.6 → 4.0.0 ) #385

Merged
merged 1 commit into from
Jan 12, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 28, 2024

This PR contains the following updates:

Package Update Change
snapshot-controller major 3.0.6 -> 4.0.0

Release Notes

piraeusdatastore/helm-charts (snapshot-controller)

v4.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.


Configuration

📅 Schedule: Branch creation - "on friday and saturday" in timezone Europe/Prague, 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

--- HelmRelease: storage/snapshot-controller ServiceAccount: storage/snapshot-validation-webhook

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

@@ -1,10 +0,0 @@

----
-apiVersion: v1
-kind: ServiceAccount
-metadata:
-  name: snapshot-validation-webhook
-  labels:
-    app.kubernetes.io/name: snapshot-validation-webhook
-    app.kubernetes.io/instance: snapshot-controller
-    app.kubernetes.io/managed-by: Helm
-
--- HelmRelease: storage/snapshot-controller ClusterRole: storage/snapshot-controller

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

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

   - patch
 - apiGroups:
   - snapshot.storage.k8s.io
   resources:
   - volumesnapshots
   verbs:
+  - create
   - get
   - list
   - watch
   - update
   - patch
   - delete
--- HelmRelease: storage/snapshot-controller ClusterRole: storage/snapshot-validation-webhook

+++ HelmRelease: storage/snapshot-controller ClusterRole: storage/snapshot-validation-webhook

@@ -1,23 +0,0 @@

----
-kind: ClusterRole
-apiVersion: rbac.authorization.k8s.io/v1
-metadata:
-  name: snapshot-validation-webhook
-rules:
-- apiGroups:
-  - snapshot.storage.k8s.io
-  resources:
-  - volumesnapshotclasses
-  verbs:
-  - get
-  - list
-  - watch
-- apiGroups:
-  - groupsnapshot.storage.k8s.io
-  resources:
-  - volumegroupsnapshotclasses
-  verbs:
-  - get
-  - list
-  - watch
-
--- HelmRelease: storage/snapshot-controller ClusterRoleBinding: storage/snapshot-validation-webhook

+++ HelmRelease: storage/snapshot-controller ClusterRoleBinding: storage/snapshot-validation-webhook

@@ -1,14 +0,0 @@

----
-kind: ClusterRoleBinding
-apiVersion: rbac.authorization.k8s.io/v1
-metadata:
-  name: snapshot-validation-webhook
-subjects:
-- kind: ServiceAccount
-  name: snapshot-validation-webhook
-  namespace: storage
-roleRef:
-  kind: ClusterRole
-  name: snapshot-validation-webhook
-  apiGroup: rbac.authorization.k8s.io
-
--- HelmRelease: storage/snapshot-controller Service: storage/snapshot-validation-webhook

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

@@ -1,20 +0,0 @@

----
-apiVersion: v1
-kind: Service
-metadata:
-  name: snapshot-validation-webhook
-  labels:
-    app.kubernetes.io/name: snapshot-validation-webhook
-    app.kubernetes.io/instance: snapshot-controller
-    app.kubernetes.io/managed-by: Helm
-spec:
-  type: ClusterIP
-  ports:
-  - port: 443
-    targetPort: https
-    protocol: TCP
-    name: https
-  selector:
-    app.kubernetes.io/name: snapshot-validation-webhook
-    app.kubernetes.io/instance: snapshot-controller
-
--- HelmRelease: storage/snapshot-controller Deployment: storage/snapshot-controller

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

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

           capabilities:
             drop:
             - ALL
           readOnlyRootFilesystem: true
           runAsNonRoot: true
           runAsUser: 1000
-        image: registry.k8s.io/sig-storage/snapshot-controller:v8.1.0
+        image: registry.k8s.io/sig-storage/snapshot-controller:v8.2.0
         imagePullPolicy: IfNotPresent
         args:
         - --http-endpoint=:8080
         - --leader-election=true
         - --leader-election-namespace=$(NAMESPACE)
         ports:
--- HelmRelease: storage/snapshot-controller Deployment: storage/snapshot-validation-webhook

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

@@ -1,64 +0,0 @@

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

+++ HelmRelease: storage/snapshot-controller Certificate: storage/snapshot-validation-webhook

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

----
-apiVersion: cert-manager.io/v1
-kind: Certificate
-metadata:
-  name: snapshot-validation-webhook
-  labels:
-    app.kubernetes.io/name: snapshot-validation-webhook
-    app.kubernetes.io/instance: snapshot-controller
-    app.kubernetes.io/managed-by: Helm
-spec:
-  secretName: snapshot-validation-webhook-tls
-  dnsNames:
-  - snapshot-validation-webhook.storage.svc
-  issuerRef:
-    kind: ClusterIssuer
-    name: selfsigned
-  privateKey:
-    rotationPolicy: Always
-
--- HelmRelease: storage/snapshot-controller ValidatingWebhookConfiguration: storage/snapshot-validation-webhook

+++ HelmRelease: storage/snapshot-controller ValidatingWebhookConfiguration: storage/snapshot-validation-webhook

@@ -1,59 +0,0 @@

----
-apiVersion: admissionregistration.k8s.io/v1
-kind: ValidatingWebhookConfiguration
-metadata:
-  name: snapshot-validation-webhook
-  labels:
-    app.kubernetes.io/name: snapshot-validation-webhook
-    app.kubernetes.io/instance: snapshot-controller
-    app.kubernetes.io/managed-by: Helm
-  annotations:
-    cert-manager.io/inject-ca-from: storage/snapshot-validation-webhook
-webhooks:
-- name: snapshot-validation-webhook.snapshot.storage.k8s.io
-  rules:
-  - apiGroups:
-    - snapshot.storage.k8s.io
-    apiVersions:
-    - v1
-    operations:
-    - CREATE
-    - UPDATE
-    resources:
-    - volumesnapshotclasses
-    scope: '*'
-  clientConfig:
-    service:
-      namespace: storage
-      name: snapshot-validation-webhook
-      path: /volumesnapshot
-  admissionReviewVersions:
-  - v1
-  - v1beta1
-  sideEffects: None
-  failurePolicy: Fail
-  timeoutSeconds: 2
-- name: snapshot-validation-webhook.groupsnapshot.storage.k8s.io
-  rules:
-  - apiGroups:
-    - groupsnapshot.storage.k8s.io
-    apiVersions:
-    - v1alpha1
-    operations:
-    - CREATE
-    - UPDATE
-    resources:
-    - volumegroupsnapshotclasses
-    scope: '*'
-  clientConfig:
-    service:
-      namespace: storage
-      name: snapshot-validation-webhook
-      path: /volumegroupsnapshot
-  admissionReviewVersions:
-  - v1
-  - v1beta1
-  sideEffects: None
-  failurePolicy: Fail
-  timeoutSeconds: 2
-

Copy link

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

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

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

       chart: snapshot-controller
       interval: 30m
       sourceRef:
         kind: HelmRepository
         name: piraeus
         namespace: flux-system
-      version: 3.0.6
+      version: 4.0.0
   install:
     crds: CreateReplace
     remediation:
       retries: 3
   interval: 30m
   upgrade:

@prehor prehor force-pushed the main branch 2 times, most recently from 69c2d85 to 111370c Compare December 28, 2024 21:47
@renovate renovate bot force-pushed the renovate/main-snapshot-controller-4.x branch from 3c09009 to 194056e Compare December 28, 2024 21:51
@renovate renovate bot force-pushed the renovate/main-snapshot-controller-4.x branch from 194056e to 22a42cb Compare December 28, 2024 22:35
@renovate renovate bot force-pushed the renovate/main-snapshot-controller-4.x branch from 22a42cb to 7f117a4 Compare December 28, 2024 23:41
@prehor prehor force-pushed the main branch 5 times, most recently from 25980b2 to 77f75bb Compare December 29, 2024 01:08
@renovate renovate bot force-pushed the renovate/main-snapshot-controller-4.x branch from 7f117a4 to 1eb6b53 Compare December 29, 2024 01:08
@renovate renovate bot force-pushed the renovate/main-snapshot-controller-4.x branch from 1eb6b53 to 6e6255d Compare December 29, 2024 03:12
@prehor prehor merged commit 4ef23f4 into main Jan 12, 2025
11 of 12 checks passed
@renovate renovate bot deleted the renovate/main-snapshot-controller-4.x branch January 12, 2025 20:54
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