Skip to content

Commit 3bde268

Browse files
authored
feat(anthos-attached-clusters/kind): update default versions (#716)
1 parent 8fd4eaa commit 3bde268

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

anthos-attached-clusters/kind/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ The other examples and module limit dependancies to terraform core providers, bu
6161
| gcp\_project\_id | The GCP project id where the cluster will be registered | `string` | n/a | yes |
6262
| kind\_api\_server\_address | Kind cluster API server address | `string` | `null` | no |
6363
| kind\_api\_server\_port | Kind cluster API server port | `number` | `null` | no |
64-
| kind\_node\_image | The image used for the kind cluster | `string` | `"kindest/node:v1.28.0"` | no |
64+
| kind\_node\_image | The image used for the kind cluster | `string` | `"kindest/node:v1.30.4"` | no |
6565
| kubeconfig\_path | The kubeconfig path. | `string` | `null` | no |
6666
| name\_prefix | Common prefix to use for generating names | `string` | n/a | yes |
67-
| platform\_version | Platform version of the attached cluster resource | `string` | `"1.28.0-gke.3"` | no |
67+
| platform\_version | Platform version of the attached cluster resource | `string` | `"1.30.0-gke.1"` | no |
6868

6969
## Outputs
7070

anthos-attached-clusters/kind/variables.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ variable "gcp_location" {
3333
variable "platform_version" {
3434
description = "Platform version of the attached cluster resource"
3535
type = string
36-
default = "1.28.0-gke.3"
36+
default = "1.30.0-gke.1"
3737
}
3838

3939
variable "kind_node_image" {
4040
description = "The image used for the kind cluster"
4141
type = string
42-
default = "kindest/node:v1.28.0"
42+
default = "kindest/node:v1.30.4"
4343
}
4444

4545
variable "kind_api_server_address" {

anthos-attached-clusters/modules/attached-install-manifest/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module "attached_install_manifest" {
2020
| attached\_cluster\_fleet\_project | GCP fleet project ID where the cluster will be attached | `string` | n/a | yes |
2121
| attached\_cluster\_name | Name for the attached cluster resource | `string` | n/a | yes |
2222
| gcp\_location | GCP location to create the attached resource in | `string` | `"us-west1"` | no |
23-
| platform\_version | Platform version of the attached cluster resource | `string` | `"1.28.8-gke.3"` | no |
23+
| platform\_version | Platform version of the attached cluster resource | `string` | n/a | yes |
2424
| temp\_dir | Directory name to temporarily write out the helm chart for bootstrapping the attach process | `string` | `""` | no |
2525

2626
## Outputs

anthos-attached-clusters/modules/attached-install-manifest/variables.tf

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ variable "gcp_location" {
2929
variable "platform_version" {
3030
description = "Platform version of the attached cluster resource"
3131
type = string
32-
default = "1.28.8-gke.3"
3332
}
3433

3534
variable "attached_cluster_fleet_project" {

test/integration/anthos_attached_clusters_kind/anthos_attached_clusters_kind_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"github.com/stretchr/testify/assert"
2626
)
2727

28-
const deploymentName = "istiod-asm-1224-0"
28+
const deploymentName = "istiod-asm-1225-1"
2929

3030
func TestAACKind(t *testing.T) {
3131
kind := tft.NewTFBlueprintTest(t)

0 commit comments

Comments
 (0)