Skip to content

Commit 9abb4af

Browse files
authored
Merge pull request #1499 from k8s-infra-cherrypick-robot/cherry-pick-1496-to-release-1.23
[release-1.23] fix: blobfuse mount failure in Azure Linux v3
2 parents 1897f23 + 7a78f06 commit 9abb4af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/blobfuse-proxy/server/server.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ func getBlobfuseVersion() BlobfuseVersion {
121121
return BlobfuseV1
122122
}
123123

124-
if strings.EqualFold(osinfo.Distro, "mariner") && osinfo.Version >= "2.0" {
125-
klog.V(2).Info("proxy default using blobfuse V2 for mounting on Mariner 2.0+")
124+
if (strings.EqualFold(osinfo.Distro, "mariner") || strings.EqualFold(osinfo.Distro, "azurelinux")) && osinfo.Version >= "2.0" {
125+
klog.V(2).Info("proxy default using blobfuse V2 for mounting on azurelinux(mariner) 2.0+")
126126
return BlobfuseV2
127127
}
128128

0 commit comments

Comments
 (0)