@leverege/build-tools 2.21.14 → 2.22.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/server/build-tools.js +9 -0
- package/lib/server/overwhelm.js +10 -0
- package/lib/web/build-tools.js +9 -0
- package/lib/web/overwhelm.js +10 -0
- package/package.json +5 -5
- package/src/bash-funcs +1 -1
- package/src/build-tools.js +10 -0
- package/src/helmup +246 -174
- package/src/overwhelm.js +3 -0
- package/src/system-charts/elasticsearch-local.yaml +14 -0
- package/src/system-charts/elasticsearch.hup +18 -0
- package/src/system-charts/grafana-local.yaml +29 -0
- package/src/system-charts/grafana.hup +17 -0
- package/src/system-charts/postgres-local.yaml +39 -0
- package/src/system-charts/postgres.hup +11 -0
- package/src/system-charts/prometheus-local.yaml +792 -0
- package/src/system-charts/prometheus.hup +15 -0
- package/src/system-charts/redis-local.yaml +62 -0
- package/src/system-charts/redis.hup +12 -0
- package/src/system-charts/timescale-db-local.yaml +44 -0
- package/src/system-charts/timescale-db.hup +10 -0
- package/src/system-charts/traefik-local.yaml +13 -0
- package/src/system-charts/traefik.hup +13 -0
- package/leverege-build-tools-2.21.13.tgz +0 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
#
|
|
3
|
+
showInstalling "Prometheus"
|
|
4
|
+
|
|
5
|
+
createNamespaceIfNeeded monitoring
|
|
6
|
+
|
|
7
|
+
addHelmRepo prometheus-community https://prometheus-community.github.io/helm-charts
|
|
8
|
+
|
|
9
|
+
[ -z "$PROMETHEUS_HELM_CHART" ] && PROMETHEUS_HELM_CHART="15"
|
|
10
|
+
helm upgrade --install prometheus prometheus-community/prometheus \
|
|
11
|
+
--namespace monitoring \
|
|
12
|
+
--values prometheus/values.yaml \
|
|
13
|
+
--version $PROMETHEUS_HELM_CHART $HELM_WHAT
|
|
14
|
+
|
|
15
|
+
removeHelmRepo prometheus-community
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
global:
|
|
2
|
+
storageClass: ssd
|
|
3
|
+
|
|
4
|
+
auth:
|
|
5
|
+
enabled: false
|
|
6
|
+
sentinel: false
|
|
7
|
+
|
|
8
|
+
master:
|
|
9
|
+
affinity:
|
|
10
|
+
nodeAffinity:
|
|
11
|
+
requiredDuringSchedulingIgnoredDuringExecution:
|
|
12
|
+
nodeSelectorTerms:
|
|
13
|
+
- matchExpressions:
|
|
14
|
+
- key: target-env
|
|
15
|
+
operator: In
|
|
16
|
+
values:
|
|
17
|
+
- database
|
|
18
|
+
|
|
19
|
+
tolerations:
|
|
20
|
+
- key: "database"
|
|
21
|
+
operator: "Equal"
|
|
22
|
+
value: "true"
|
|
23
|
+
effect: "NoSchedule"
|
|
24
|
+
|
|
25
|
+
persistence:
|
|
26
|
+
size: 8Gi # 8Gi is default
|
|
27
|
+
|
|
28
|
+
replica:
|
|
29
|
+
affinity:
|
|
30
|
+
nodeAffinity:
|
|
31
|
+
requiredDuringSchedulingIgnoredDuringExecution:
|
|
32
|
+
nodeSelectorTerms:
|
|
33
|
+
- matchExpressions:
|
|
34
|
+
- key: target-env
|
|
35
|
+
operator: In
|
|
36
|
+
values:
|
|
37
|
+
- database
|
|
38
|
+
|
|
39
|
+
tolerations:
|
|
40
|
+
- key: "database"
|
|
41
|
+
operator: "Equal"
|
|
42
|
+
value: "true"
|
|
43
|
+
effect: "NoSchedule"
|
|
44
|
+
|
|
45
|
+
persistence:
|
|
46
|
+
size: 8Gi # 8Gi is default
|
|
47
|
+
|
|
48
|
+
architecture: replication
|
|
49
|
+
|
|
50
|
+
sentinel:
|
|
51
|
+
enabled: false
|
|
52
|
+
|
|
53
|
+
networkPolicy:
|
|
54
|
+
enabled: true
|
|
55
|
+
allowExternal: false
|
|
56
|
+
ingressNSMatchLabels:
|
|
57
|
+
redis: external
|
|
58
|
+
ingressNSPodMatchLabels:
|
|
59
|
+
redis-client: true
|
|
60
|
+
|
|
61
|
+
metrics:
|
|
62
|
+
enabled: true
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
showInstalling "Redis"
|
|
4
|
+
|
|
5
|
+
addBitnamiRepo latest
|
|
6
|
+
|
|
7
|
+
[ -z "$REDIS_HELM_CHART" ] && REDIS_HELM_CHART="17" # latest chart 17 is redis v7
|
|
8
|
+
helm upgrade --install redis bitnami/redis \
|
|
9
|
+
--values redis/redis-local.yaml \
|
|
10
|
+
--version $REDIS_HELM_CHART $HELM_WHAT
|
|
11
|
+
|
|
12
|
+
removeHelmRepo bitnami
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
postgresql:
|
|
2
|
+
postgresqlExtendedConf:
|
|
3
|
+
maxWorkerProcesses: 8
|
|
4
|
+
maxParallelWorkers: 8
|
|
5
|
+
maxConnections: 500
|
|
6
|
+
sharedBuffers: 2GB
|
|
7
|
+
effectiveCacheSize: 6GB
|
|
8
|
+
maintenanceWorkMem: 1GB
|
|
9
|
+
workMem: 20MB
|
|
10
|
+
idle_in_transaction_session_timeout: 30000 # 30ms timeout
|
|
11
|
+
maxWalSize: 2GB
|
|
12
|
+
walKeepSegments: 64
|
|
13
|
+
|
|
14
|
+
resources:
|
|
15
|
+
requests:
|
|
16
|
+
memory: 4Gi
|
|
17
|
+
cpu: 1000m
|
|
18
|
+
|
|
19
|
+
persistence:
|
|
20
|
+
size: 200Gi
|
|
21
|
+
|
|
22
|
+
livenessProbe:
|
|
23
|
+
enabled: true # false for repairs
|
|
24
|
+
initialDelaySeconds: 30
|
|
25
|
+
periodSeconds: 10
|
|
26
|
+
timeoutSeconds: 5
|
|
27
|
+
failureThreshold: 6
|
|
28
|
+
successThreshold: 1
|
|
29
|
+
|
|
30
|
+
readinessProbe:
|
|
31
|
+
enabled: true
|
|
32
|
+
successThreshold: 1
|
|
33
|
+
initialDelaySeconds: 5
|
|
34
|
+
timeoutSeconds: 5
|
|
35
|
+
periodSeconds: 10
|
|
36
|
+
failureThreshold: 6
|
|
37
|
+
# These values should be used when attempting to rebuild the slave VPCs
|
|
38
|
+
# following a failure, typically caused by WAL problems. The failure
|
|
39
|
+
# threshold of 240 with a period of 30 seconds should allow the recovery
|
|
40
|
+
# process 2 hours of time for each slave VPC - lengthen as necessary.
|
|
41
|
+
# initialDelaySeconds: 60
|
|
42
|
+
# timeoutSeconds: 15
|
|
43
|
+
# periodSeconds: 30
|
|
44
|
+
# failureThreshold: 240
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
#
|
|
3
|
+
showInstalling "Timescale Database (Leverege chart)"
|
|
4
|
+
|
|
5
|
+
checkTimescalePassword
|
|
6
|
+
|
|
7
|
+
[ -z "$TIMESCALE_HELM_CHART" ] && TIMESCALE_HELM_CHART="2"
|
|
8
|
+
helm upgrade --install timescale-db leverege/timescale-db \
|
|
9
|
+
--values timescale-db/timescale-db-local.yaml \
|
|
10
|
+
--version $TIMESCALE_HELM_CHART $HELM_WHAT
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
showInstalling "Traefik Load Balancer / Router"
|
|
4
|
+
|
|
5
|
+
addHelmRepo traefik https://helm.traefik.io/traefik
|
|
6
|
+
|
|
7
|
+
[ -z "$TRAEFIK_HELM_CHART" ] && TRAEFIK_HELM_CHART="16"
|
|
8
|
+
helm upgrade --install traefik traefik/traefik \
|
|
9
|
+
--namespace traefik \
|
|
10
|
+
--values traefik/traefik-local.yaml \
|
|
11
|
+
--version $TRAEFIK_HELM_CHART $HELM_WHAT
|
|
12
|
+
|
|
13
|
+
removeHelmRepo traefik
|
|
Binary file
|