Skip to content

Commit

Permalink
Enable several addons by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
BSick7 committed Mar 22, 2024
1 parent c43c438 commit 1193234
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 0.3.8 (Mar 22, 2024)
* Enable several storage csi driver addons by default. (filestore, persistent disk, fuse)
* Enable config connector addon by default.

# 0.3.7 (May 10, 2023)
* Enable container Google API.

# 0.3.6 (May 10, 2023)
* Enable iam Google API.

# 0.3.5 (Apr 20, 2023)
* Fixed missing `num_node_zones` functionality.

Expand Down
15 changes: 15 additions & 0 deletions cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,21 @@ resource "google_container_cluster" "primary" {
workload_pool = "${local.project_id}.svc.id.goog"
}

addons_config {
gcs_fuse_csi_driver_config {
enabled = true
}
gce_persistent_disk_csi_driver_config {
enabled = true
}
gcp_filestore_csi_driver_config {
enabled = true
}
config_connector_config {
enabled = true
}
}

depends_on = [google_project_service.container]
}

Expand Down

0 comments on commit 1193234

Please sign in to comment.