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.
1 parent 78001b6 commit 7a78f06Copy full SHA for 7a78f06
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