We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1897f23 + 7a78f06 commit 9abb4afCopy full SHA for 9abb4af
pkg/blobfuse-proxy/server/server.go
@@ -121,8 +121,8 @@ func getBlobfuseVersion() BlobfuseVersion {
121
return BlobfuseV1
122
}
123
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+")
+ if (strings.EqualFold(osinfo.Distro, "mariner") || strings.EqualFold(osinfo.Distro, "azurelinux")) && osinfo.Version >= "2.0" {
+ klog.V(2).Info("proxy default using blobfuse V2 for mounting on azurelinux(mariner) 2.0+")
126
return BlobfuseV2
127
128
0 commit comments