Skip to content

Commit

Permalink
Update terraform configs to use Kubernetes 1.13. (#1179)
Browse files Browse the repository at this point in the history
  • Loading branch information
roberthbailey authored and markmandel committed Nov 7, 2019
1 parent 7c50719 commit 6a45982
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/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.12.8"
kubernetes_version = "1.13.12"

agent_pool_profile {
name = "default"
Expand Down
4 changes: 2 additions & 2 deletions build/modules/gke/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@ provider "google-beta" {
zone = "${var.cluster["zone"]}"
}

/*
provider "google" {
version = "~> 2.10"
}
*/

data "google_client_config" "default" {}

Expand All @@ -41,6 +39,8 @@ resource "google_container_cluster" "primary" {
project = "${var.cluster["project"]}"
provider = "google-beta"

min_master_version = "1.13"

node_pool {
name = "default"
node_count = "${var.cluster["initialNodeCount"]}"
Expand Down
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="0.9.0"]
// terraform apply [-var agones_version="1.1.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="0.9.0"]
// terraform apply [-var agones_version="1.1.0"]

// Install latest version of agones
variable "agones_version" {
Expand Down

0 comments on commit 6a45982

Please sign in to comment.