@leverege/build-tools 2.123.0 → 2.124.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 +4 -4
- package/src/Utils.mjs +1 -1
- package/src/dashboard/json/system/cloudnative-pg-v5-lev.json +9986 -0
- package/src/dashboard/json/system/stackdriver.json +406 -51
- package/src/helm-charts/prom-operator/README-GPU.md +42 -0
- package/src/helm-charts/prom-operator/helmup.plugin +2 -2
- package/src/helm-charts/prom-operator/stackdriver-exporter.yaml.ovh +28 -24
- package/src/helmdn.sh +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leverege/build-tools",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.124.1",
|
|
4
4
|
"description": "A collection of build / support tools for Leverege developers",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"execa": "^10.0.1",
|
|
103
103
|
"find-yarn-workspace-root": "^2.0.0",
|
|
104
104
|
"glob": "^13.0.6",
|
|
105
|
-
"googleapis": "^
|
|
105
|
+
"googleapis": "^181.0.0",
|
|
106
106
|
"handlebars": "^4.7.9",
|
|
107
107
|
"ignore": "^7.0.9",
|
|
108
108
|
"inquirer": "^14.2.2",
|
|
@@ -121,14 +121,14 @@
|
|
|
121
121
|
"superstruct": "^2.0.2",
|
|
122
122
|
"tmp": "^0.2.7",
|
|
123
123
|
"toml": "^5.0.0",
|
|
124
|
-
"yaml": "^2.9.
|
|
124
|
+
"yaml": "^2.9.1",
|
|
125
125
|
"zx": "^8.8.5"
|
|
126
126
|
},
|
|
127
127
|
"devDependencies": {
|
|
128
128
|
"@leverege/eslint-config-leverege": "^9",
|
|
129
129
|
"chai": "^6.2.2",
|
|
130
130
|
"eslint": "^9",
|
|
131
|
-
"mocha": "^12.0.
|
|
131
|
+
"mocha": "^12.0.1",
|
|
132
132
|
"npm": "^12.0.2"
|
|
133
133
|
},
|
|
134
134
|
"allowScripts": {
|
package/src/Utils.mjs
CHANGED
|
@@ -740,7 +740,7 @@ export const analyzeRepository = async ( giveGuidance ) => {
|
|
|
740
740
|
}
|
|
741
741
|
|
|
742
742
|
const containerName = closestPackageJson?.name.replace( /^@[^/]+\//, '' ) || rootPyProjectToml?.project.name
|
|
743
|
-
const imagePlatform = closestPackageJson?.leverege.imagePlatform || rootPyProjectToml?.leverege['image-platform'] || [ 'linux/amd64' ]
|
|
743
|
+
const imagePlatform = closestPackageJson?.leverege.imagePlatform || rootPyProjectToml?.leverege['image-platform'] || [ 'linux/amd64', 'linux/arm64' ]
|
|
744
744
|
const artifactRegistry = closestPackageJson?.leverege.registry || rootPyProjectToml?.leverege.registry
|
|
745
745
|
const artifactProject = closestPackageJson?.artifactRegistry.project || rootPyProjectToml?.artifactRegistry.project || 'unknown'
|
|
746
746
|
const packageVersion = `v${closestPackageJson?.version || rootPyProjectToml?.project.version}`
|