Skip to content

Commit

Permalink
core: update default weka version to 4.2.6.90
Browse files Browse the repository at this point in the history
  • Loading branch information
assafgi committed Dec 22, 2023
1 parent c0402cc commit e489d35
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ proxy_url = VALUE
| <a name="input_vnets_to_peer_to_deployment_vnet"></a> [vnets\_to\_peer\_to\_deployment\_vnet](#input\_vnets\_to\_peer\_to\_deployment\_vnet) | List of vent-name:resource-group-name to peer | <pre>list(object({<br> vnet = string<br> rg = string<br> }))</pre> | `[]` | no |
| <a name="input_weka_home_url"></a> [weka\_home\_url](#input\_weka\_home\_url) | Weka Home url | `string` | `""` | no |
| <a name="input_weka_tar_storage_account_id"></a> [weka\_tar\_storage\_account\_id](#input\_weka\_tar\_storage\_account\_id) | ### private blob | `string` | `""` | no |
| <a name="input_weka_version"></a> [weka\_version](#input\_weka\_version) | The Weka version to deploy. | `string` | `"4.2.6"` | no |
| <a name="input_weka_version"></a> [weka\_version](#input\_weka\_version) | The Weka version to deploy. | `string` | `"4.2.6.90"` | no |
| <a name="input_zone"></a> [zone](#input\_zone) | The zone in which the resources should be created. | `string` | `"1"` | no |

## Outputs
Expand Down
2 changes: 1 addition & 1 deletion examples/existing_private_network/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module "weka_deployment" {
vnet_name = "vnet-name"
vnet_rg_name = "vnet-rg-name"
sg_id = "/subscriptions/../resourceGroups/../providers/Microsoft.Network/networkSecurityGroups/.."
install_weka_url = "https://wekatars.blob.core.windows.net/tars/weka-4.2.6.tar?<SAS_TOKEN>"
install_weka_url = "https://wekatars.blob.core.windows.net/tars/weka-4.2.6.90.tar?<SAS_TOKEN>"
assign_public_ip = false
cluster_size = 6
tiering_enable_obs_integration = true
Expand Down
2 changes: 1 addition & 1 deletion examples/existing_private_network_with_peering/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module "weka_deployment" {
rg_name = "weka-rg"
assign_public_ip = false
apt_repo_server = "http://11.0.0.4/ubuntu/mirror/archive.ubuntu.com/ubuntu/"
install_weka_url = "https://wekatars.blob.core.windows.net/tars/weka-4.2.6.tar?<SAS_TOKEN>"
install_weka_url = "https://wekatars.blob.core.windows.net/tars/weka-4.2.6.90.tar?<SAS_TOKEN>"
vnet_rg_name = "weka-rg"
vnet_name = "weka-vnet"
subnet_name = "weka-subnet"
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ variable "logic_app_subnet_delegation_cidr" {
variable "weka_version" {
type = string
description = "The Weka version to deploy."
default = "4.2.6"
default = "4.2.6.90"
}

variable "get_weka_io_token" {
Expand Down

0 comments on commit e489d35

Please sign in to comment.