@catladder/cli 1.14.0 → 1.15.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 +12 -4
- package/dist/apps/cli/commands/project/commandConfigSecrets.js.map +1 -1
- package/dist/apps/cli/commands/project/commandSetup.js +7 -2
- package/dist/apps/cli/commands/project/commandSetup.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/apps/cli/commands/project/commandConfigSecrets.ts +5 -0
- package/src/apps/cli/commands/project/commandSetup.ts +11 -2
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"catladder": "./bin/catladder"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@catladder/pipeline": "1.
|
|
19
|
+
"@catladder/pipeline": "1.15.0",
|
|
20
20
|
"@kubernetes/client-node": "^0.16.2",
|
|
21
21
|
"child-process-promise": "^2.2.1",
|
|
22
22
|
"command-exists-promise": "^2.0.2",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"eslint": "^8.7.0",
|
|
56
56
|
"typescript": "^4.5.4"
|
|
57
57
|
},
|
|
58
|
-
"version": "1.
|
|
58
|
+
"version": "1.15.0"
|
|
59
59
|
}
|
|
@@ -138,6 +138,8 @@ const doItFor = async (
|
|
|
138
138
|
}
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
|
+
instance.log("upserting all variables, please wait...");
|
|
142
|
+
instance.log("");
|
|
141
143
|
for (const [componentName, envs] of Object.entries(envAndComponents)) {
|
|
142
144
|
for (const env of envs) {
|
|
143
145
|
await upsertAllVariables(
|
|
@@ -168,8 +170,11 @@ const doItFor = async (
|
|
|
168
170
|
);
|
|
169
171
|
}
|
|
170
172
|
}
|
|
173
|
+
instance.log("✅ " + env + ":" + componentName);
|
|
171
174
|
}
|
|
172
175
|
}
|
|
176
|
+
instance.log("done! 😻");
|
|
177
|
+
instance.log("");
|
|
173
178
|
};
|
|
174
179
|
|
|
175
180
|
export const projectConfigSecrets = async (
|
|
@@ -26,7 +26,9 @@ export default async (vorpal: Vorpal) =>
|
|
|
26
26
|
|
|
27
27
|
for (const context of allContext) {
|
|
28
28
|
this.log("");
|
|
29
|
-
this.log(
|
|
29
|
+
this.log(
|
|
30
|
+
"=================================================================================="
|
|
31
|
+
);
|
|
30
32
|
|
|
31
33
|
this.log(
|
|
32
34
|
"setting up " +
|
|
@@ -130,8 +132,15 @@ EOF
|
|
|
130
132
|
);
|
|
131
133
|
this.log("done!");
|
|
132
134
|
}
|
|
135
|
+
this.log("");
|
|
136
|
+
this.log(
|
|
137
|
+
"✅ " +
|
|
138
|
+
context.environment.shortName +
|
|
139
|
+
":" +
|
|
140
|
+
context.componentName +
|
|
141
|
+
" done!"
|
|
142
|
+
);
|
|
133
143
|
|
|
134
|
-
this.log("=========================================");
|
|
135
144
|
this.log("");
|
|
136
145
|
}
|
|
137
146
|
|