@catladder/cli 1.130.0 → 1.131.0
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/dist/apps/cli/commands/project/commandConfigSecrets.js +3 -0
- package/dist/apps/cli/commands/project/commandConfigSecrets.js.map +1 -1
- package/dist/bundles/catenv/index.js +1 -1
- package/dist/bundles/cli/index.js +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/apps/cli/commands/project/commandConfigSecrets.ts +3 -0
package/package.json
CHANGED
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
}
|
|
53
53
|
],
|
|
54
54
|
"license": "MIT",
|
|
55
|
-
"version": "1.
|
|
55
|
+
"version": "1.131.0",
|
|
56
56
|
"scripts": {
|
|
57
57
|
"lint": "eslint \"src/**/*.ts\"",
|
|
58
58
|
"lint:fix": "eslint \"src/**/*.ts\" --fix",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"node": ">=12.0.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@catladder/pipeline": "1.
|
|
76
|
+
"@catladder/pipeline": "1.131.0",
|
|
77
77
|
"@kubernetes/client-node": "^0.16.2",
|
|
78
78
|
"@tsconfig/node14": "^1.0.1",
|
|
79
79
|
"@types/common-tags": "^1.8.0",
|
|
@@ -177,10 +177,12 @@ const doItFor = async (
|
|
|
177
177
|
}
|
|
178
178
|
}
|
|
179
179
|
}
|
|
180
|
+
instance.log("");
|
|
180
181
|
instance.log("upserting all variables, please wait...");
|
|
181
182
|
instance.log("");
|
|
182
183
|
for (const [componentName, envs] of Object.entries(envAndComponents)) {
|
|
183
184
|
for (const env of envs) {
|
|
185
|
+
instance.log("upserting " + env + ":" + componentName + "...\n");
|
|
184
186
|
await upsertAllVariables(
|
|
185
187
|
instance,
|
|
186
188
|
valuesToEdit[componentName][env],
|
|
@@ -189,6 +191,7 @@ const doItFor = async (
|
|
|
189
191
|
);
|
|
190
192
|
instance.log("");
|
|
191
193
|
instance.log("✅ " + env + ":" + componentName);
|
|
194
|
+
instance.log("--------------------------------\n");
|
|
192
195
|
}
|
|
193
196
|
}
|
|
194
197
|
instance.log("done! 😻");
|