Skip to content

Commit

Permalink
module version bumps and typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aivarasatkocaitiscastai committed Jan 30, 2024
1 parent 8a5049d commit b7e2697
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion examples/gke/evictor_advanced_config/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ variable "castai_api_url" {
default = "https://api-tiberiugal2.localenv.cast.ai"
}

# Variables required for connecting EKS cluster to CAST AI
# Variables required for connecting GKE cluster to CAST AI
variable "castai_api_token" {
type = string
description = "CAST AI API token created in console.cast.ai API Access keys section."
Expand Down
2 changes: 1 addition & 1 deletion examples/gke/gke_cluster_autoscaler_policies/gke.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module "gke" {
source = "terraform-google-modules/kubernetes-engine/google"
version = "24.1.0"
version = "29.0.0"
project_id = var.project_id
name = var.cluster_name
region = var.cluster_region
Expand Down
2 changes: 1 addition & 1 deletion examples/gke/gke_cluster_autoscaler_policies/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ variable "castai_api_url" {
default = "https://api.cast.ai"
}

# Variables required for connecting EKS cluster to CAST AI
# Variables required for connecting GKE cluster to CAST AI
variable "castai_api_token" {
type = string
description = "CAST AI API token created in console.cast.ai API Access keys section."
Expand Down
2 changes: 1 addition & 1 deletion examples/gke/gke_cluster_autoscaler_policies/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ locals {

module "vpc" {
source = "terraform-google-modules/network/google"
version = "6.0.0"
version = "9.0.0"
project_id = var.project_id
network_name = var.cluster_name
subnets = [
Expand Down
2 changes: 1 addition & 1 deletion examples/gke/gke_cluster_existing/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ variable "castai_grpc_url" {
default = "grpc.cast.ai:443"
}

# Variables required for connecting EKS cluster to CAST AI
# Variables required for connecting GKE cluster to CAST AI

variable "delete_nodes_on_disconnect" {
type = bool
Expand Down
2 changes: 1 addition & 1 deletion examples/gke/gke_cluster_readonly/gke.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ data "google_client_config" "default" {}

module "gke" {
source = "terraform-google-modules/kubernetes-engine/google"
version = "24.1.0"
version = "29.0.0"
project_id = var.project_id
name = var.cluster_name
region = var.cluster_region
Expand Down
2 changes: 1 addition & 1 deletion examples/gke/gke_cluster_readonly/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ variable "project_id" {
description = "GCP project ID in which GKE cluster would be created."
}

# Variables required for connecting EKS cluster to CAST AI
# Variables required for connecting GKE cluster to CAST AI
variable "castai_api_token" {
type = string
description = "CAST AI API token created in console.cast.ai API Access keys section."
Expand Down
2 changes: 1 addition & 1 deletion examples/gke/gke_cluster_readonly/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ locals {

module "vpc" {
source = "terraform-google-modules/network/google"
version = "6.0.0"
version = "9.0.0"
project_id = var.project_id
network_name = var.cluster_name
subnets = [
Expand Down
2 changes: 1 addition & 1 deletion examples/gke/gke_cluster_zonal_autoscaler/README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ IAM policies required to connect the cluster to CAST AI in the example are creat

Example configuration should be analysed in the following order:
1. Create VPC - `vpc.tf`
2. Create GKE cluster - `eks.tf`
2. Create GKE cluster - `gke.tf`
3. Create IAM and other CAST AI related resources to connect GKE cluster to CAST AI, configure Autoscaler and Node Configurations - `castai.tf`

# Usage
Expand Down
2 changes: 1 addition & 1 deletion examples/gke/gke_cluster_zonal_autoscaler/gke.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module "gke" {
source = "terraform-google-modules/kubernetes-engine/google"
version = "24.1.0"
version = "29.0.0"
project_id = var.project_id
name = var.cluster_name
region = var.cluster_region
Expand Down
2 changes: 1 addition & 1 deletion examples/gke/gke_cluster_zonal_autoscaler/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ variable "castai_api_url" {
default = "https://api.cast.ai"
}

# Variables required for connecting EKS cluster to CAST AI
# Variables required for connecting GKE cluster to CAST AI
variable "castai_api_token" {
type = string
description = "CAST AI API token created in console.cast.ai API Access keys section."
Expand Down
2 changes: 1 addition & 1 deletion examples/gke/gke_cluster_zonal_autoscaler/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ locals {

module "vpc" {
source = "terraform-google-modules/network/google"
version = "6.0.0"
version = "9.0.0"
project_id = var.project_id
network_name = var.cluster_name
subnets = [
Expand Down

0 comments on commit b7e2697

Please sign in to comment.