Skip to content

Commit

Permalink
Revert "feat: support ubuntu 22"
Browse files Browse the repository at this point in the history
This reverts commit 6ce7a1f.
  • Loading branch information
assafgi committed Sep 24, 2024
1 parent fcc53ee commit e854e9f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions modules/clients/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ locals {
}
instance_type = var.instance_type != "" ? var.instance_type : local.default_client_instance_type[local.arch]
default_source_image_id = {
x86_64 = "/communityGalleries/WekaIO-ddbef83d-dec1-42d0-998a-3c083f1450b7/images/weka_custom_image/versions/2.0.0"
arm64 = "/communityGalleries/WekaIO-ddbef83d-dec1-42d0-998a-3c083f1450b7/images/weka_custom_image_arm/versions/2.0.0"
x86_64 = "/communityGalleries/WekaIO-ddbef83d-dec1-42d0-998a-3c083f1450b7/images/weka_custom_image/versions/1.0.1"
arm64 = "/communityGalleries/WekaIO-ddbef83d-dec1-42d0-998a-3c083f1450b7/images/weka_custom_image_arm/versions/1.0.0"
}
source_image_id = var.source_image_id != "" ? var.source_image_id : local.default_source_image_id[local.arch]
}
Expand Down
2 changes: 1 addition & 1 deletion modules/clients/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ variable "arch" {

variable "source_image_id" {
type = string
description = "Use weka custom image, ubuntu 22.04 with kernel 6.2 and ofed 23.10-0.5.5.0"
description = "Use weka custom image, ubuntu 20.04 with kernel 5.4 and ofed 5.8-1.1.2.1"
default = ""
}

Expand Down
6 changes: 3 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ variable "cluster_size" {

variable "source_image_id" {
type = string
default = "/communityGalleries/WekaIO-ddbef83d-dec1-42d0-998a-3c083f1450b7/images/weka_custom_image/versions/2.0.0"
description = "Use weka custom image, ubuntu 22.04 with kernel 6.2 and ofed 23.10-0.5.5.0"
default = "/communityGalleries/WekaIO-ddbef83d-dec1-42d0-998a-3c083f1450b7/images/weka_custom_image/versions/1.0.1"
description = "Use weka custom image, ubuntu 20.04 with kernel 5.4 and ofed 5.8-1.1.2.1"
}

variable "sg_id" {
Expand Down Expand Up @@ -514,7 +514,7 @@ variable "client_instance_type" {

variable "client_source_image_id" {
type = string
description = "Use weka custom image, ubuntu 22.04 with kernel 6.2 and ofed 23.10-0.5.5.0 / ubuntu arm 22.04 with kernel 6.2 and ofed 23.10-0.5.5.0"
description = "Use weka custom image, ubuntu 20.04 with kernel 5.4 and ofed 5.8-1.1.2.1 / ubuntu arm 20.04 with kernel 5.4 and ofed 5.9-0.5.6.0"
default = ""
}

Expand Down

0 comments on commit e854e9f

Please sign in to comment.