underpost 2.8.817 → 2.8.821
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/README.md +2 -2
- package/bin/deploy.js +2 -1252
- package/cli.md +24 -16
- package/docker-compose.yml +1 -1
- package/manifests/deployment/dd-template-development/deployment.yaml +2 -2
- package/manifests/maas/device-scan.sh +43 -0
- package/manifests/maas/maas-setup.sh +81 -26
- package/manifests/maas/nat-iptables.sh +26 -0
- package/package.json +1 -1
- package/src/cli/baremetal.js +1233 -46
- package/src/cli/cloud-init.js +537 -0
- package/src/cli/index.js +15 -10
- package/src/index.js +26 -16
- package/src/server/runtime.js +0 -5
- package/src/server/ssl.js +1 -12
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ Run dev client server
|
|
|
68
68
|
npm run dev
|
|
69
69
|
```
|
|
70
70
|
<!-- -->
|
|
71
|
-
## underpost ci/cd cli v2.8.
|
|
71
|
+
## underpost ci/cd cli v2.8.821
|
|
72
72
|
|
|
73
73
|
### Usage: `underpost [options] [command]`
|
|
74
74
|
```
|
|
@@ -99,7 +99,7 @@ Commands:
|
|
|
99
99
|
test [options] [deploy-list] Manages and runs tests, defaulting to the current Underpost default test suite.
|
|
100
100
|
monitor [options] <deploy-id> [env] Manages health server monitoring for specified deployments.
|
|
101
101
|
lxd [options] Manages LXD containers and virtual machines.
|
|
102
|
-
baremetal [options]
|
|
102
|
+
baremetal [options] [workflow-id] [hostname] [ip-address] Manages baremetal server operations, including installation, database setup, commissioning, and user management.
|
|
103
103
|
help [command] display help for command
|
|
104
104
|
|
|
105
105
|
```
|