Skip to content

Commit

Permalink
Update terraform configs to use Kubernetes 1.14 (#1342)
Browse files Browse the repository at this point in the history
Co-authored-by: pooneh-m <46979170+pooneh-m@users.noreply.github.com>
  • Loading branch information
roberthbailey and pooneh-m authored Feb 18, 2020
1 parent e3fd883 commit adc2d82
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/terraform-submodules/aks/module.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


// Run:
// terraform apply [-var agones_version="1.1.0"]
// terraform apply [-var agones_version="1.3.0"]

// Install latest version of agones
variable "agones_version" {
Expand Down
2 changes: 1 addition & 1 deletion examples/terraform-submodules/gke-local/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


// Run:
// terraform apply [-var agones_version="1.1.0"]
// terraform apply [-var agones_version="1.3.0"]

provider "google" {
version = "~> 2.10"
Expand Down
2 changes: 1 addition & 1 deletion install/terraform/modules/aks/aks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ resource "azurerm_kubernetes_cluster" "test" {
resource_group_name = "${azurerm_resource_group.test.name}"
dns_prefix = "agones"

kubernetes_version = "1.13.12"
kubernetes_version = "1.14.10"

agent_pool_profile {
name = "default"
Expand Down
2 changes: 1 addition & 1 deletion install/terraform/modules/gke/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ resource "google_container_cluster" "primary" {
project = var.cluster["project"]
provider = google-beta
min_master_version = "1.13"
min_master_version = "1.14"
node_pool {
name = "default"
Expand Down

0 comments on commit adc2d82

Please sign in to comment.