0

Azure resource groups give a redeploy button not sure how and when to use that. Would appreciate best practices.

enter image description here

Jason Ye
  • 13,710
  • 2
  • 16
  • 25
Rıfat Erdem Sahin
  • 1,738
  • 4
  • 29
  • 47

1 Answers1

0

In general, when we facing difficulties troubleshooting, redeploying the deployment may help.

For example, when we can't connect to Azure VM or application access to windows-based Azure VM, we can try to redeploy it. When you redeploy a VM, it moves the VM to a new node within the Azure infrastructure and then powers it back on, retaining all your configuration options and associated resources.

More information about redeploy Azure VM, please refer to this link.

By default, when we select redeploy in Azure resource group deployments, Azure will use this template to deploy this resource.

Jason Ye
  • 13,710
  • 2
  • 16
  • 25
  • so reploy is not meant to be used in a continuous deplotment pipeline. But when something is not working it overrides it and uses the old config. – Rıfat Erdem Sahin Jul 05 '17 at 09:14
  • Yes, you are right. when something is not working, redeploy will overrides it with the old config. – Jason Ye Jul 05 '17 at 09:33