-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathversions.py
32 lines (32 loc) · 1.26 KB
/
versions.py
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
versions = [
# Also do not merge java-base with java below as "JAVA-BASE is not a valid identifier" in Dockerfiles, it's unfortunate but to fix this would require a bigger refactoring of names or the image tools
# hbase-thirdparty is used to build the hbase-operator-tools and should be set to the version defined in the POM of HBase.
{
"product": "2.4.18",
"hbase_thirdparty": "4.1.5",
"hbase_operator_tools": "1.2.0",
"java-base": "11",
"java-devel": "11",
"async_profiler": "2.9",
"phoenix": "5.2.1",
"hbase_profile": "2.4",
"hadoop": "3.3.6",
"jmx_exporter": "1.1.0", # update the stackable/jmx/config<version> folder too
"opa_authorizer": "", # only for HBase 2.6.1
"delete_caches": "true",
},
{
"product": "2.6.1",
"hbase_thirdparty": "4.1.9",
"hbase_operator_tools": "1.3.0-fd5a5fb",
"java-base": "11",
"java-devel": "11",
"async_profiler": "2.9",
"phoenix": "5.2.1",
"hbase_profile": "2.6",
"hadoop": "3.3.6",
"jmx_exporter": "", # 2.6 exports jmx and prometheus metrics by default
"opa_authorizer": "0.1.0", # only for HBase 2.6.1
"delete_caches": "true",
},
]