Skip to content

Commit 082c3b3

Browse files
authored
Merge pull request #86384 from athinanthny/patch-33
updated tile and ga pkg versions
2 parents 6705d5a + a5b25cb commit 082c3b3

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

articles/service-fabric/service-fabric-containers-volume-logging-drivers.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Service Fabric Azure Files Volume Driver (Preview) | Microsoft Docs
2+
title: Service Fabric Azure Files Volume Driver (GA) | Microsoft Docs
33
description: Service Fabric supports using Azure Files to backup volumes from your container. This is currently in preview.
44
services: service-fabric
55
author: athinanthny
@@ -12,10 +12,12 @@ ms.author: atsenthi
1212
---
1313

1414
# Service Fabric Azure Files Volume Driver
15-
The Azure Files volume plugin is a [Docker volume plugin](https://docs.docker.com/engine/extend/plugins_volume/) that provides [Azure Files](/azure/storage/files/storage-files-introduction) based volumes for Docker containers. This Docker volume plugin is packaged as a Service Fabric application that can be deployed to Service Fabric clusters. Its purpose is to provide Azure Files based volumes for other Service Fabric container applications that are deployed to the cluster.
15+
The Azure Files volume plugin, a [Docker volume plugin](https://docs.docker.com/engine/extend/plugins_volume/) that provides [Azure Files](/azure/storage/files/storage-files-introduction) based volumes for Docker containers is now **GA (Generally Available)**.
16+
17+
This Docker volume plugin is packaged as a Service Fabric application that can be deployed to Service Fabric clusters. Its purpose is to provide Azure Files based volumes for other Service Fabric container applications that are deployed to the cluster.
1618

1719
> [!NOTE]
18-
> Version 6.5.516.9494 of the Azure Files volume plugin is a preview release that is available with this document. As a preview release, it is **not** supported for use in production environments.
20+
> Version 6.5.661.9590 of the Azure Files volume plugin is a GA(Generally available) release.
1921
>
2022
2123
## Prerequisites
@@ -114,11 +116,11 @@ The Service Fabric application that provides the volumes for your containers can
114116
4. Create the application, paying close attention to the **ListenPort** application parameter value. This value is the port on which the Azure Files volume plugin listens for requests from the Docker daemon. Ensure that the port provided to the application matches the VolumePluginPorts in the ClusterManifest and does not conflict with any other port that the cluster or your applications uses.
115117
116118
```powershell
117-
New-ServiceFabricApplication -ApplicationName fabric:/AzureFilesVolumePluginApp -ApplicationTypeName AzureFilesVolumePluginType -ApplicationTypeVersion 6.5.516.9494 -ApplicationParameter @{ListenPort='19100'}
119+
New-ServiceFabricApplication -ApplicationName fabric:/AzureFilesVolumePluginApp -ApplicationTypeName AzureFilesVolumePluginType -ApplicationTypeVersion 6.5.661.9590 -ApplicationParameter @{ListenPort='19100'}
118120
```
119121
120122
```bash
121-
sfctl application create --app-name fabric:/AzureFilesVolumePluginApp --app-type AzureFilesVolumePluginType --app-version 6.5.516.9494 --parameter '{"ListenPort":"19100"}'
123+
sfctl application create --app-name fabric:/AzureFilesVolumePluginApp --app-type AzureFilesVolumePluginType --app-version 6.5.661.9590 --parameter '{"ListenPort":"19100"}'
122124
```
123125
124126
> [!NOTE]
@@ -131,11 +133,11 @@ Follow steps 1-3 from the [above.](/azure/service-fabric/service-fabric-containe
131133
The default service instance count for the Azure Files volume plugin application is -1, which means that there is an instance of the service deployed to each node in the cluster. However, when deploying the Azure Files volume plugin application on a local development cluster, the service instance count should be specified as 1. This can be done via the **InstanceCount** application parameter. Therefore, the command for creating the Azure Files volume plugin application on a local development cluster is:
132134
133135
```powershell
134-
New-ServiceFabricApplication -ApplicationName fabric:/AzureFilesVolumePluginApp -ApplicationTypeName AzureFilesVolumePluginType -ApplicationTypeVersion 6.5.516.9494 -ApplicationParameter @{ListenPort='19100';InstanceCount='1'}
136+
New-ServiceFabricApplication -ApplicationName fabric:/AzureFilesVolumePluginApp -ApplicationTypeName AzureFilesVolumePluginType -ApplicationTypeVersion 6.5.661.9590 -ApplicationParameter @{ListenPort='19100';InstanceCount='1'}
135137
```
136138

137139
```bash
138-
sfctl application create --app-name fabric:/AzureFilesVolumePluginApp --app-type AzureFilesVolumePluginType --app-version 6.5.516.9494 --parameter '{"ListenPort": "19100","InstanceCount": "1"}'
140+
sfctl application create --app-name fabric:/AzureFilesVolumePluginApp --app-type AzureFilesVolumePluginType --app-version 6.5.661.9590 --parameter '{"ListenPort": "19100","InstanceCount": "1"}'
139141
```
140142

141143
## Configure your applications to use the volume

0 commit comments

Comments
 (0)