Skip to content
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

Fix issue with regional cluster roll outs causing version skews #108

Commits on Mar 20, 2019

  1. Fix issue with regional cluster roll outs causing version skews

    Regional clusters are created using the newest version of GKE that is
    available across all zones in which the masters live. When a GKE version
    roll out occurs, the available versions across the zones can become
    skewed for zonal clusters with version x.y.z-gke.a being the only
    available zonal version in one zone but version x.y[+1].z[+1]-gke.a[+1]
    being the only zonal version available in another zone.
    
    The Terraform module only checks for the version available in the first
    zone returned by a call to the google_compute_zones data resource.
    
    Consequently, the module will fail to create a regional cluster during a
    roll out due to the version available in that zone not being available
    across all the zones for regional clusters.
    thefirstofthe300 committed Mar 20, 2019
    Configuration menu
    Copy the full SHA
    1d73e9d View commit details
    Browse the repository at this point in the history