I am encountering an issue while deploying Python packages to a function app deployed within ASE V3 and connected to a storage account through a Private Endpoint. Have any of you encountered a similar issue before?
Your assistance on this matter would be greatly appreciated.
I have verified the envt variables and its looking exactly the way it should be for webjobsstorage and route_all etc. DNS is also resolving but its giving response after 2 request timeout and Always on setting is ON, Function app is on running state verified from KUDU URL as well. I am not sure if 2 DNS request timeout is causing the issue. Can you please suggest some options which can be further tested.
##[error]Error: Failed to fetch App Service ‘func_name’ details. Error: Request timeout: /subscriptions//resourceGroups//providers/Microsoft.Web/sites//?api-version=2016-08-01
- task: AzureFunctionApp@2
displayName: 'Azure functions app deploy'
inputs:
connectedServiceNameARM: '<Service Connection Name>'
appType: 'functionAppLinux'
appName: 'func_name'
deployToSlotOrASE: true
resourceGroupName: 'RG_name'
slotName: 'production'
package: '$(Pipeline.Workspace)/drop/$(Build.BuildId).zip'
appSettings: -RequestTimeout 5000
I have verified the envt variables and its looking exactly the way it should be for AzureWebJobsStorage and WEBSITE_VNET_ROUTE_ALL, WEBSITE_DNS_SERVER etc. DNS is also resolving but its giving response after 2 request timeout and Always on setting is ON, Function app is on running state verified from KUDU URL as well. I am not sure if 2 DNS request timeout is causing the issue. Can you please suggest some options which can be further tested.
Blank Error Image – enter image description here
How it should be – enter image description here
Local deployment from VM deployed under DevOps Subnet – enter image description here
17