Skip to content

Commit

Permalink
feat(anthos-attached-clusters/kind): update default versions (#716)
Browse files Browse the repository at this point in the history
  • Loading branch information
apeabody authored Sep 24, 2024
1 parent 8fd4eaa commit 3bde268
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions anthos-attached-clusters/kind/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ The other examples and module limit dependancies to terraform core providers, bu
| gcp\_project\_id | The GCP project id where the cluster will be registered | `string` | n/a | yes |
| kind\_api\_server\_address | Kind cluster API server address | `string` | `null` | no |
| kind\_api\_server\_port | Kind cluster API server port | `number` | `null` | no |
| kind\_node\_image | The image used for the kind cluster | `string` | `"kindest/node:v1.28.0"` | no |
| kind\_node\_image | The image used for the kind cluster | `string` | `"kindest/node:v1.30.4"` | no |
| kubeconfig\_path | The kubeconfig path. | `string` | `null` | no |
| name\_prefix | Common prefix to use for generating names | `string` | n/a | yes |
| platform\_version | Platform version of the attached cluster resource | `string` | `"1.28.0-gke.3"` | no |
| platform\_version | Platform version of the attached cluster resource | `string` | `"1.30.0-gke.1"` | no |

## Outputs

Expand Down
4 changes: 2 additions & 2 deletions anthos-attached-clusters/kind/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ variable "gcp_location" {
variable "platform_version" {
description = "Platform version of the attached cluster resource"
type = string
default = "1.28.0-gke.3"
default = "1.30.0-gke.1"
}

variable "kind_node_image" {
description = "The image used for the kind cluster"
type = string
default = "kindest/node:v1.28.0"
default = "kindest/node:v1.30.4"
}

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

## Outputs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ variable "gcp_location" {
variable "platform_version" {
description = "Platform version of the attached cluster resource"
type = string
default = "1.28.8-gke.3"
}

variable "attached_cluster_fleet_project" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"github.com/stretchr/testify/assert"
)

const deploymentName = "istiod-asm-1224-0"
const deploymentName = "istiod-asm-1225-1"

func TestAACKind(t *testing.T) {
kind := tft.NewTFBlueprintTest(t)
Expand Down

0 comments on commit 3bde268

Please sign in to comment.