forked from scylladb/scylla-monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
versions.sh
37 lines (37 loc) · 1.29 KB
/
versions.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
unset SUPPORTED_VERSIONS
unset MANAGER_SUPPORTED_VERSIONS
unset DEFAULT_VERSION
unset MANAGER_DEFAULT_VERSION
unset DEFAULT_ENTERPRISE_VERSION
unset DOCKER_LIMITS
unset DOCKER_PARAMS
declare -A SUPPORTED_VERSIONS
declare -A MANAGER_SUPPORTED_VERSIONS
declare -A DEFAULT_VERSION
declare -A MANAGER_DEFAULT_VERSION
declare -A DEFAULT_ENTERPRISE_VERSION
declare -A DOCKER_LIMITS
declare -A DOCKER_PARAMS
SUPPORTED_VERSIONS["3.8"]="4.3,4.4,4.5,2020.1,2021.1,master"
MANAGER_SUPPORTED_VERSIONS["3.8"]="2.3,2.4,2.5"
DEFAULT_VERSION["3.8"]="4.4"
DEFAULT_ENTERPRISE_VERSION["3.8"]="2020.1"
MANAGER_DEFAULT_VERSION["3.8"]="2.4"
MANAGER_DEFAULT_VERSION["master"]="2.4"
SUPPORTED_VERSIONS["3.9"]="4.3,4.4,4.5,4.6,2020.1,2021.1,master"
MANAGER_SUPPORTED_VERSIONS["3.9"]="2.3,2.4,2.5,2.6"
DEFAULT_VERSION["3.9"]="4.4"
DEFAULT_ENTERPRISE_VERSION["3.9"]="2020.1"
MANAGER_DEFAULT_VERSION["3.9"]="2.4"
SUPPORTED_VERSIONS["3.10"]="4.3,4.4,4.5,4.6,2020.1,2021.1,master"
MANAGER_SUPPORTED_VERSIONS["3.10"]="2.3,2.4,2.5,2.6"
DEFAULT_VERSION["3.10"]="4.4"
DEFAULT_ENTERPRISE_VERSION["3.10"]="2020.1"
MANAGER_DEFAULT_VERSION["3.10"]="2.5"
MANAGER_DEFAULT_VERSION["master"]="2.5"
PROMETHEUS_VERSION=v2.32.0
ALERT_MANAGER_VERSION="v0.23.0"
GRAFANA_VERSION=8.3.4
LOKI_VERSION="2.4.1"
GRAFANA_RENDERER_VERSION="3.4.1"
THANOS_VERSION="v0.23.1"