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 5.6.5 (#156)
Browse files Browse the repository at this point in the history
* Add support for 5.6.5
  • Loading branch information
russcam authored Dec 11, 2017
1 parent f9bf819 commit f4ff047
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
3 changes: 3 additions & 0 deletions build/allowedValues.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
},
"5.6.3": {
"kibana": "5.6.3"
},
"5.6.5": {
"kibana": "5.6.5"
}
},
"numberOfDataNodes" : 50,
Expand Down
6 changes: 5 additions & 1 deletion src/createUiDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"name": "esVersion",
"type": "Microsoft.Common.DropDown",
"label": "Elasticsearch version",
"defaultValue": "v5.6.3",
"defaultValue": "v5.6.5",
"toolTip": "Choose a version of Elasticsearch.",
"constraints": {
"allowedValues": [
Expand Down Expand Up @@ -125,6 +125,10 @@
{
"label": "v5.6.3",
"value": "5.6.3"
},
{
"label": "v5.6.5",
"value": "5.6.5"
}
]
}
Expand Down
8 changes: 5 additions & 3 deletions src/mainTemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"esVersion": {
"type": "string",
"defaultValue": "5.6.3",
"defaultValue": "5.6.5",
"allowedValues": [
"2.0.2",
"2.1.2",
Expand All @@ -38,7 +38,8 @@
"5.5.1",
"5.5.2",
"5.5.3",
"5.6.3"
"5.6.3",
"5.6.5"
],
"metadata": {
"description": "Elasticsearch version to install"
Expand Down Expand Up @@ -776,7 +777,8 @@
"5.5.1": "5.5.1",
"5.5.2": "5.5.2",
"5.5.3": "5.5.3",
"5.6.3": "5.6.3"
"5.6.3": "5.6.3",
"5.6.5": "5.6.5"
},
"esSettings": {
"clusterName": "[parameters('esClusterName')]",
Expand Down

0 comments on commit f4ff047

Please sign in to comment.