Advertisement
Guest User

Untitled

a guest
Aug 26th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. $endpoint = "myclustername.uksouth.cloudapp.azure.com:19000"
  2. $thumbprint = "a132bd464564ffffff1651f1311f51321"
  3.  
  4. Connect-serviceFabricCluster `
  5. -ConnectionEndpoint $endpoint `
  6. -KeepAliveIntervalInSec 10 `
  7. -X509Credential `
  8. -ServerCertThumbprint $thumbprint `
  9. -FindType FindByThumbprint `
  10. -FindValue $thumbprint `
  11. -StoreLocation LocalMachine `
  12. -StoreName My
  13.  
  14.  
  15. Update-ServiceFabricApplicationUpgrade -ApplicationName fabric:/MyAppName -UpgradeMode Monitored -UpgradeTimeoutSec 180 -UpgradeDomainTimeoutSec 20 -HealthCheckRetryTimeoutSec 10 -HealthCheckStableDurationSec 10 -FailureAction Rollback
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement