Skip to content

Commit

Permalink
Merge branch 'main' into danielpanzella/bigtable-and-pubsub-prep-for-…
Browse files Browse the repository at this point in the history
…merge
  • Loading branch information
danielpanzella committed Dec 20, 2024
2 parents da96094 + 809a0c0 commit 4572d03
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [6.6.0](https://github.com/wandb/terraform-google-wandb/compare/v6.5.2...v6.6.0) (2024-12-18)


### Features

* Enable GCS FUSE driver addon ([#198](https://github.com/wandb/terraform-google-wandb/issues/198)) ([510164a](https://github.com/wandb/terraform-google-wandb/commit/510164a79c39655ac5276861d1ac797a9d75c220))

### [6.5.2](https://github.com/wandb/terraform-google-wandb/compare/v6.5.1...v6.5.2) (2024-12-12)


Expand Down
8 changes: 8 additions & 0 deletions modules/app_gke/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ resource "google_container_cluster" "default" {
enable_intranode_visibility = true
deletion_protection = var.deletion_protection

dynamic "addons_config" {
for_each = var.enable_gcs_fuse_csi_driver == true ? [1] : []
content {
gcs_fuse_csi_driver_config {
enabled = true
}
}
}

binary_authorization {
evaluation_mode = "PROJECT_SINGLETON_POLICY_ENFORCE"
Expand Down
6 changes: 6 additions & 0 deletions modules/app_gke/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ variable "enable_private_gke_nodes" {
description = "Enable private nodes for the GKE cluster."
}

variable "enable_gcs_fuse_csi_driver" {
type = bool
description = "Enable GCS Fuse CSI driver for the GKE cluster."
default = false
}

variable "deletion_protection" {
description = "If the GKE Cluster should have deletion protection enabled. The GKE Cluster can't be deleted when this value is set to `true`."
type = bool
Expand Down

0 comments on commit 4572d03

Please sign in to comment.