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 6.6.1 (#264)
Browse files Browse the repository at this point in the history
* Add support for Elastic Stack 6.6.1

* Add support for Elastic Stack 5.6.15

Remove support for 5.6.14

(cherry picked from commit 99f6329)
  • Loading branch information
russcam committed Mar 7, 2019
1 parent 090c328 commit b7f8081
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
5 changes: 3 additions & 2 deletions build/allowedValues.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"versions": [
"5.6.14",
"5.6.15",
"6.0.1",
"6.1.3",
"6.2.4",
"6.3.2",
"6.4.3",
"6.5.4",
"6.6.0"
"6.6.0",
"6.6.1"
],
"numberOfDataNodes" : 50,
"numberOfClientNodes" : 20,
Expand Down
10 changes: 7 additions & 3 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": "v6.6.0",
"defaultValue": "v6.6.1",
"toolTip": "Choose a version of Elasticsearch.",
"constraints": {
"allowedValues": [
{
"label": "v5.6.14",
"value": "5.6.14"
"label": "v5.6.15",
"value": "5.6.15"
},
{
"label": "v6.0.1",
Expand Down Expand Up @@ -89,6 +89,10 @@
{
"label": "v6.6.0",
"value": "6.6.0"
},
{
"label": "v6.6.1",
"value": "6.6.1"
}
]
}
Expand Down
7 changes: 4 additions & 3 deletions src/mainTemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,17 @@
},
"esVersion": {
"type": "string",
"defaultValue": "6.6.0",
"defaultValue": "6.6.1",
"allowedValues": [
"5.6.14",
"5.6.15",
"6.0.1",
"6.1.3",
"6.2.4",
"6.3.2",
"6.4.3",
"6.5.4",
"6.6.0"
"6.6.0",
"6.6.1"
],
"metadata": {
"description": "Elasticsearch version to install"
Expand Down

0 comments on commit b7f8081

Please sign in to comment.