@leverege/build-tools 2.50.10 → 2.50.11
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 +3 -3
- package/src/helm-charts/api-server/values-local.yaml +1 -1
- package/src/helm-charts/authz-server/values-local.yaml +1 -3
- package/src/helm-charts/emailer/values-local.yaml +1 -1
- 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/resource-server/values-local.yaml +1 -1
- package/src/helm-charts/rule-engine/values-local.yaml +1 -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 +10 -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.11",
|
|
4
4
|
"description": "A collection of build / support tools for Leverege developers",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"command-line-usage": "^7.0.1",
|
|
62
62
|
"deepmerge": "^4.3.1",
|
|
63
63
|
"enquirer": "^2.4.1",
|
|
64
|
-
"execa": "^
|
|
64
|
+
"execa": "^9.1.0",
|
|
65
65
|
"glob": "^10.3.16",
|
|
66
66
|
"handlebars": "^4.7.8",
|
|
67
67
|
"inquirer": "^9.2.22",
|
|
@@ -74,7 +74,7 @@
|
|
|
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.1"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
80
|
"@leverege/eslint-config-leverege": "^4.2.0",
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
image:
|
|
2
|
-
tag: # v2.1.
|
|
2
|
+
tag: # v2.1.3
|
|
3
3
|
|
|
4
4
|
config:
|
|
5
5
|
LOG_CONFIG: '{"type":"pino","level":"warn"}'
|
|
6
|
-
IN_MEM_CONTROLLER_ACTIVE: "false"
|
|
7
|
-
USE_MEMORY_CONTROLLER_CHECK_MODE : "false"
|
|
8
6
|
|
|
9
7
|
# CNPG override
|
|
10
8
|
# SQL_HOST: "cnpg-db-psql-stack-rw.cnpg-operands" # vs postgres-postgresql
|
|
@@ -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 \
|
package/src/overwhelm.mjs
CHANGED
|
@@ -61,6 +61,15 @@ 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
|
|
68
|
+
all defaults should be set in default-configs.yaml.ovh
|
|
69
|
+
` ) )
|
|
70
|
+
process.exit( 1 )
|
|
71
|
+
}
|
|
72
|
+
|
|
64
73
|
// Load the default values and then overlay with the project specific yaml
|
|
65
74
|
// values. This supports the notion of this type of approach in the
|
|
66
75
|
// overwhelm yaml settings:
|
|
@@ -188,7 +197,7 @@ const doReplacements = ( yamls, replacements ) => {
|
|
|
188
197
|
|
|
189
198
|
// Collect all of the yaml from the yams...
|
|
190
199
|
const buildYaml = ( yamls, replacements ) => {
|
|
191
|
-
const always = [ '
|
|
200
|
+
const always = [ 'default-configs.yaml' ]
|
|
192
201
|
const values = [ ...always, ...yamls ]
|
|
193
202
|
const loaded = []
|
|
194
203
|
let allYamls = ''
|