Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #38 from padok-team/feat/support-gcs-fuse-addon
Browse files Browse the repository at this point in the history
feat(addons): add support for the GCS FUSE CSI driver addon
  • Loading branch information
AlanLonguet authored Mar 1, 2024
2 parents 4b4c64f + d796541 commit 4f7d20e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ resource "google_container_cluster" "this" {
http_load_balancing {
disabled = false
}
gcs_fuse_csi_driver_config {
enabled = var.enable_gcs_fuse_csi_driver
}
}

master_auth {
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@ variable "enable_binary_authorization" {
default = false
}

variable "enable_gcs_fuse_csi_driver" {
description = "Enables the GCS FUSE CSI driver GKE addon"
type = bool
default = false
}

variable "maintenance_start_time" {
description = "Time window specified for daily maintenance operations. Specify start_time in RFC3339 format 'HH:MM', where HH : [00-23] and MM : [00-59] GMT."
type = string
Expand Down

0 comments on commit 4f7d20e

Please sign in to comment.