@leverege/build-tools 2.86.0-beta.3 → 2.86.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.86.0-beta.3",
3
+ "version": "2.86.1",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -68,19 +68,19 @@
68
68
  "chalk": "^5.6.2",
69
69
  "command-line-args": "^6.0.1",
70
70
  "command-line-usage": "^7.0.3",
71
- "commander": "^14.0.0",
71
+ "commander": "^14.0.1",
72
72
  "deepmerge": "^4.3.1",
73
73
  "enquirer": "^2.4.1",
74
74
  "execa": "^9.6.0",
75
75
  "glob": "^11.0.3",
76
76
  "handlebars": "^4.7.8",
77
77
  "ignore": "^7.0.5",
78
- "inquirer": "^12.9.4",
78
+ "inquirer": "^12.9.6",
79
79
  "js-yaml": "^4.1.0",
80
80
  "jsdoc": "^4.0.4",
81
81
  "ms": "^2.1.3",
82
82
  "npm-registry-fetch": "^19.0.0",
83
- "ora": "^8.2.0",
83
+ "ora": "^9.0.0",
84
84
  "p-limit": "^7.1.1",
85
85
  "package-up": "^5.0.0",
86
86
  "readline-sync": "^1.4.10",
@@ -89,10 +89,10 @@
89
89
  "simple-git": "^3.28.0",
90
90
  "sloc": "^0.3.2",
91
91
  "toml": "^3.0.0",
92
- "zx": "^8.8.1"
92
+ "zx": "^8.8.4"
93
93
  },
94
94
  "devDependencies": {
95
- "@leverege/eslint-config-leverege": "^5.0.1",
96
- "npm": "^11.6.0"
95
+ "@leverege/eslint-config-leverege": "^5.1.0",
96
+ "npm": "^11.6.1"
97
97
  }
98
98
  }
@@ -13,9 +13,12 @@ import {
13
13
  debug,
14
14
  log,
15
15
  shellCmd,
16
- } from '../Utils.mjs'
17
-
16
+ } from '../../Utils.mjs'
18
17
  const auditProjects = [
18
+ 'leverege-cnpg-20240729',
19
+ ]
20
+
21
+ const ALLauditProjects = [
19
22
  'dev-controltek',
20
23
  'dev-cox-health',
21
24
  'dev-pitcrew',
@@ -91,6 +94,7 @@ const filterBitnamiImages = ( project, imagesJSON ) => {
91
94
  let img = c.image
92
95
 
93
96
  // Only keep bitnami images
97
+ log( { img }, '<==IMAGE' )
94
98
  if ( !/bitnami/.test( img ) ) continue
95
99
 
96
100
  // Registry decluttering
@@ -44,6 +44,7 @@ prometheus:
44
44
  requests:
45
45
  cpu: 500m
46
46
  memory: 2Gi
47
+ retention: 30d
47
48
  storageSpec:
48
49
  volumeClaimTemplate:
49
50
  spec:
@@ -35,12 +35,15 @@ master:
35
35
  persistence:
36
36
  size: 8Gi # 8Gi is default
37
37
 
38
- resources:
39
- requests:
40
- cpu: 250m
41
- memory: 500Mi
38
+ # https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15
39
+ resourcesPreset: "micro"
40
+ # resources:
41
+ # requests:
42
+ # cpu: 250m
43
+ # memory: 500Mi
42
44
 
43
45
  replica:
46
+ replicaCount: 1
44
47
  affinity:
45
48
  nodeAffinity:
46
49
  requiredDuringSchedulingIgnoredDuringExecution:
@@ -60,11 +63,12 @@ replica:
60
63
  persistence:
61
64
  size: 8Gi # 8Gi is default
62
65
 
63
- resources:
64
- requests:
65
- cpu: 250m
66
- memory: 500Mi
67
-
66
+ # https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15
67
+ resourcesPreset: "micro"
68
+ # resources:
69
+ # requests:
70
+ # cpu: 250m
71
+ # memory: 500Mi
68
72
  architecture: replication
69
73
 
70
74
  sentinel:
@@ -17,11 +17,12 @@ auth:
17
17
  primary:
18
18
  replicaCount: 1
19
19
 
20
+ # https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15
20
21
  resourcesPreset: "small"
21
- resources:
22
- requests:
23
- cpu: 250m
24
- memory: 500Mi
22
+ # resources:
23
+ # requests:
24
+ # cpu: 250m
25
+ # memory: 500Mi
25
26
 
26
27
  updateStrategy:
27
28
  ## StrategyType
@@ -52,11 +53,12 @@ primary:
52
53
  replica:
53
54
  replicaCount: 1
54
55
 
55
- resourcesPreset: "nano"
56
- resources:
57
- requests:
58
- cpu: 250m
59
- memory: 500Mi
56
+ # https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15
57
+ resourcesPreset: "micro"
58
+ # resources:
59
+ # requests:
60
+ # cpu: 250m
61
+ # memory: 500Mi
60
62
 
61
63
  affinity:
62
64
  nodeAffinity:
@@ -1,3 +0,0 @@
1
- {
2
- "editor.formatOnSave": false
3
- }