From 0ae43a1b3f0cd4cb12d2728c5e2df3fb0b98650b Mon Sep 17 00:00:00 2001
From: Vitaliy Filippov <vitalif@yourcmc.ru>
Date: Tue, 7 Mar 2023 12:47:56 +0300
Subject: [PATCH] Bump version to 0.34.7

It's larger than GeeseFS version and may collide with it, but screw it,
we can invent a new versioning scheme later %)
---
 Makefile                           | 2 +-
 deploy/helm/Chart.yaml             | 4 ++--
 deploy/helm/manifest.yaml          | 2 +-
 deploy/helm/values.yaml            | 2 +-
 deploy/kubernetes/csi-s3.yaml      | 2 +-
 deploy/kubernetes/provisioner.yaml | 2 +-
 pkg/driver/driver.go               | 2 +-
 7 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/Makefile b/Makefile
index 2d4bf38..210ec8e 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ REGISTRY_NAME=cr.yandex/crp9ftr22d26age3hulg
 REGISTRY_NAME2=cr.il.nebius.cloud/crll7us9n6i5j3v4n92m
 IMAGE_NAME=csi-s3
 IMAGE_NAME2=yandex-cloud/csi-s3/csi-s3-driver
-VERSION ?= 0.34.6
+VERSION ?= 0.34.7
 IMAGE_TAG=$(REGISTRY_NAME)/$(IMAGE_NAME):$(VERSION)
 TEST_IMAGE_TAG=$(IMAGE_NAME):test
 
diff --git a/deploy/helm/Chart.yaml b/deploy/helm/Chart.yaml
index d971894..4b67c71 100644
--- a/deploy/helm/Chart.yaml
+++ b/deploy/helm/Chart.yaml
@@ -1,9 +1,9 @@
 ---
 apiVersion: v1
-appVersion: 0.34.6
+appVersion: 0.34.7
 description: "Container Storage Interface (CSI) driver for S3 volumes"
 name: csi-s3
-version: 0.34.6
+version: 0.34.7
 keywords:
   - s3
 home: https://github.com/yandex-cloud/k8s-csi-s3
diff --git a/deploy/helm/manifest.yaml b/deploy/helm/manifest.yaml
index 44279b0..5bd2b22 100644
--- a/deploy/helm/manifest.yaml
+++ b/deploy/helm/manifest.yaml
@@ -1,6 +1,6 @@
 helm_chart:
   name: cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-s3
-  tag: 0.34.6
+  tag: 0.34.7
 requirements:
   k8s_version: ">=1.13"
 images:
diff --git a/deploy/helm/values.yaml b/deploy/helm/values.yaml
index f3fecfe..d6fbcdb 100644
--- a/deploy/helm/values.yaml
+++ b/deploy/helm/values.yaml
@@ -7,7 +7,7 @@ images:
   # Source: quay.io/k8scsi/csi-provisioner:v2.1.0
   provisioner: cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-provisioner:v2.1.0
   # Main image
-  csi: cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-s3-driver:0.34.6
+  csi: cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-s3-driver:0.34.7
 
 storageClass:
   # Specifies whether the storage class should be created
diff --git a/deploy/kubernetes/csi-s3.yaml b/deploy/kubernetes/csi-s3.yaml
index 65456eb..e6b9bf9 100644
--- a/deploy/kubernetes/csi-s3.yaml
+++ b/deploy/kubernetes/csi-s3.yaml
@@ -87,7 +87,7 @@ spec:
             capabilities:
               add: ["SYS_ADMIN"]
             allowPrivilegeEscalation: true
-          image: cr.yandex/crp9ftr22d26age3hulg/csi-s3:0.34.6
+          image: cr.yandex/crp9ftr22d26age3hulg/csi-s3:0.34.7
           imagePullPolicy: IfNotPresent
           args:
             - "--endpoint=$(CSI_ENDPOINT)"
diff --git a/deploy/kubernetes/provisioner.yaml b/deploy/kubernetes/provisioner.yaml
index 1769d36..d7af4fe 100644
--- a/deploy/kubernetes/provisioner.yaml
+++ b/deploy/kubernetes/provisioner.yaml
@@ -88,7 +88,7 @@ spec:
             - name: socket-dir
               mountPath: /var/lib/kubelet/plugins/ru.yandex.s3.csi
         - name: csi-s3
-          image: cr.yandex/crp9ftr22d26age3hulg/csi-s3:0.34.6
+          image: cr.yandex/crp9ftr22d26age3hulg/csi-s3:0.34.7
           imagePullPolicy: IfNotPresent
           args:
             - "--endpoint=$(CSI_ENDPOINT)"
diff --git a/pkg/driver/driver.go b/pkg/driver/driver.go
index a342a7a..8c7307c 100644
--- a/pkg/driver/driver.go
+++ b/pkg/driver/driver.go
@@ -33,7 +33,7 @@ type driver struct {
 }
 
 var (
-	vendorVersion = "v1.34.6"
+	vendorVersion = "v1.34.7"
 	driverName    = "ru.yandex.s3.csi"
 )