你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

使用 Service Fabric CLI 将应用程序部署到 Service Fabric 群集

此示例脚本将应用程序包复制到群集映像存储,在群集中注册应用程序类型,并从应用程序类型创建应用程序实例。 此时还将创建任何默认服务。

如果需要,请安装 Service Fabric CLI

示例脚本

#!/bin/bash

# Select cluster
sfctl cluster select \
    --endpoint http://svcfab1.westus2.cloudapp.azure.com:19080

# Upload the application files to the image store
# (note the last folder name, Debug in this example)
sfctl application upload \
    --path  C:\Code\svcfab-vs\svcfab-vs\pkg\Debug \
    --show-progress

# Register the application (manifest files) from the image store
# (Note the last folder from the previous command is used: Debug)
sfctl application provision \
    --application-type-build-path Debug \
    --timeout 500

# Create an instance of the registered application and 
# auto deploy any defined services
sfctl application create \
    --app-name fabric:/MyApp \
    --app-type MyAppType \
    --app-version 1.0.0
    

清理部署

完成后,可使用删除脚本删除应用程序。 删除脚本会删除应用程序实例、注销应用程序类型,并从映像存储中删除应用程序包。

后续步骤

有关详细信息,请参阅 Service Fabric CLI 文档

Service Fabric CLI 示例中可找到 Azure Service Fabric 的其他 Service Fabric CLI 示例。