File tree Expand file tree Collapse file tree 2 files changed +0
-14
lines changed
test/integration/simple_zonal/controls Expand file tree Collapse file tree 2 files changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,6 @@ module "gke" {
34
34
subnetwork = " ${ var . subnetwork } "
35
35
ip_range_pods = " ${ var . ip_range_pods } "
36
36
ip_range_services = " ${ var . ip_range_services } "
37
- kubernetes_version = " 1.11.4-gke.13"
38
- node_version = " 1.11.4-gke.13"
39
37
service_account = " ${ var . compute_engine_service_account } "
40
38
}
41
39
Original file line number Diff line number Diff line change 46
46
expect ( data [ 'locations' ] . size ) . to eq 1
47
47
end
48
48
49
- it "has the expected initial cluster version" do
50
- expect ( data [ 'initialClusterVersion' ] ) . to eq "1.11.4-gke.13"
51
- end
52
-
53
49
it "has the expected addon settings" do
54
50
expect ( data [ 'addonsConfig' ] ) . to eq ( {
55
51
"horizontalPodAutoscaling" => { } ,
79
75
describe "node pool" do
80
76
let ( :node_pools ) { data [ 'nodePools' ] . reject { |p | p [ 'name' ] == "default-pool" } }
81
77
82
- it "is running the expected version of Kubernetes" do
83
- expect ( node_pools ) . to include (
84
- including (
85
- "version" => "1.11.4-gke.13" ,
86
- )
87
- )
88
- end
89
-
90
78
it "has autoscaling enabled" do
91
79
expect ( node_pools ) . to include (
92
80
including (
You can’t perform that action at this time.
0 commit comments