Skip to content
This repository has been archived by the owner on Mar 30, 2023. It is now read-only.

Commit

Permalink
Add support for Elastic Stack 7.3.0 (#302)
Browse files Browse the repository at this point in the history
This commit adds support for Elastic Stack 7.3.0.
Bump Elastic Stack 7.2 to 7.2.1
Bump Elastic Stack 6.8 to 6.8.2
Bump Elastic Stack 5.6 to 5.6.16
Bump parameter version values to 7.3.0

Closes #301
  • Loading branch information
russcam authored Aug 2, 2019
1 parent e554dcd commit 3a9f52a
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 19 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ where `<name>` refers to the resource group you just created.
```powershell
$clusterParameters = @{
"_artifactsLocation" = "https://raw.githubusercontent.com/elastic/azure-marketplace/master/src/"
"esVersion" = "7.2.0"
"esVersion" = "7.3.0"
"esClusterName" = "elasticsearch"
"loadBalancerType" = "internal"
"vmDataDiskCount" = 1
Expand Down
7 changes: 4 additions & 3 deletions build/allowedValues.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"versions": [
"5.6.15",
"5.6.16",
"6.2.4",
"6.3.2",
"6.4.3",
"6.5.4",
"6.6.2",
"6.7.2",
"6.8.0",
"6.8.2",
"7.0.1",
"7.1.1",
"7.2.0"
"7.2.1",
"7.3.0"
],
"numberOfDataNodes" : 50,
"numberOfClientNodes" : 20,
Expand Down
4 changes: 2 additions & 2 deletions docs/azure-arm-template.asciidoc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
:marketplace: https://azuremarketplace.microsoft.com/en-au/marketplace/apps/elastic.elasticsearch
:portal: https://portal.azure.com
:github: https://github.com/elastic/azure-marketplace
:current: 7.2
:version: 7.2.0
:current: 7.3
:version: 7.3.0
:register: https://register.elastic.co
:elasticguide: https://www.elastic.co/guide/en/elasticsearch
:elasticdocs: {elasticguide}/reference/{current}
Expand Down
2 changes: 1 addition & 1 deletion parameters/password.parameters.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"_artifactsLocation":{"value":"https://raw.githubusercontent.com/elastic/azure-marketplace/master/src/"},
"_artifactsLocationSasToken":{"value":""},
"esVersion":{"value":"6.7.0"},
"esVersion":{"value":"7.3.0"},
"esClusterName":{"value":"my-azure-cluster"},
"loadBalancerType":{"value":"internal"},
"loadBalancerInternalSku":{"value":"Basic"},
Expand Down
2 changes: 1 addition & 1 deletion parameters/ssh.parameters.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"_artifactsLocation":{"value":"https://raw.githubusercontent.com/elastic/azure-marketplace/master/src/"},
"_artifactsLocationSasToken":{"value":""},
"esVersion":{"value":"6.7.0"},
"esVersion":{"value":"7.3.0"},
"esClusterName":{"value":"my-azure-cluster"},
"loadBalancerType":{"value":"internal"},
"loadBalancerInternalSku":{"value":"Basic"},
Expand Down
18 changes: 11 additions & 7 deletions src/createUiDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@
"name": "esVersion",
"type": "Microsoft.Common.DropDown",
"label": "Elasticsearch version",
"defaultValue": "v7.2.0",
"defaultValue": "v7.3.0",
"toolTip": "Choose a version of Elasticsearch.",
"constraints": {
"allowedValues": [
{
"label": "v5.6.15",
"value": "5.6.15"
"label": "v5.6.16",
"value": "5.6.16"
},
{
"label": "v6.2.4",
Expand All @@ -87,8 +87,8 @@
"value": "6.7.2"
},
{
"label": "v6.8.0",
"value": "6.8.0"
"label": "v6.8.2",
"value": "6.8.2"
},
{
"label": "v7.0.1",
Expand All @@ -99,8 +99,12 @@
"value": "7.1.1"
},
{
"label": "v7.2.0",
"value": "7.2.0"
"label": "v7.2.1",
"value": "7.2.1"
},
{
"label": "v7.3.0",
"value": "7.3.0"
}
]
}
Expand Down
9 changes: 5 additions & 4 deletions src/mainTemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,20 @@
},
"esVersion": {
"type": "string",
"defaultValue": "7.2.0",
"defaultValue": "7.3.0",
"allowedValues": [
"5.6.15",
"5.6.16",
"6.2.4",
"6.3.2",
"6.4.3",
"6.5.4",
"6.6.2",
"6.7.2",
"6.8.0",
"6.8.2",
"7.0.1",
"7.1.1",
"7.2.0"
"7.2.1",
"7.3.0"
],
"metadata": {
"description": "Elastic Stack version to install"
Expand Down

0 comments on commit 3a9f52a

Please sign in to comment.