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

Commit

Permalink
Add Elastic Stack 6.6 support (#258)
Browse files Browse the repository at this point in the history
Add support for 6.6.0
Add support for 6.5.4
Add support for 5.6.14

Remove support for 5.6.12 as this is superseded by 5.6.14
Remove support for 5.5 as this is now EOL for support.
Remove minor versions of 6.5 prior to 6.5.4

Closes #257
  • Loading branch information
russcam authored Feb 8, 2019
1 parent 48fc733 commit bb56207
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 44 deletions.
11 changes: 3 additions & 8 deletions build/allowedValues.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
{
"versions": [
"5.5.3",
"5.6.12",
"5.6.14",
"6.0.1",
"6.1.3",
"6.2.4",
"6.3.2",
"6.4.1",
"6.4.2",
"6.4.3",
"6.5.0",
"6.5.1",
"6.5.2",
"6.5.3"
"6.5.4",
"6.6.0"
],
"numberOfDataNodes" : 50,
"numberOfClientNodes" : 20,
Expand Down
34 changes: 7 additions & 27 deletions src/createUiDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,13 @@
"name": "esVersion",
"type": "Microsoft.Common.DropDown",
"label": "Elasticsearch version",
"defaultValue": "v6.5.3",
"defaultValue": "v6.6.0",
"toolTip": "Choose a version of Elasticsearch.",
"constraints": {
"allowedValues": [
{
"label": "v5.5.3",
"value": "5.5.3"
},
{
"label": "v5.6.12",
"value": "5.6.12"
"label": "v5.6.14",
"value": "5.6.14"
},
{
"label": "v6.0.1",
Expand All @@ -82,33 +78,17 @@
"label": "v6.3.2",
"value": "6.3.2"
},
{
"label": "v6.4.1",
"value": "6.4.1"
},
{
"label": "v6.4.2",
"value": "6.4.2"
},
{
"label": "v6.4.3",
"value": "6.4.3"
},
{
"label": "v6.5.0",
"value": "6.5.0"
},
{
"label": "v6.5.1",
"value": "6.5.1"
},
{
"label": "v6.5.2",
"value": "6.5.2"
"label": "v6.5.4",
"value": "6.5.4"
},
{
"label": "v6.5.3",
"value": "6.5.3"
"label": "v6.6.0",
"value": "6.6.0"
}
]
}
Expand Down
13 changes: 4 additions & 9 deletions src/mainTemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,16 @@
},
"esVersion": {
"type": "string",
"defaultValue": "6.5.3",
"defaultValue": "6.6.0",
"allowedValues": [
"5.5.3",
"5.6.12",
"5.6.14",
"6.0.1",
"6.1.3",
"6.2.4",
"6.3.2",
"6.4.1",
"6.4.2",
"6.4.3",
"6.5.0",
"6.5.1",
"6.5.2",
"6.5.3"
"6.5.4",
"6.6.0"
],
"metadata": {
"description": "Elasticsearch version to install"
Expand Down

0 comments on commit bb56207

Please sign in to comment.