- Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
enhancementNew feature or requestNew feature or requesttriagedScoped and ready for workScoped and ready for work
Description
TL;DR
There is a new default service IP range which should be used for new 1.29.3+ clusters:
GKE versions up to 1.29.2 will create a random /20 range from 10.0.0.0/8 if ip_range_services is omitted. From 1.29.3 this will set the new default service range 34.118.224.0/20 on each cluster. ( See https://cloud.google.com/kubernetes-engine/docs/release-notes#May_10_2024 )
Currently it is possible to use the new default service range by explicitly setting var.ip_range_services to null.
This works for our use case, but I was wondering if you wanted this to be the default for the module in the future. I'm happy to provide a PR for this, but wanted to make sure it was something that was wanted.
Terraform Resources
# something like this: variable "ip_range_services" { type = string - description = "The _name_ of the secondary subnet range to use for services" + description = "The _name_ of the secondary subnet range to use for services. Omit to use default range." + default = null }Detailed design
No response
Additional information
No response
pndurette, DevoFalcon, danihodovic and martin-kulich-whalebone
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesttriagedScoped and ready for workScoped and ready for work