eladkal commented on PR #33696: URL: https://github.com/apache/airflow/pull/33696#issuecomment-1691867688
One of the issues is with `network_profile`: https://github.com/apache/airflow/blob/3a0b8bded98a1f8256765e5b829c2ba4f1b0369a/airflow/providers/microsoft/azure/operators/container_instances.py#L148 The parameter (type `ContainerGroupNetworkProfile` )was removed in version 9.0.0 https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/containerinstance/azure-mgmt-containerinstance/CHANGELOG.md#900-2021-09-17 From official docs: > [Network profiles](https://learn.microsoft.com/en-us/azure/container-instances/container-instances-virtual-network-concepts#network-profile) have been retired as of the 2021-07-01 API version. If you're using this or a more recent version, ignore any steps and actions related to network profiles. https://learn.microsoft.com/en-us/azure/container-instances/container-instances-virtual-network-concepts#network-profile Thus bumping `azure-mgmt-containerinstance` to version greater than 9.0.0 means also breaking change for the provider (Which we should do!) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
