-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Azure App Service - windows container deployment support #9858
Conversation
Tasks/Common/AzureRmDeploy-common/operations/ContainerBasedDeploymentUtility.ts
Outdated
Show resolved
Hide resolved
Why have we upgraded patch for function app and web app tasks? As per my understanding only container tasks will be affected. |
Datasource has to be fixed to list both linux and windows type apps on container. |
Will we be adding this support in old task? |
there is a new CI check that expects task version for changed common modules are updated. |
no :) |
sure. working on that. |
… users/vinca/supportWindowsContainer
… users/vinca/supportWindowsContainer
@@ -29,9 +30,16 @@ export class AzureFunctionOnContainerDeploymentProvider{ | |||
this.azureEndpoint = await new AzureRMEndpoint(this.taskParams.connectedServiceName).getEndpoint(); | |||
console.log(tl.loc('GotconnectiondetailsforazureRMWebApp0', this.taskParams.WebAppName)); | |||
|
|||
if(!this.taskParams.ResourceGroupName){ | |||
var appDetails = await AzureResourceFilterUtility.getAppDetails(this.azureEndpoint, this.taskParams.WebAppName); | |||
if(!this.taskParams.ResourceGroupName) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we move this code to taskparameters? For multi-container, we might do some checks on apptype before deployment provider is invoked.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed that logic, as function app container has only linux
supports #9548