-
Notifications
You must be signed in to change notification settings - Fork 0
/
devVariables.js
59 lines (59 loc) · 2.29 KB
/
devVariables.js
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
module.exports = {
getCurrentImageVersions: `{
"obolnetwork/charon": "v0.15.0",
"sigp/lighthouse": "v4.0.2-rc.0",
"consensys/teku": "23.3.1",
"prom/prometheus": "v2.41.0",
"grafana/grafana": "9.3.2",
"prom/node-exporter": "v1.5.0",
"jaegertracing/all-in-one": "1.41.0"
}`,
getLatestImageVersion: {
"obolnetwork/charon": "v0.15.0",
"sigp/lighthouse": "v4.1.0",
"consensys/teku": "23.4.0",
"prom/prometheus": "v2.43.0",
"grafana/grafana": "9.5.1",
"prom/node-exporter": "v1.5.0",
"jaegertracing/all-in-one": "1.44.0",
},
getGitHubRepoURL: {
"obolnetwork/charon": "https://github.com/obolnetwork/charon",
"sigp/lighthouse": "https://github.com/sigp/lighthouse",
"consensys/teku": "https://github.com/consensys/teku",
"prom/prometheus": "https://github.com/prometheus/prometheus",
"grafana/grafana": "https://github.com/grafana/grafana",
"prom/node-exporter": "https://github.com/prometheus/node_exporter",
"jaegertracing/all-in-one": "https://github.com/jaegertracing/jaeger",
},
updateDockerComposeFile: {
"obolnetwork/charon": {
indentation: "2",
updatedLine: "image: obolnetwork/charon:${CHARON_VERSION:-v0.15.0}",
},
"sigp/lighthouse": {
indentation: "4",
updatedLine: "image: sigp/lighthouse:${LIGHTHOUSE_VERSION:-v4.1.0}",
},
"consensys/teku": {
indentation: "4",
updatedLine: "image: consensys/teku:${TEKU_VERSION:-23.4.0}",
},
"prom/prometheus": {
indentation: "4",
updatedLine: "image: prom/prometheus:${PROMETHEUS_VERSION:-v2.43.0}",
},
"grafana/grafana": {
indentation: "4",
updatedLine: "image: grafana/grafana:${GRAFANA_VERSION:-9.5.1}",
},
"prom/node_exporter": {
indentation: "4",
updatedLine: "image: prom/node-exporter:${NODE_EXPORTER_VERSION:-v1.5.0}",
},
"jaegertracing/all-in-one": {
indentation: "4",
updatedLine: "image: jaegertracing/all-in-one:${JAEGAR_VERSION:-1.44.0}",
},
},
}