@leverege/build-tools 2.18.3-beta.1 → 2.19.0
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/repo-init/config.tgz +0 -0
- package/package.json +2 -2
- package/src/dockreate +5 -0
- package/src/helmup +2 -2
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leverege/build-tools",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.19.0",
|
|
4
4
|
"description": "A collection of build / support tools for Leverege developers",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -79,6 +79,6 @@
|
|
|
79
79
|
"@babel/node": "^7.18.6",
|
|
80
80
|
"@leverege/babel-preset-leverege-node": "^2.0.0",
|
|
81
81
|
"@leverege/eslint-config-leverege": "^3.0.1",
|
|
82
|
-
"npm": "^8.
|
|
82
|
+
"npm": "^8.14.0"
|
|
83
83
|
}
|
|
84
84
|
}
|
package/src/dockreate
CHANGED
|
@@ -156,6 +156,11 @@ alias inf='wget -q -O- localhost:5111/logLevel/info'
|
|
|
156
156
|
alias dbg='wget -q -O- localhost:5111/logLevel/debug'
|
|
157
157
|
alias trc='wget -q -O- localhost:5111/logLevel/trace'
|
|
158
158
|
|
|
159
|
+
socks()
|
|
160
|
+
{
|
|
161
|
+
netstat -ant | awk '{print $6}' | sort | uniq -c | sort -n
|
|
162
|
+
}
|
|
163
|
+
|
|
159
164
|
cmetrics()
|
|
160
165
|
{
|
|
161
166
|
wget -qO- localhost:5111/metrics
|
package/src/helmup
CHANGED
|
@@ -140,7 +140,7 @@ function createNamespaceIfNeeded(){
|
|
|
140
140
|
function installPrometheus() {
|
|
141
141
|
# Add the community helm repositories
|
|
142
142
|
addHelmRepo prometheus-community https://prometheus-community.github.io/helm-charts
|
|
143
|
-
[ -z "$PROMETHEUS_HELM_CHART" ] && PROMETHEUS_HELM_CHART="
|
|
143
|
+
[ -z "$PROMETHEUS_HELM_CHART" ] && PROMETHEUS_HELM_CHART="15"
|
|
144
144
|
helm upgrade --install prometheus prometheus-community/prometheus \
|
|
145
145
|
--namespace monitoring \
|
|
146
146
|
--values prometheus/values.yaml \
|
|
@@ -472,7 +472,7 @@ metadata:
|
|
|
472
472
|
name: cron-zombie-killer
|
|
473
473
|
spec:
|
|
474
474
|
schedule: "*/4 * * * *"
|
|
475
|
-
successfulJobsHistoryLimit:
|
|
475
|
+
successfulJobsHistoryLimit: 0
|
|
476
476
|
jobTemplate:
|
|
477
477
|
spec:
|
|
478
478
|
template:
|