-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
azurerm_kubernetes_cluster: remove unused docker_bridge_cidr variable #18119
Comments
Since 2020 the default runtime is containerd and not Docker https://github.com/Azure/AKS/blob/master/CHANGELOG.md#release-2020-06-29 The setting docker_bridge_cidr is doing nothing. If you check the interfaces on the AKS nodes they dont have any Docker bridge configured. Related: hashicorp/terraform-provider-azurerm#18119
This functionality has been released in v3.49.0 of the Terraform Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
Since 2020 the default runtime is containerd and not Docker https://github.com/Azure/AKS/blob/master/CHANGELOG.md#release-2020-06-29 The setting docker_bridge_cidr is doing nothing. If you check the interfaces on the AKS nodes they dont have any Docker bridge configured. Related: hashicorp/terraform-provider-azurerm#18119
Since 2020 the default runtime is containerd and not Docker https://github.com/Azure/AKS/blob/master/CHANGELOG.md#release-2020-06-29 The setting docker_bridge_cidr is doing nothing. If you check the interfaces on the AKS nodes they dont have any Docker bridge configured. Related: hashicorp/terraform-provider-azurerm#18119
Since 2020 the default runtime is containerd and not Docker https://github.com/Azure/AKS/blob/master/CHANGELOG.md#release-2020-06-29 The setting docker_bridge_cidr is doing nothing. If you check the interfaces on the AKS nodes they dont have any Docker bridge configured. Related: hashicorp/terraform-provider-azurerm#18119
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Is there an existing issue for this?
Community Note
Terraform Version
1.2.8
AzureRM Provider Version
3.18.0
Affected Resource(s)/Data Source(s)
azurerm_kubernetes_cluster
Terraform Configuration Files
This is a cleanup request
Since 2020 the default AKS runtime is containerd and not Docker
https://github.com/Azure/AKS/blob/master/CHANGELOG.md#release-2020-06-29
It is not possible anymore to create an AKS cluster with Docker runtime.
https://docs.microsoft.com/en-us/azure/aks/cluster-configuration#container-runtime-configuration
Docker is no longer supported as of September 2022
However users of the resource
azurerm_kubernetes_cluster
are forced to set a value fordocker_bridge_cidr
because otherwise they cannot setservice_cidr
:https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/kubernetes_cluster#docker_bridge_cidr
This is super confusing to have this technical debt for folks that start using this resource in 2022, and they have no idea why a Docker cidr is needed when Docker is not even used.
References
The text was updated successfully, but these errors were encountered: