You have an Azure subscription that contains an Azure Service Fabric cluster and a Service Fabric application named FabricApp.
You develop and package a Service Fabric application named AppPackage. AppPackage is saved in a compressed folder named AppPackage.zip.
You upload AppPackage.zip to an external store.
You need to register AppPackage in the Azure subscription.
What should you do first?
Click on the arrows to vote for the correct answer
A. B. C. D.B
https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-package-apps#create-an-sfpkgTo register a Service Fabric application in Azure, you first need to package it into an SFPKG file format. An SFPKG file is a compressed archive file that contains the Service Fabric application manifest file, application code, and configuration settings.
In this scenario, the AppPackage is already saved in a compressed folder named AppPackage.zip. Therefore, you need to repackage it into an SFPKG file format before registering it in the Azure subscription.
The correct answer is B. Repackage the application in a file named App.sfpkg.
To repackage the AppPackage.zip into an SFPKG file format, follow these steps:
After you have re-packaged the AppPackage into an SFPKG file format, you can register it in the Azure subscription using the following steps:
Once the registration process is complete, you can deploy the Service Fabric application to the cluster by creating an application instance.