@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.50.10",
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": "^8.0.1",
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.0"
77
+ "zx": "^8.1.1"
78
78
  },
79
79
  "devDependencies": {
80
80
  "@leverege/eslint-config-leverege": "^4.2.0",
@@ -1,5 +1,5 @@
1
1
  image:
2
- tag: # v5.12.1
2
+ tag: # v5.12.3
3
3
 
4
4
  config:
5
5
  LOG_CONFIG: '{"type":"pino","level":"warn"}'
@@ -1,10 +1,8 @@
1
1
  image:
2
- tag: # v2.1.2
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
@@ -1,5 +1,5 @@
1
1
  image:
2
- tag: # v3.4.1
2
+ tag: # v3.5.1
3
3
 
4
4
  config:
5
5
  LOG_CONFIG: '{"type":"pino","level":"warn"}'
@@ -1,5 +1,5 @@
1
1
  image:
2
- tag: # v3.6.1
2
+ tag: # v4.0.0
3
3
 
4
4
  config:
5
5
  LOG_CONFIG: '{"type":"pino","level":"warn"}'
@@ -1,5 +1,5 @@
1
1
  image:
2
- tag: # v2.10.2
2
+ tag: # v2.11.1
3
3
 
4
4
  config:
5
5
  LOG_CONFIG: '{"type":"pino","level":"warn"}'
@@ -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.1.2"
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 \
@@ -2,7 +2,7 @@
2
2
  # v1.2+ run => npm run sequelizeRunMigrations
3
3
  #
4
4
  image:
5
- tag: # v1.2.1
5
+ tag: # v1.2.2
6
6
 
7
7
  config:
8
8
  LOG_CONFIG: '{"type":"pino","level":"warn"}'
@@ -1,5 +1,5 @@
1
1
  image:
2
- tag: # v2.2.2
2
+ tag: # v2.3.0
3
3
 
4
4
  config:
5
5
  LOG_CONFIG: '{"type":"pino","level":"warn"}'
@@ -1,7 +1,7 @@
1
1
  nameOverride: transponder-bq
2
2
 
3
3
  image:
4
- tag: # v5.2.0
4
+ tag: # v5.2.2
5
5
 
6
6
  config:
7
7
  TRANSPONDER_RUN_MODE: "bigQueryJson"
@@ -1,7 +1,7 @@
1
1
  nameOverride: transponder-dh
2
2
 
3
3
  image:
4
- tag: # v5.2.0
4
+ tag: # v5.2.2
5
5
 
6
6
  config:
7
7
  TRANSPONDER_RUN_MODE: "denseHistoryCombined"
@@ -1,7 +1,7 @@
1
1
  nameOverride: transponder-rt
2
2
 
3
3
  image:
4
- tag: # v5.2.0
4
+ tag: # v5.2.2
5
5
 
6
6
  config:
7
7
  TRANSPONDER_RUN_MODE: "rt"
@@ -7,7 +7,7 @@
7
7
  nameOverride: transponder-tsdb
8
8
 
9
9
  image:
10
- tag: # v5.2.0
10
+ tag: # v5.2.2
11
11
 
12
12
  config:
13
13
  TRANSPONDER_RUN_MODE: "timescale"
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 = [ 'values-default.yaml' ]
200
+ const always = [ 'default-configs.yaml' ]
192
201
  const values = [ ...always, ...yamls ]
193
202
  const loaded = []
194
203
  let allYamls = ''