Skip to content

Commit 456e7a4

Browse files
committed
fix(TPG6.17): fix autopilot
1 parent 4726ab2 commit 456e7a4

File tree

7 files changed

+8
-11
lines changed

7 files changed

+8
-11
lines changed

autogen/main/versions.tf.tmpl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@ terraform {
3434
required_providers {
3535
google = {
3636
source = "hashicorp/google"
37-
version = ">= 6.14.0, < 7"
37+
version = ">= 6.14.0, < 6.17"
3838
}
3939
google-beta = {
4040
source = "hashicorp/google-beta"
41-
version = ">= 6.14.0, < 7"
41+
version = ">= 6.14.0, < 6.17"
4242
}
4343
{% elif autopilot_cluster %}
4444
required_providers {
4545
google = {
4646
source = "hashicorp/google"
47-
version = ">= 6.14.0, < 7"
47+
version = ">= 6.14.0, < 6.17"
4848
}
4949
{% else %}
5050
required_providers {

modules/beta-autopilot-private-cluster/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ terraform {
2121
required_providers {
2222
google = {
2323
source = "hashicorp/google"
24-
version = ">= 6.14.0, < 7"
24+
version = ">= 6.14.0, < 6.17"
2525
}
2626
google-beta = {
2727
source = "hashicorp/google-beta"
28-
version = ">= 6.14.0, < 7"
28+
version = ">= 6.14.0, < 6.17"
2929
}
3030
kubernetes = {
3131
source = "hashicorp/kubernetes"

modules/beta-autopilot-public-cluster/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ terraform {
2121
required_providers {
2222
google = {
2323
source = "hashicorp/google"
24-
version = ">= 6.14.0, < 7"
24+
version = ">= 6.14.0, < 6.17"
2525
}
2626
google-beta = {
2727
source = "hashicorp/google-beta"
28-
version = ">= 6.14.0, < 7"
28+
version = ">= 6.14.0, < 6.17"
2929
}
3030
kubernetes = {
3131
source = "hashicorp/kubernetes"

test/integration/private_zonal_with_networking/testdata/TestPrivateZonalWithNetworking.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@
216216
"effectiveCgroupMode": "EFFECTIVE_CGROUP_MODE_V2",
217217
"imageType": "COS_CONTAINERD",
218218
"kubeletConfig": {
219-
"insecureKubeletReadonlyPortEnabled": true
219+
"insecureKubeletReadonlyPortEnabled": false
220220
},
221221
"labels": {
222222
"cluster_name": "CLUSTER_NAME",

test/integration/simple_regional_with_gateway_api/testdata/TestSimpleRegionalWithGatewayAPI.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
"publicEndpoint": "KUBERNETES_ENDPOINT"
3939
}
4040
},
41-
"currentNodeCount": 3,
4241
"databaseEncryption": {
4342
"currentState": "CURRENT_STATE_DECRYPTED",
4443
"state": "DECRYPTED"

test/integration/stub_domains/testdata/TestStubDomains.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
"publicEndpoint": "KUBERNETES_ENDPOINT"
3737
}
3838
},
39-
"currentNodeCount": 3,
4039
"databaseEncryption": {
4140
"currentState": "CURRENT_STATE_DECRYPTED",
4241
"state": "DECRYPTED"

test/integration/stub_domains_upstream_nameservers/testdata/TestStubDomainsUpstreamNameservers.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
"publicEndpoint": "KUBERNETES_ENDPOINT"
3737
}
3838
},
39-
"currentNodeCount": 3,
4039
"databaseEncryption": {
4140
"currentState": "CURRENT_STATE_DECRYPTED",
4241
"state": "DECRYPTED"

0 commit comments

Comments
 (0)