From: francisco.garcia Date: Thu, 9 Nov 2023 11:49:17 +0000 (+0100) Subject: Fix: #0010535. Problem with k8s snapshot version X-Git-Tag: Beta-15.0.1~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e9886152f73a3dab5c8778b52847d2a70b91386;p=thirdparty%2Fbacula.git Fix: #0010535. Problem with k8s snapshot version --- diff --git a/bacula/src/plugins/fd/kubernetes-backend/baculak8s/plugins/k8sbackend/volumesnapshotclass.py b/bacula/src/plugins/fd/kubernetes-backend/baculak8s/plugins/k8sbackend/volumesnapshotclass.py index 1b05cc77f..13e2834b3 100644 --- a/bacula/src/plugins/fd/kubernetes-backend/baculak8s/plugins/k8sbackend/volumesnapshotclass.py +++ b/bacula/src/plugins/fd/kubernetes-backend/baculak8s/plugins/k8sbackend/volumesnapshotclass.py @@ -24,7 +24,7 @@ import logging import pathlib K8SOBJ_SNAPSHOT_GROUP = 'snapshot.storage.k8s.io' -K8SOBJ_SNAPSHOT_VERSION = 'v1beta1' +K8SOBJ_SNAPSHOT_VERSION = 'v1' K8SOBJ_SNAPSHOT_PLURAL = 'volumesnapshotclasses' def volumesnapshotclass_list_all(custom_api, filter_names=None):