@envsync-cloud/deploy 0.8.7 → 0.8.8
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/index.js +6 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
#!/usr/bin/env node
|
|
3
2
|
|
|
4
3
|
// src/index.ts
|
|
5
4
|
import { spawnSync } from "child_process";
|
|
@@ -282,10 +281,11 @@ function printHelp() {
|
|
|
282
281
|
console.log(`
|
|
283
282
|
${chalk.bold("EnvSync OSS Deploy")}
|
|
284
283
|
|
|
285
|
-
Commands:
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
284
|
+
Commands:
|
|
285
|
+
bootstrap [--force] Bootstrap an OSS self-host topology
|
|
286
|
+
deploy Deploy the OSS self-host topology
|
|
287
|
+
remove [--force] Remove local OSS deployment resources and files
|
|
288
|
+
health [--json] Inspect OSS self-host health
|
|
289
289
|
backup Create a self-host backup
|
|
290
290
|
validate [deploy.yaml] [--json] Validate an OSS topology config
|
|
291
291
|
plan [deploy.yaml] [--json] Render the OSS topology plan
|
|
@@ -323,6 +323,7 @@ async function main() {
|
|
|
323
323
|
switch (command) {
|
|
324
324
|
case "bootstrap":
|
|
325
325
|
case "deploy":
|
|
326
|
+
case "remove":
|
|
326
327
|
case "health":
|
|
327
328
|
case "backup":
|
|
328
329
|
case "restore":
|