Skip to content

Commit

Permalink
fix: change minio default bucket name (#1306)
Browse files Browse the repository at this point in the history
  • Loading branch information
lemaitre-aneo authored Jul 25, 2024
2 parents 7a4dc1d + 0b4f9d6 commit 629dc8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion infrastructure/quick-deploy/localhost/common.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ locals {
minio_s3_fs_image = try(var.minio_s3_fs.image, "minio/minio")
minio_s3_fs_image_pull_secrets = try(var.minio_s3_fs.image_pull_secrets, "")
minio_s3_fs_host = try(var.minio_s3_fs.host, "minio_s3_fs")
minio_s3_fs_bucket_name = try(var.minio_s3_fs.default_bucket, "minioBucket")
minio_s3_fs_bucket_name = try(var.minio_s3_fs.default_bucket, "minio-bucket")
minio_s3_fs_node_selector = try(var.minio_s3_fs.node_selector, {})
shared_storage_minio_s3_fs = var.minio_s3_fs != null ? {
file_storage_type = "s3"
Expand Down
4 changes: 2 additions & 2 deletions infrastructure/quick-deploy/localhost/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ variable "minio" {
image_tag = optional(string)
node_selector = optional(any, {})
image_pull_secrets = optional(string, "")
default_bucket = optional(string, "minioBucket")
default_bucket = optional(string, "minio-bucket")
host = optional(string, "minio")
})
default = null
Expand All @@ -194,7 +194,7 @@ variable "minio_s3_fs" {
image_tag = optional(string)
node_selector = optional(any, {})
image_pull_secrets = optional(string, "")
default_bucket = optional(string, "minioBucket")
default_bucket = optional(string, "minio-bucket")
host = optional(string, "minio-s3-fs")
})
default = null
Expand Down

0 comments on commit 629dc8d

Please sign in to comment.