Skip to content

Commit bc72399

Browse files
kristina-solovyovaassafgi
authored andcommitted
fix: fetch password in existing containers join after clusterization
1 parent 2ea846e commit bc72399

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ proxy_url = VALUE
428428
| <a name="input_function_app_storage_account_prefix"></a> [function\_app\_storage\_account\_prefix](#input\_function\_app\_storage\_account\_prefix) | Weka storage account name prefix | `string` | `"weka"` | no |
429429
| <a name="input_function_app_subnet_delegation_cidr"></a> [function\_app\_subnet\_delegation\_cidr](#input\_function\_app\_subnet\_delegation\_cidr) | Subnet delegation enables you to designate a specific subnet for an Azure PaaS service. | `string` | `"10.0.1.0/25"` | no |
430430
| <a name="input_function_app_subnet_delegation_id"></a> [function\_app\_subnet\_delegation\_id](#input\_function\_app\_subnet\_delegation\_id) | Required to specify if subnet\_name were used to specify pre-defined subnets for weka. Function subnet delegation requires an additional subnet, and in the case of pre-defined networking this one also should be pre-defined | `string` | `""` | no |
431-
| <a name="input_function_app_version"></a> [function\_app\_version](#input\_function\_app\_version) | Function app code version (hash) | `string` | `"88377f16322e8c01849f45627e578f7d"` | no |
431+
| <a name="input_function_app_version"></a> [function\_app\_version](#input\_function\_app\_version) | Function app code version (hash) | `string` | `"0e787ecc4b4936228cdb784e52ec408a"` | no |
432432
| <a name="input_get_weka_io_token"></a> [get\_weka\_io\_token](#input\_get\_weka\_io\_token) | The token to download the Weka release from get.weka.io. | `string` | `""` | no |
433433
| <a name="input_hotspare"></a> [hotspare](#input\_hotspare) | Number of hotspares to set on weka cluster. Refer to https://docs.weka.io/overview/ssd-capacity-management#hot-spare | `number` | `1` | no |
434434
| <a name="input_install_cluster_dpdk"></a> [install\_cluster\_dpdk](#input\_install\_cluster\_dpdk) | Install weka cluster with DPDK | `bool` | `true` | no |

function-app/code/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require (
1515
github.com/google/uuid v1.6.0
1616
github.com/lithammer/dedent v1.1.0
1717
github.com/rs/zerolog v1.29.0
18-
github.com/weka/go-cloud-lib v0.0.0-20240718085251-5f5e85497144
18+
github.com/weka/go-cloud-lib v0.0.0-20240730090621-daac1ef4a039
1919
)
2020

2121
require (

function-app/code/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ github.com/rs/xid v1.4.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg=
5555
github.com/rs/zerolog v1.29.0 h1:Zes4hju04hjbvkVkOhdl2HpZa+0PmVwigmo8XoORE5w=
5656
github.com/rs/zerolog v1.29.0/go.mod h1:NILgTygv/Uej1ra5XxGf82ZFSLk58MFGAUS2o6usyD0=
5757
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
58-
github.com/weka/go-cloud-lib v0.0.0-20240718085251-5f5e85497144 h1:AMFRqKpeQZVbveJb2iuDUVM9e5u1tapQi6WxZcBnPAY=
59-
github.com/weka/go-cloud-lib v0.0.0-20240718085251-5f5e85497144/go.mod h1:FCQuk2bLvtDHe2Kjsu0oInJP1VOVsuxqPGHGMmVIPMg=
58+
github.com/weka/go-cloud-lib v0.0.0-20240730090621-daac1ef4a039 h1:PVACFcS9r4sgtm6Z9UiN7/LMoDySTPP0Ghsxj+MSOtQ=
59+
github.com/weka/go-cloud-lib v0.0.0-20240730090621-daac1ef4a039/go.mod h1:FCQuk2bLvtDHe2Kjsu0oInJP1VOVsuxqPGHGMmVIPMg=
6060
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
6161
golang.org/x/crypto v0.24.0 h1:mnl8DM0o513X8fdIkmyFE/5hTYxbwYOjDS/+rK6qpRI=
6262
golang.org/x/crypto v0.24.0/go.mod h1:Z1PMYSOR5nyMcyAVAIQSKCDwalqy85Aqn1x3Ws4L5DM=

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ variable "function_app_storage_account_container_prefix" {
387387
variable "function_app_version" {
388388
type = string
389389
description = "Function app code version (hash)"
390-
default = "88377f16322e8c01849f45627e578f7d"
390+
default = "0e787ecc4b4936228cdb784e52ec408a"
391391
}
392392

393393
variable "function_app_dist" {

0 commit comments

Comments
 (0)