使用 Service Fabric CLI 从 Service Fabric 群集中删除应用程序

此示例脚本删除了正在运行的 Service Fabric 应用程序实例,并从群集中取消注册了应用程序类型和版本。 删除应用程序实例时也会删除与该应用程序关联的所有正在运行的服务实例。 接下来,会从映像存储区中删除应用程序文件。

如果需要,请安装 Service Fabric CLI

示例脚本

#!/bin/bash

# Select cluster
sfctl cluster select \
    --endpoint http://svcfab1.chinanorth2.cloudapp.chinacloudapi.cn:19080

# Delete the application
sfctl application delete \
    --application-id svcfab_app \
    --timeout 500

# Unprovision the application type
sfctl application unprovision \
    --application-type-name svcfab_appType \
    --application-type-version 1.0.0 \
    --timeout 500

# Delete the application files from the image store
sfctl store delete \
    --content-path myappfolder

后续步骤

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

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