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

Update terraform configs to use Kubernetes 1.14 #1342

Merged
merged 2 commits into from
Feb 18, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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