Skip to content

Commit 570388f

Browse files
Copilotandyzhangx
andcommitted
Remove deprecated blobfuse v1 downgrade options
Co-authored-by: andyzhangx <[email protected]>
1 parent eca3f41 commit 570388f

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

charts/latest/blob-csi-driver/templates/csi-blob-node.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,6 @@ spec:
8888
value: "{{ .Values.node.blobfuseProxy.installBlobfuse }}"
8989
- name: BLOBFUSE_VERSION
9090
value: "{{ .Values.node.blobfuseProxy.blobfuseVersion }}"
91-
- name: ALLOW_BLOBFUSE_DOWNGRADES
92-
value: "{{ .Values.node.blobfuseProxy.allowBlobfuseDowngrades }}"
9391
- name: INSTALL_BLOBFUSE2
9492
value: "{{ .Values.node.blobfuseProxy.installBlobfuse2 }}"
9593
- name: BLOBFUSE2_VERSION

charts/latest/blob-csi-driver/values.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ node:
122122
blobfuseProxy:
123123
installBlobfuse: false
124124
blobfuseVersion: "1.4.5"
125-
allowBlobfuseDowngrades: false
126125
installBlobfuse2: true
127126
blobfuse2Version: "2.4.1"
128127
allowBlobfuse2Downgrades: false

pkg/blobfuse-proxy/install-proxy.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,7 @@ then
5454
echo "install blobfuse with latest version"
5555
pkg_list="${pkg_list} blobfuse"
5656
else
57-
blobfuse_install_str="blobfuse=${BLOBFUSE_VERSION}"
58-
if [ "${ALLOW_BLOBFUSE_DOWNGRADES}" = "true" ]; then
59-
blobfuse_install_str="${blobfuse_install_str} --allow-downgrades"
60-
fi
61-
pkg_list="${pkg_list} ${blobfuse_install_str}"
57+
pkg_list="${pkg_list} blobfuse=${BLOBFUSE_VERSION}"
6258
fi
6359
fi
6460

0 commit comments

Comments
 (0)