Skip to content

Commit

Permalink
Merge pull request #49 from terraform-google-modules/internal/update-…
Browse files Browse the repository at this point in the history
…zonal-example-gke-version

Update simple-zonal example GKE version
  • Loading branch information
Jberlinsky committed Jan 2, 2019
2 parents 60baab8 + fd8019b commit 46189e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/simple_zonal/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ module "gke" {
subnetwork = "${var.subnetwork}"
ip_range_pods = "${var.ip_range_pods}"
ip_range_services = "${var.ip_range_services}"
kubernetes_version = "1.11.4-gke.8"
node_version = "1.11.4-gke.8"
kubernetes_version = "1.11.4-gke.13"
node_version = "1.11.4-gke.13"
service_account = "${var.compute_engine_service_account}"
}

Expand Down
4 changes: 2 additions & 2 deletions test/integration/simple_zonal/controls/gcloud.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
end

it "has the expected initial cluster version" do
expect(data['initialClusterVersion']).to eq "1.11.4-gke.8"
expect(data['initialClusterVersion']).to eq "1.11.4-gke.13"
end

it "has the expected addon settings" do
Expand Down Expand Up @@ -80,7 +80,7 @@
it "is running the expected version of Kubernetes" do
expect(node_pools).to include(
including(
"version" => "1.11.4-gke.8",
"version" => "1.11.4-gke.13",
)
)
end
Expand Down

0 comments on commit 46189e8

Please sign in to comment.