Reputation: 5156
Using TFS 2015 Update 3 - Release Manager. I have the exact same setup for QA and Live, both work just fine. I tried creating a new build off the same Source Version, same error. I was able to upload the cscfg and cspkg via the Azure Portal without issue. Any ideas?
2016-10-18T21:53:06.3839794Z Get-AzureDeployment -ServiceName BeethovenUAT -Slot Staging -ErrorAction SilentlyContinue -ErrorVariable azureDeploymentError
2016-10-18T21:53:08.6183599Z Set-AzureDeployment -Upgrade -ServiceName BeethovenUAT -Package \\storage\tfs builds\8517\UAT\BeethovenMicrosoftAzureCloudService.cspkg -Configuration \\storage\tfs builds\8517\UAT\BeethovenMicrosoftAzureCloudService.cspkg -Slot Staging -Label 8517 10/18/2016 22:53:06 -ExtensionConfiguration <extensions>
2016-10-18T21:56:37.1813672Z ##[error]Request Entity Too Large
Upvotes: 0
Views: 80
Reputation: 5156
So someone finally noticed my issue and it blows my mind that no one, including me, saw this.
2016-10-18T21:53:08.6183599Z Set-AzureDeployment -Upgrade -ServiceName BeethovenUAT -Package \storage\tfs builds\8517\UAT\BeethovenMicrosoftAzureCloudService.cspkg -Configuration \storage\tfs builds\8517\UAT\BeethovenMicrosoftAzureCloudService.cspkg -Slot Staging -Label 8517 10/18/2016 22:53:06 -ExtensionConfiguration
Should actually be
2016-10-18T21:53:08.6183599Z Set-AzureDeployment -Upgrade -ServiceName BeethovenUAT -Package \storage\tfs builds\8517\UAT\BeethovenMicrosoftAzureCloudService.cspkg -Configuration \storage\tfs builds\8517\UAT\BeethovenMicrosoftAzureCloudService.cscfg -Slot Staging -Label 8517 10/18/2016 22:53:06 -ExtensionConfiguration
Upvotes: 1