@leverege/build-tools 2.50.10 → 2.50.12
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/package.json +6 -6
- package/src/helm-charts/api-server/values-local.yaml +7 -1
- package/src/helm-charts/authz-server/values-local.yaml +6 -3
- package/src/helm-charts/emailer/values-local.yaml +1 -1
- package/src/helm-charts/grafana/grafana-local.yaml.ovh +1 -2
- package/src/helm-charts/message-processor/values-local.yaml +1 -1
- package/src/helm-charts/messenger/values-local.yaml +1 -1
- package/src/helm-charts/redis/helmup.plugin +1 -1
- package/src/helm-charts/redis/redis-local.yaml +10 -0
- package/src/helm-charts/resource-server/values-local.yaml +4 -2
- package/src/helm-charts/rule-engine/values-local.yaml +1 -1
- package/src/helm-charts/traefik/helmup.plugin +5 -1
- package/src/helm-charts/transponder-bq/values-local.yaml +1 -1
- package/src/helm-charts/transponder-dh/values-local.yaml +1 -1
- package/src/helm-charts/transponder-rt/values-local.yaml +1 -1
- package/src/helm-charts/transponder-tsdb/values-local.yaml +1 -1
- package/src/overwhelm.mjs +14 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leverege/build-tools",
|
|
3
|
-
"version": "2.50.
|
|
3
|
+
"version": "2.50.12",
|
|
4
4
|
"description": "A collection of build / support tools for Leverege developers",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -61,10 +61,10 @@
|
|
|
61
61
|
"command-line-usage": "^7.0.1",
|
|
62
62
|
"deepmerge": "^4.3.1",
|
|
63
63
|
"enquirer": "^2.4.1",
|
|
64
|
-
"execa": "^
|
|
65
|
-
"glob": "^10.
|
|
64
|
+
"execa": "^9.1.0",
|
|
65
|
+
"glob": "^10.4.1",
|
|
66
66
|
"handlebars": "^4.7.8",
|
|
67
|
-
"inquirer": "^9.2.
|
|
67
|
+
"inquirer": "^9.2.23",
|
|
68
68
|
"js-yaml": "^4.1.0",
|
|
69
69
|
"ms": "^2.1.3",
|
|
70
70
|
"npm-registry-fetch": "^17.0.1",
|
|
@@ -74,10 +74,10 @@
|
|
|
74
74
|
"readline-sync": "^1.4.10",
|
|
75
75
|
"semver": "^7.6.2",
|
|
76
76
|
"simple-git": "^3.24.0",
|
|
77
|
-
"zx": "^8.1.
|
|
77
|
+
"zx": "^8.1.2"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
80
|
"@leverege/eslint-config-leverege": "^4.2.0",
|
|
81
|
-
"npm": "^10.8.
|
|
81
|
+
"npm": "^10.8.1"
|
|
82
82
|
}
|
|
83
83
|
}
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
+
# migrations
|
|
2
|
+
# v2.1.0+
|
|
3
|
+
# - k8x authz-server
|
|
4
|
+
# - npm run sequelizeRunMigrations
|
|
5
|
+
#
|
|
1
6
|
image:
|
|
2
|
-
tag: # v2.1.
|
|
7
|
+
tag: # v2.1.3
|
|
3
8
|
|
|
4
9
|
config:
|
|
5
10
|
LOG_CONFIG: '{"type":"pino","level":"warn"}'
|
|
6
|
-
IN_MEM_CONTROLLER_ACTIVE: "false"
|
|
7
|
-
USE_MEMORY_CONTROLLER_CHECK_MODE : "false"
|
|
8
11
|
|
|
9
12
|
# CNPG override
|
|
10
13
|
# SQL_HOST: "cnpg-db-psql-stack-rw.cnpg-operands" # vs postgres-postgresql
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# ONLY EDIT grafana-local.yaml.ovh / grafana-local.yaml is git ignored
|
|
2
2
|
service:
|
|
3
|
-
type: "NodePort"
|
|
4
3
|
port: "9000"
|
|
5
4
|
|
|
6
5
|
datasources:
|
|
@@ -39,7 +38,7 @@ tolerations:
|
|
|
39
38
|
effect: "NoSchedule"
|
|
40
39
|
|
|
41
40
|
extraObjects:
|
|
42
|
-
- apiVersion: traefik.
|
|
41
|
+
- apiVersion: traefik.io/v1alpha1
|
|
43
42
|
kind: IngressRoute
|
|
44
43
|
metadata:
|
|
45
44
|
name: grafana
|
|
@@ -4,7 +4,7 @@ showInstalling "Redis"
|
|
|
4
4
|
|
|
5
5
|
OCI_CHART="oci://registry-1.docker.io/bitnamicharts/redis"
|
|
6
6
|
|
|
7
|
-
[ -z "$REDIS_CHART_VERSION" ] && REDIS_CHART_VERSION="19.
|
|
7
|
+
[ -z "$REDIS_CHART_VERSION" ] && REDIS_CHART_VERSION="19.5.0"
|
|
8
8
|
|
|
9
9
|
helm upgrade --install redis $OCI_CHART \
|
|
10
10
|
--values redis/redis-local.yaml \
|
|
@@ -25,6 +25,11 @@ master:
|
|
|
25
25
|
persistence:
|
|
26
26
|
size: 8Gi # 8Gi is default
|
|
27
27
|
|
|
28
|
+
resources:
|
|
29
|
+
requests:
|
|
30
|
+
cpu: 250m
|
|
31
|
+
memory: 500Mi
|
|
32
|
+
|
|
28
33
|
replica:
|
|
29
34
|
affinity:
|
|
30
35
|
nodeAffinity:
|
|
@@ -45,6 +50,11 @@ replica:
|
|
|
45
50
|
persistence:
|
|
46
51
|
size: 8Gi # 8Gi is default
|
|
47
52
|
|
|
53
|
+
resources:
|
|
54
|
+
requests:
|
|
55
|
+
cpu: 250m
|
|
56
|
+
memory: 500Mi
|
|
57
|
+
|
|
48
58
|
architecture: replication
|
|
49
59
|
|
|
50
60
|
sentinel:
|
|
@@ -5,7 +5,11 @@
|
|
|
5
5
|
# ***REMEMBER*** the instructions provided on the internet typically assume
|
|
6
6
|
# the default namespace not traefik
|
|
7
7
|
#
|
|
8
|
-
# ***DO NOT FORGET*** the -n traefik for kubectl commands
|
|
8
|
+
# ***DO NOT FORGET*** the -n traefik for kubectl commands - so in order to
|
|
9
|
+
# move beyond v20 of the chart run the kubectl command below before upgrading
|
|
10
|
+
#
|
|
11
|
+
# kubectl apply --namespace traefik --server-side \
|
|
12
|
+
# --force-conflicts -k https://github.com/traefik/traefik-helm-chart/traefik/crds/\?ref\=v27
|
|
9
13
|
#
|
|
10
14
|
showInstalling "Traefik Load Balancer / Router"
|
|
11
15
|
|
package/src/overwhelm.mjs
CHANGED
|
@@ -61,6 +61,19 @@ if ( !fs.existsSync( 'overwhelm.yaml' ) ) {
|
|
|
61
61
|
process.exit( 1 )
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
+
if ( fs.existsSync( 'values-default.yaml' ) ) {
|
|
65
|
+
log( chalk.red.bold( `
|
|
66
|
+
|
|
67
|
+
***ERROR overwhelm => values-default.yaml is no longer used/supported and will
|
|
68
|
+
be ignored - all defaults should be set in default-configs.yaml.ovh
|
|
69
|
+
` ) )
|
|
70
|
+
|
|
71
|
+
const ans = ask.question( `Enter "${chalk.bold.red( 'skip' )}" if you wish to ignore and continue => ` )
|
|
72
|
+
if ( ans !== 'skip' ) {
|
|
73
|
+
process.exit( 1 )
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
64
77
|
// Load the default values and then overlay with the project specific yaml
|
|
65
78
|
// values. This supports the notion of this type of approach in the
|
|
66
79
|
// overwhelm yaml settings:
|
|
@@ -188,7 +201,7 @@ const doReplacements = ( yamls, replacements ) => {
|
|
|
188
201
|
|
|
189
202
|
// Collect all of the yaml from the yams...
|
|
190
203
|
const buildYaml = ( yamls, replacements ) => {
|
|
191
|
-
const always = [ '
|
|
204
|
+
const always = [ 'default-configs.yaml' ]
|
|
192
205
|
const values = [ ...always, ...yamls ]
|
|
193
206
|
const loaded = []
|
|
194
207
|
let allYamls = ''
|