cyberia 3.0.3 → 3.1.3
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/{.env.production → .env.example} +20 -2
- package/.github/workflows/engine-cyberia.cd.yml +41 -10
- package/.github/workflows/engine-cyberia.ci.yml +53 -14
- package/.github/workflows/ghpkg.ci.yml +1 -1
- package/.github/workflows/gitlab.ci.yml +1 -1
- package/.github/workflows/hardhat.ci.yml +82 -0
- package/.github/workflows/npmpkg.ci.yml +37 -8
- package/.github/workflows/publish.ci.yml +5 -5
- package/.github/workflows/publish.cyberia.ci.yml +5 -5
- package/.github/workflows/pwa-microservices-template-page.cd.yml +3 -3
- package/.github/workflows/pwa-microservices-template-test.ci.yml +1 -1
- package/.github/workflows/release.cd.yml +3 -2
- package/.vscode/extensions.json +9 -8
- package/.vscode/settings.json +3 -2
- package/CHANGELOG.md +211 -1
- package/CLI-HELP.md +78 -53
- package/WHITE-PAPER.md +1540 -0
- package/bin/build.js +16 -10
- package/bin/cyberia.js +861 -4
- package/bin/deploy.js +103 -270
- package/bin/file.js +2 -1
- package/bin/index.js +861 -4
- package/bin/vs.js +3 -3
- package/conf.js +105 -97
- package/deployment.yaml +148 -4
- package/hardhat/.env.example +31 -0
- package/hardhat/README.md +531 -0
- package/hardhat/WHITE-PAPER.md +1540 -0
- package/hardhat/contracts/ObjectLayerToken.sol +391 -0
- package/hardhat/deployments/.gitkeep +0 -0
- package/hardhat/deployments/hardhat-ObjectLayerToken.json +11 -0
- package/hardhat/hardhat.config.js +136 -0
- package/hardhat/ignition/modules/ObjectLayerToken.js +21 -0
- package/hardhat/networks/besu-object-layer.network.json +138 -0
- package/hardhat/package-lock.json +7628 -0
- package/hardhat/package.json +45 -0
- package/hardhat/scripts/deployObjectLayerToken.js +98 -0
- package/hardhat/test/ObjectLayerToken.js +590 -0
- package/jsdoc.dd-cyberia.json +59 -0
- package/jsdoc.json +20 -13
- package/manifests/cronjobs/dd-cron/dd-cron-backup.yaml +1 -1
- package/manifests/cronjobs/dd-cron/dd-cron-dns.yaml +1 -1
- package/manifests/deployment/dd-cyberia-development/deployment.yaml +490 -0
- package/manifests/deployment/dd-cyberia-development/proxy.yaml +261 -0
- package/manifests/deployment/dd-cyberia-development/pv-pvc.yaml +132 -0
- package/manifests/deployment/dd-default-development/deployment.yaml +2 -2
- package/manifests/deployment/dd-test-development/deployment.yaml +52 -52
- package/manifests/deployment/dd-test-development/proxy.yaml +4 -4
- package/manifests/pv-pvc-dd.yaml +1 -1
- package/package.json +50 -44
- package/proxy.yaml +79 -7
- package/pv-pvc.yaml +132 -0
- package/scripts/k3s-node-setup.sh +1 -1
- package/scripts/ports-ls.sh +2 -0
- package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.controller.js +3 -1
- package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.model.js +1 -2
- package/src/api/document/document.service.js +1 -1
- package/src/api/file/file.controller.js +3 -1
- package/src/api/file/file.service.js +28 -5
- package/src/api/ipfs/ipfs.service.js +2 -2
- package/src/api/object-layer/object-layer.controller.js +6 -2
- package/src/api/object-layer/object-layer.model.js +12 -8
- package/src/api/object-layer/object-layer.router.js +668 -42
- package/src/api/object-layer/object-layer.service.js +6 -7
- package/src/api/object-layer-render-frames/object-layer-render-frames.model.js +1 -2
- package/src/api/user/user.router.js +10 -5
- package/src/api/user/user.service.js +7 -7
- package/src/cli/baremetal.js +6 -10
- package/src/cli/cloud-init.js +0 -3
- package/src/cli/db.js +54 -71
- package/src/cli/deploy.js +64 -12
- package/src/cli/env.js +5 -5
- package/src/cli/fs.js +0 -2
- package/src/cli/image.js +0 -3
- package/src/cli/index.js +35 -13
- package/src/cli/monitor.js +5 -6
- package/src/cli/repository.js +329 -46
- package/src/cli/run.js +180 -120
- package/src/cli/secrets.js +1 -3
- package/src/cli/ssh.js +1 -1
- package/src/client/Itemledger.index.js +1 -959
- package/src/client/components/core/AgGrid.js +20 -5
- package/src/client/components/core/Alert.js +2 -2
- package/src/client/components/core/Content.js +22 -3
- package/src/client/components/core/Docs.js +30 -6
- package/src/client/components/core/FileExplorer.js +71 -4
- package/src/client/components/core/Input.js +1 -1
- package/src/client/components/core/Modal.js +20 -6
- package/src/client/components/core/RichText.js +1 -2
- package/src/client/components/cyberia-portal/CommonCyberiaPortal.js +1 -0
- package/src/client/components/cyberia-portal/CssCyberiaPortal.js +44 -2
- package/src/client/components/cyberia-portal/LogInCyberiaPortal.js +0 -1
- package/src/client/components/cyberia-portal/MenuCyberiaPortal.js +64 -2
- package/src/client/components/cyberia-portal/RoutesCyberiaPortal.js +1 -0
- package/src/client/components/underpost/CssUnderpost.js +59 -0
- package/src/client/components/underpost/LogInUnderpost.js +3 -0
- package/src/client/components/underpost/LogOutUnderpost.js +2 -0
- package/src/client/components/underpost/MenuUnderpost.js +99 -13
- package/src/client/components/underpost/RoutesUnderpost.js +2 -0
- package/src/client/public/cryptokoyn/assets/logo/base-icon.png +0 -0
- package/src/client/public/cryptokoyn/browserconfig.xml +12 -0
- package/src/client/public/cryptokoyn/microdata.json +85 -0
- package/src/client/public/cryptokoyn/site.webmanifest +57 -0
- package/src/client/public/cryptokoyn/sitemap +3 -3
- package/src/client/public/default/sitemap +3 -3
- package/src/client/public/itemledger/browserconfig.xml +2 -2
- package/src/client/public/itemledger/manifest.webmanifest +4 -4
- package/src/client/public/itemledger/microdata.json +71 -0
- package/src/client/public/itemledger/sitemap +3 -3
- package/src/client/public/itemledger/yandex-browser-manifest.json +2 -2
- package/src/client/public/test/sitemap +3 -3
- package/src/client/ssr/body/404.js +15 -11
- package/src/client/ssr/body/500.js +15 -11
- package/src/client/ssr/body/SwaggerDarkMode.js +285 -0
- package/src/client/ssr/head/PwaItemledger.js +60 -0
- package/src/client/ssr/offline/NoNetworkConnection.js +11 -10
- package/src/client/ssr/pages/Test.js +11 -10
- package/src/client.build.js +0 -3
- package/src/client.dev.js +0 -3
- package/src/db/DataBaseProvider.js +17 -2
- package/src/db/mariadb/MariaDB.js +14 -9
- package/src/db/mongo/MongooseDB.js +17 -1
- package/src/index.js +1 -1
- package/src/proxy.js +0 -3
- package/src/runtime/express/Express.js +15 -9
- package/src/runtime/lampp/Lampp.js +6 -13
- package/src/server/auth.js +12 -14
- package/src/server/backup.js +2 -3
- package/src/server/besu-genesis-generator.js +1630 -0
- package/src/server/client-build-docs.js +126 -17
- package/src/server/client-build-live.js +9 -18
- package/src/server/client-build.js +203 -75
- package/src/server/client-dev-server.js +14 -13
- package/src/server/conf.js +376 -164
- package/src/server/cron.js +2 -1
- package/src/server/dns.js +28 -12
- package/src/server/downloader.js +0 -2
- package/src/server/logger.js +27 -9
- package/src/server/object-layer.js +79 -6
- package/src/server/peer.js +0 -2
- package/src/server/process.js +1 -50
- package/src/server/proxy.js +4 -8
- package/src/server/runtime.js +5 -8
- package/src/server/ssr.js +0 -3
- package/src/server/start.js +19 -12
- package/src/server/tls.js +0 -2
- package/src/server.js +0 -4
- package/.env.development +0 -43
- package/.env.test +0 -43
- package/hardhat/contracts/CryptoKoyn.sol +0 -59
- package/hardhat/contracts/ItemLedger.sol +0 -73
- package/hardhat/contracts/Lock.sol +0 -34
- package/hardhat/hardhat.config.cjs +0 -45
- package/hardhat/ignition/modules/Lock.js +0 -18
- package/hardhat/networks/cryptokoyn-itemledger.network.json +0 -29
- package/hardhat/scripts/deployCryptokoyn.cjs +0 -25
- package/hardhat/scripts/deployItemledger.cjs +0 -25
- package/hardhat/test/Lock.js +0 -126
- package/hardhat/white-paper.md +0 -581
- package/white-paper.md +0 -581
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,216 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 2026-03-
|
|
3
|
+
## 2026-03-17
|
|
4
|
+
|
|
5
|
+
### cli-run
|
|
6
|
+
|
|
7
|
+
- feat: Add 'pid-info' and 'background' methods to enhance process management in CLI ([30afedf4d](https://github.com/underpostnet/engine/commit/30afedf4d17aca20d91f5ad065d979bd42951741))
|
|
8
|
+
|
|
9
|
+
### server-start
|
|
10
|
+
|
|
11
|
+
- feat: Add option to skip pulling base code in build process and update configuration for error handling ([3f8d7b09b](https://github.com/underpostnet/engine/commit/3f8d7b09b70270de9b0213b74d9683aad125d732))
|
|
12
|
+
|
|
13
|
+
### github-actions
|
|
14
|
+
|
|
15
|
+
- feat: Update CI workflows to improve commit message handling and deployment conditions ([2a4884a1e](https://github.com/underpostnet/engine/commit/2a4884a1e3cbf04eeb4999b1ff38e2c8b4cf41cc))
|
|
16
|
+
- feat: Add deploy_type option to CI workflows and enhance changelog message propagation ([d222753ec](https://github.com/underpostnet/engine/commit/d222753ec66cbb1ce3cccc54d7eebea3f144e8b8))
|
|
17
|
+
|
|
18
|
+
### docs
|
|
19
|
+
|
|
20
|
+
- feat: Update changelog, CLI help, and documentation with new commands and options ([124c8b2af](https://github.com/underpostnet/engine/commit/124c8b2aff6aae21b57abeca66281cdfba3aaaf8))
|
|
21
|
+
- feat: Update CLI documentation and enhance README with versioning and command index ([e6eb668d4](https://github.com/underpostnet/engine/commit/e6eb668d4007dc828f1b946c36ea369aaea6e2d4))
|
|
22
|
+
- feat: Enhance documentation configuration and remove obsolete options in build processes ([3437e1488](https://github.com/underpostnet/engine/commit/3437e14884d54202c8a0bbdcef47edfa03528fb7))
|
|
23
|
+
|
|
24
|
+
### client-underpost
|
|
25
|
+
|
|
26
|
+
- feat: Refactor styles in RichText and CssUnderpost components for improved typography ([ee1d12335](https://github.com/underpostnet/engine/commit/ee1d123354afb0826ef5f942a07feeeb6eb40c7b))
|
|
27
|
+
|
|
28
|
+
### client-core
|
|
29
|
+
|
|
30
|
+
- feat: Update links to open in the top frame and enhance iframe sandboxing ([8ec50df8d](https://github.com/underpostnet/engine/commit/8ec50df8d2eaaf210254930351a783c1d4409d5d))
|
|
31
|
+
|
|
32
|
+
### cli-client
|
|
33
|
+
|
|
34
|
+
- feat: Add sync-conf command and enhance build options for client assets ([ad8b96242](https://github.com/underpostnet/engine/commit/ad8b96242431b9a23b3cf3b4345294938552784f))
|
|
35
|
+
|
|
36
|
+
### swagger
|
|
37
|
+
|
|
38
|
+
- fix: update security middleware to ensure correct CSP headers for Swagger UI ([ef7dd5243](https://github.com/underpostnet/engine/commit/ef7dd52434191f4f910a7192007ebca5af16932b))
|
|
39
|
+
|
|
40
|
+
### scripts
|
|
41
|
+
|
|
42
|
+
- Add missing package installation command in ports-ls.sh ([e13253366](https://github.com/underpostnet/engine/commit/e13253366f5dfd029f2a12e031b5f995efb269ac))
|
|
43
|
+
|
|
44
|
+
## New release v:3.1.2 (2026-03-15)
|
|
45
|
+
|
|
46
|
+
### cli-run
|
|
47
|
+
|
|
48
|
+
- Fix streamline deployment logic prevent override env files and redundant build workflows ([048fb8ff1](https://github.com/underpostnet/engine/commit/048fb8ff1cbb895c3c04cf8a84daa921fcbe6bf5))
|
|
49
|
+
|
|
50
|
+
### engine-cyberia
|
|
51
|
+
|
|
52
|
+
- fix: update error handling for underpost passthrough to include 'env' command ([402a96176](https://github.com/underpostnet/engine/commit/402a961768db9753c2cdd7b067c548edcbd2f0b7))
|
|
53
|
+
|
|
54
|
+
## New release v:3.1.1 (2026-03-14)
|
|
55
|
+
|
|
56
|
+
### cli-index
|
|
57
|
+
|
|
58
|
+
- fix: add quiet option to dotenv config for improved error handling ([975448eb4](https://github.com/underpostnet/engine/commit/975448eb4d710cc8248a783240ce818b5fb9b891))
|
|
59
|
+
|
|
60
|
+
### cli-secrets
|
|
61
|
+
|
|
62
|
+
- fix: add missing dotenv import in secrets module ([7f83e26c4](https://github.com/underpostnet/engine/commit/7f83e26c44dfe176b6cc524e7b117f322a62bf32))
|
|
63
|
+
|
|
64
|
+
### cli-repository
|
|
65
|
+
|
|
66
|
+
- fix: enhance environment variable checks for GITHUB_TOKEN retrieval ([d097c6c1f](https://github.com/underpostnet/engine/commit/d097c6c1f02edcab1e76dca226f129e334dbd453))
|
|
67
|
+
|
|
68
|
+
## New release v:3.1.0 (2026-03-14)
|
|
69
|
+
|
|
70
|
+
### docs
|
|
71
|
+
|
|
72
|
+
- Add documentation for Baremetal and LXD management, including command references and quick start guides ([3569b5150](https://github.com/underpostnet/engine/commit/3569b5150f375467bf5cdb03247897e2849e45ce))
|
|
73
|
+
- feat: update documentation with new command options for database and deployment management ([707ef0e4d](https://github.com/underpostnet/engine/commit/707ef0e4d522392b9d658402bbcd04f8c47dc7ec))
|
|
74
|
+
|
|
75
|
+
### github-actions
|
|
76
|
+
|
|
77
|
+
- feat: add optional commit message input for workflow_dispatch in CI configurations ([2314de8c6](https://github.com/underpostnet/engine/commit/2314de8c61bb309a1fe0aa42863243744aec54bc))
|
|
78
|
+
- Fix cloud explorer underpost session and underpost install in deployments workflows ([746547206](https://github.com/underpostnet/engine/commit/74654720635a04df3dda7785157332b401b3ebd3))
|
|
79
|
+
- Add npm install for update packages in deployments engine workflows ([5549a3f5d](https://github.com/underpostnet/engine/commit/5549a3f5d71f8476f0ee8b57e8c9e5c1bc316a10))
|
|
80
|
+
- Remove temporal --underpost-quickly-install in deployments workflows ([777b39a2e](https://github.com/underpostnet/engine/commit/777b39a2e07aaab0ac16ddaa01f5df2b4d50f175))
|
|
81
|
+
|
|
82
|
+
### cli-repository
|
|
83
|
+
|
|
84
|
+
- feat: enhance CI/CD workflows with workflow_dispatch support and input options ([b311866fa](https://github.com/underpostnet/engine/commit/b311866faab0872ca9e2f6f3041f1a97784cf362))
|
|
85
|
+
|
|
86
|
+
### package
|
|
87
|
+
|
|
88
|
+
- fix: add production image script to package.json ([fe0ca63df](https://github.com/underpostnet/engine/commit/fe0ca63df51df703cc2323ad2b697df1adb3d795))
|
|
89
|
+
- Add deploy js dependabot branch merge deploy script ([cdc7e90c3](https://github.com/underpostnet/engine/commit/cdc7e90c340e7fb8a35c906719a0e0e8fb728625))
|
|
90
|
+
- Fix packages vulnerabilities ([492a3963a](https://github.com/underpostnet/engine/commit/492a3963a54c3ed882fbe0078a6ab353cb2d636b))
|
|
91
|
+
|
|
92
|
+
### run-deploy
|
|
93
|
+
|
|
94
|
+
- feat dd security check for secrets before template deployment ([50b6b9ba6](https://github.com/underpostnet/engine/commit/50b6b9ba6d2f49eec1343c70ce7740f87f5cbbc1))
|
|
95
|
+
|
|
96
|
+
### bin-deploy
|
|
97
|
+
|
|
98
|
+
- feat(deploy): add 'conf' case to load configuration based on arguments ([28d3e8bf5](https://github.com/underpostnet/engine/commit/28d3e8bf590c35f5c77129400a77b5687bcb05db))
|
|
99
|
+
- Add temporal fallback underpost legacy version handling ([ad74d2ef6](https://github.com/underpostnet/engine/commit/ad74d2ef689a95edab80401514f192bb13226e94))
|
|
100
|
+
- separate cyberia-hardhat case deploy script ([3cd032785](https://github.com/underpostnet/engine/commit/3cd03278549a89dfffd04298bc7a53880099a51e))
|
|
101
|
+
|
|
102
|
+
### server-logger
|
|
103
|
+
|
|
104
|
+
- fix(logger): update json-colorizer import and color definitions ([2b89456df](https://github.com/underpostnet/engine/commit/2b89456df3d78e49bed257068f93639542f0e9b8))
|
|
105
|
+
- Fix colorize import logger ([d7c01ccc2](https://github.com/underpostnet/engine/commit/d7c01ccc29b4c6403b024f83a46bd29986260688))
|
|
106
|
+
|
|
107
|
+
### gitleaks
|
|
108
|
+
|
|
109
|
+
- fix: update gitleaks configuration title and add new ignore entries for sensitive tokens ([408cad0a4](https://github.com/underpostnet/engine/commit/408cad0a4de273cbec9f97f9b8b93c98246602fd))
|
|
110
|
+
|
|
111
|
+
### server-conf
|
|
112
|
+
|
|
113
|
+
- feat: add loadCronDeployEnv function to manage deployment-specific environment variables across modules ([19de5ea13](https://github.com/underpostnet/engine/commit/19de5ea13c121d6ad8b64982f14562ab16fb9d09))
|
|
114
|
+
- feat: enhance environment variable file generation with template support ([467f3a348](https://github.com/underpostnet/engine/commit/467f3a348d6bca994829f5fb51034e8b6c0e5c0e))
|
|
115
|
+
- refactor: update configuration loading logic and enhance environment variable handling ([bbda63807](https://github.com/underpostnet/engine/commit/bbda638076f2bb48b39ce1e52624064afecc8e30))
|
|
116
|
+
|
|
117
|
+
### cli-client
|
|
118
|
+
|
|
119
|
+
- feat: refactor deployment process to use new client command and streamline build operations ([c854da41a](https://github.com/underpostnet/engine/commit/c854da41a9d545c1d718e23ffb37e3188c849da7))
|
|
120
|
+
|
|
121
|
+
### env
|
|
122
|
+
|
|
123
|
+
- feat: integrate loadEnv function to manage deploy-specific environment variables in CLI and server modules ([47a1560be](https://github.com/underpostnet/engine/commit/47a1560bee093ed2fdc395d70c911fcaca106763))
|
|
124
|
+
|
|
125
|
+
### template
|
|
126
|
+
|
|
127
|
+
- fix: update deployment script to build template and adjust logging configuration ([30c3a830b](https://github.com/underpostnet/engine/commit/30c3a830b02097fd11538c7b5d46db35ad479c58))
|
|
128
|
+
|
|
129
|
+
### server-client
|
|
130
|
+
|
|
131
|
+
- fix: improve error logging for nodemon crashes in client development server ([a0ece9770](https://github.com/underpostnet/engine/commit/a0ece97700797565dd992f2320d41814fd1e9113))
|
|
132
|
+
|
|
133
|
+
### package-script
|
|
134
|
+
|
|
135
|
+
- feat: add clean script to package.json for environment cleanup ([1516217a8](https://github.com/underpostnet/engine/commit/1516217a8311b3e303a433ebeb70c2306369ee39))
|
|
136
|
+
|
|
137
|
+
### cli-repo
|
|
138
|
+
|
|
139
|
+
- feat: add sync-start option to synchronize start scripts in package.json for deploy IDs ([59ebb8c1c](https://github.com/underpostnet/engine/commit/59ebb8c1cb681bc3a12f17e2588198119cad2964))
|
|
140
|
+
- feat: add option to display current Git branch name ([8492f7a2b](https://github.com/underpostnet/engine/commit/8492f7a2b8bfe8db50b060d2659a8e059f8d4329))
|
|
141
|
+
|
|
142
|
+
### cli-run
|
|
143
|
+
|
|
144
|
+
- Fix runner ide vs code ([70b34ea3d](https://github.com/underpostnet/engine/commit/70b34ea3d3bbf2432882dbe6a9cef87b9af5cf5e))
|
|
145
|
+
|
|
146
|
+
### server-env
|
|
147
|
+
|
|
148
|
+
- refactor: centralize environment variable loading ([3c2709aec](https://github.com/underpostnet/engine/commit/3c2709aecf04111ccff716ac929180e93d0edbb9))
|
|
149
|
+
|
|
150
|
+
### bin-vs
|
|
151
|
+
|
|
152
|
+
- Improve vs code ide runner handling ([2b1a8b326](https://github.com/underpostnet/engine/commit/2b1a8b326129c5e44fac6691d006991be1eb6097))
|
|
153
|
+
|
|
154
|
+
### engine
|
|
155
|
+
|
|
156
|
+
- Refactor security deploy conf logic and handle ([7d6592c43](https://github.com/underpostnet/engine/commit/7d6592c438c6107c10108a0bf78b33b8849a8036))
|
|
157
|
+
- Silencing dotenv injection logs ([56b8e8e80](https://github.com/underpostnet/engine/commit/56b8e8e80f945c508c4cbc277a1f33c9f3977f6d))
|
|
158
|
+
|
|
159
|
+
### engine-cyberia
|
|
160
|
+
|
|
161
|
+
- Add development pv pvc dd-cyberia manifests ([ca4d3d342](https://github.com/underpostnet/engine/commit/ca4d3d3420e1d6a3801430e5c1a28e6377f39a0a))
|
|
162
|
+
- Fix object layer model Mongoose pre save next error ([506fb719c](https://github.com/underpostnet/engine/commit/506fb719cbd875e3ffdd1168cf2155bb0f083ba4))
|
|
163
|
+
- Add missing ethers packahge in CyberiaDependencies scope ([5f11cafe6](https://github.com/underpostnet/engine/commit/5f11cafe64abde831e497ed06be825a589e7ce23))
|
|
164
|
+
- Add Customize Docs release URL and MenuCyberiaPortal GitHub ([e879c2240](https://github.com/underpostnet/engine/commit/e879c22401af13d21056f0cd146f0292ae39fc31))
|
|
165
|
+
- Fix Hardhat CI npm audit failure ([3ea9ed486](https://github.com/underpostnet/engine/commit/3ea9ed486ebbc7e5e3879a61a26fcb2fa5071148))
|
|
166
|
+
- Update hardhat config evm version ([816e1d7d0](https://github.com/underpostnet/engine/commit/816e1d7d0594abd34f344c483fad1a62f0238cf0))
|
|
167
|
+
- Cyberia Portal Docs Modal Fixes ([9bd9eb1e4](https://github.com/underpostnet/engine/commit/9bd9eb1e493cb8136e47c73de3a8dbbb1393fe44))
|
|
168
|
+
- Add Cyberia portal docs build integration ([9d8abe001](https://github.com/underpostnet/engine/commit/9d8abe0017249002e13f8f7c1dde4a9b24e5348f))
|
|
169
|
+
- Kubeadm Underpost Cluster Besu Integration ([1df6cfbfb](https://github.com/underpostnet/engine/commit/1df6cfbfb32621243fb2be39de9aba8ebafbde6f))
|
|
170
|
+
- Fix Hardhat Web Integration Canonical CID ([bb2a81fab](https://github.com/underpostnet/engine/commit/bb2a81fab558f9f3c493e9cbae6f029ca9a1b404))
|
|
171
|
+
- Cryptokoyn and Itemledger metadata client and seo injects ([db8c9b337](https://github.com/underpostnet/engine/commit/db8c9b3372d29f84a27b5b40003f09d5956cefd2))
|
|
172
|
+
- Cyberia NPM Dependency Installer hardhat on main module override ([a43cc25ea](https://github.com/underpostnet/engine/commit/a43cc25ea59f6e36a1a52f53fcd1b6b1544168cc))
|
|
173
|
+
- Apply mermaid on diagrams in WHITE-PAPER.md ([0bb230e14](https://github.com/underpostnet/engine/commit/0bb230e14fe3639a9fe026e0c1f2da585856c04c))
|
|
174
|
+
- Hardhat Cyberia CKY Token Lifecycle ([514bdafae](https://github.com/underpostnet/engine/commit/514bdafaee5d345a7fa43d6b1aab2cd6917d5cee))
|
|
175
|
+
- Hardhat Ethers v6 Upgrade Audit ([114e42f7d](https://github.com/underpostnet/engine/commit/114e42f7dd7f549cda21b873461558fc8ce7c7ba))
|
|
176
|
+
- Hardhat ES6 refactor for Cyberia ([9b9f85693](https://github.com/underpostnet/engine/commit/9b9f85693cb7256e433b1184fd8dbf1739a3dbd9))
|
|
177
|
+
- Object Layer Token Ethereum Refactor ([82076eb9e](https://github.com/underpostnet/engine/commit/82076eb9e311ee003b7d91e38e60829f9e3b0f2c))
|
|
178
|
+
- Rename cyberkoyn reference to cryptokoyn ([ae5949337](https://github.com/underpostnet/engine/commit/ae5949337c5a27f4367cc93247023b1448491c9f))
|
|
179
|
+
- Refactor Object Layer White Paper and ERC1155 Besu Integration ([8cb6f59c2](https://github.com/underpostnet/engine/commit/8cb6f59c23a66265d5b663bec37ac0c402ffffad))
|
|
180
|
+
|
|
181
|
+
### cli-deploy
|
|
182
|
+
|
|
183
|
+
- Fix Kubernetes PVC Manifest Inconsistencies ([6839bccca](https://github.com/underpostnet/engine/commit/6839bccca30723e1cbd4664b31b0cede1ff63c90))
|
|
184
|
+
- Fix Kubernetes PVC Manifest Inconsistencies builder ([d6f311c60](https://github.com/underpostnet/engine/commit/d6f311c608217401ec145e70aab04206147a743e))
|
|
185
|
+
|
|
186
|
+
### client-core
|
|
187
|
+
|
|
188
|
+
- Fix AgGrid Theme Events Rendering ([4b37681f1](https://github.com/underpostnet/engine/commit/4b37681f19a102da5068c20998c0353bae604d54))
|
|
189
|
+
- Add logic to custom ui-icon in content component ([b380703c8](https://github.com/underpostnet/engine/commit/b380703c8a52abb3d37f390725a54ed6b88e5fcc))
|
|
190
|
+
- Fix sitemap generation logic ([7cfb23d01](https://github.com/underpostnet/engine/commit/7cfb23d01988d1f4ff288e8ce17d350c1d3af633))
|
|
191
|
+
- Fix sitemap builder defaul url sitemap ([c39f1e070](https://github.com/underpostnet/engine/commit/c39f1e07055f035da4f737f8ec6f2acfd621ca80))
|
|
192
|
+
|
|
193
|
+
### client-underpost
|
|
194
|
+
|
|
195
|
+
- Add File Explorer Cloud Menu Auth ([f3cc57e28](https://github.com/underpostnet/engine/commit/f3cc57e2818e36e56f34bc41f81846b64e48e2a8))
|
|
196
|
+
|
|
197
|
+
### api-core
|
|
198
|
+
|
|
199
|
+
- Fix deprecated Mongoose pre save next error ([bee1a5829](https://github.com/underpostnet/engine/commit/bee1a582926a0264be0cfb8ddf87f4ef01413a19))
|
|
200
|
+
|
|
201
|
+
### conf
|
|
202
|
+
|
|
203
|
+
- Add SwaggerDarkMode in dd-cyberia conf ([69d4c54f1](https://github.com/underpostnet/engine/commit/69d4c54f1e354e9f45b1b401796ca9702ac95698))
|
|
204
|
+
|
|
205
|
+
### bin-build
|
|
206
|
+
|
|
207
|
+
- Fix jsdocs cyberia json build ([20dbe54dd](https://github.com/underpostnet/engine/commit/20dbe54dd7f1e6559b231971afdba694a37315ca))
|
|
208
|
+
|
|
209
|
+
### cli-core
|
|
210
|
+
|
|
211
|
+
- Update -g8 option flag ([d1779a1da](https://github.com/underpostnet/engine/commit/d1779a1da5a2883408962fa231dad6342f8fe6d3))
|
|
212
|
+
|
|
213
|
+
## New release v:3.0.3 (2026-03-06)
|
|
4
214
|
|
|
5
215
|
### client-underpost
|
|
6
216
|
|
package/CLI-HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## underpost ci/cd cli v3.
|
|
1
|
+
## underpost ci/cd cli v3.1.3
|
|
2
2
|
|
|
3
3
|
### Usage: `underpost [options] [command]`
|
|
4
4
|
```
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
Commands:
|
|
10
10
|
new [options] [app-name] Initializes a new Underpost project, service, or configuration.
|
|
11
|
+
client [options] [deploy-id] [sub-conf] [host] [path] Builds client assets, single replicas, and/or syncs environment ports.
|
|
11
12
|
start [options] <deploy-id> [env] Initiates application servers, build pipelines, or other defined services based on the deployment ID.
|
|
12
13
|
clone [options] <uri> Clones a specified GitHub repository into the current directory.
|
|
13
14
|
pull [options] <path> <uri> Pulls the latest changes from a specified GitHub repository.
|
|
@@ -62,6 +63,9 @@ Options:
|
|
|
62
63
|
(pwa-microservices-template)
|
|
63
64
|
--sync-conf Sync configuration to private repositories
|
|
64
65
|
(requires --deploy-id)
|
|
66
|
+
--sync-start Sync start scripts in deploy ID package.json
|
|
67
|
+
with root package.json (use 'dd' as
|
|
68
|
+
--deploy-id to sync all dd.router)
|
|
65
69
|
--purge Remove deploy ID conf and all related
|
|
66
70
|
repositories (requires --deploy-id)
|
|
67
71
|
--dev Sets the development cli context
|
|
@@ -73,6 +77,29 @@ Options:
|
|
|
73
77
|
```
|
|
74
78
|
|
|
75
79
|
|
|
80
|
+
### `client` :
|
|
81
|
+
```
|
|
82
|
+
Usage: underpost client [options] [deploy-id] [sub-conf] [host] [path]
|
|
83
|
+
|
|
84
|
+
Builds client assets, single replicas, and/or syncs environment ports.
|
|
85
|
+
|
|
86
|
+
Arguments:
|
|
87
|
+
deploy-id The deployment ID to build. (default: "dd-default")
|
|
88
|
+
sub-conf The sub-configuration for the build. (default: "")
|
|
89
|
+
host Comma-separated hosts to filter the build. (default: "")
|
|
90
|
+
path Comma-separated paths to filter the build. (default: "")
|
|
91
|
+
|
|
92
|
+
Options:
|
|
93
|
+
--sync-env-port Sync environment port assignments across all deploy IDs
|
|
94
|
+
--single-replica Build single replica folders instead of full client
|
|
95
|
+
--build-zip Create zip files of the builds
|
|
96
|
+
--lite-build Skip full build (default is full build)
|
|
97
|
+
--icons-build Build icons
|
|
98
|
+
-h, --help display help for command
|
|
99
|
+
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
|
|
76
103
|
### `start` :
|
|
77
104
|
```
|
|
78
105
|
Usage: underpost start [options] <deploy-id> [env]
|
|
@@ -94,6 +121,8 @@ Options:
|
|
|
94
121
|
process.
|
|
95
122
|
--underpost-quickly-install Uses Underpost Quickly Install for dependency
|
|
96
123
|
installation.
|
|
124
|
+
--skip-pull-base Skips cloning repositories, uses current
|
|
125
|
+
workspace code directly.
|
|
97
126
|
-h, --help display help for command
|
|
98
127
|
|
|
99
128
|
```
|
|
@@ -110,7 +139,7 @@ Arguments:
|
|
|
110
139
|
|
|
111
140
|
Options:
|
|
112
141
|
--bare Performs a bare clone, downloading only the .git files.
|
|
113
|
-
|
|
142
|
+
--g8 Uses the g8 repository extension for cloning.
|
|
114
143
|
-h, --help display help for command
|
|
115
144
|
|
|
116
145
|
```
|
|
@@ -128,7 +157,7 @@ Arguments:
|
|
|
128
157
|
uri The URI of the GitHub repository (e.g., "username/repository").
|
|
129
158
|
|
|
130
159
|
Options:
|
|
131
|
-
|
|
160
|
+
--g8 Uses the g8 repository extension for pulling.
|
|
132
161
|
-h, --help display help for command
|
|
133
162
|
|
|
134
163
|
```
|
|
@@ -145,8 +174,8 @@ Arguments:
|
|
|
145
174
|
path The absolute or relative directory path of
|
|
146
175
|
the repository.
|
|
147
176
|
commit-type The type of commit to perform. Options:
|
|
148
|
-
feat, fix, docs, style, refactor, perf,
|
|
149
|
-
|
|
177
|
+
feat, fix, docs, style, refactor, perf, ci,
|
|
178
|
+
cd, infra, build, test, chore, revert,
|
|
150
179
|
backup.
|
|
151
180
|
module-tag Optional: Sets a specific module tag for
|
|
152
181
|
the commit.
|
|
@@ -160,8 +189,8 @@ Options:
|
|
|
160
189
|
--empty Allows committing with empty files.
|
|
161
190
|
--copy Copies the generated commit message to the
|
|
162
191
|
clipboard.
|
|
163
|
-
--info Displays information about available
|
|
164
|
-
|
|
192
|
+
--info Displays information about available commit
|
|
193
|
+
types.
|
|
165
194
|
--diff Shows the current git diff changes.
|
|
166
195
|
--edit Edit last commit.
|
|
167
196
|
--deploy-id <deploy-id> Sets the deployment configuration ID for
|
|
@@ -171,8 +200,8 @@ Options:
|
|
|
171
200
|
hashes of commits.
|
|
172
201
|
--extension <extension> specific file extensions of commits.
|
|
173
202
|
--changelog [latest-n] Print plain the changelog of the specified
|
|
174
|
-
number of latest n commits, if no number
|
|
175
|
-
|
|
203
|
+
number of latest n commits, if no number is
|
|
204
|
+
provided it will get the changelog to
|
|
176
205
|
latest ci integration
|
|
177
206
|
--changelog-build Builds a CHANGELOG.md file based on the
|
|
178
207
|
commit history
|
|
@@ -181,6 +210,7 @@ Options:
|
|
|
181
210
|
--changelog-no-hash Excludes commit hashes from the generated
|
|
182
211
|
changelog entries (used with
|
|
183
212
|
--changelog-build).
|
|
213
|
+
-b Shows the current Git branch name.
|
|
184
214
|
-h, --help display help for command
|
|
185
215
|
|
|
186
216
|
```
|
|
@@ -198,7 +228,7 @@ Arguments:
|
|
|
198
228
|
|
|
199
229
|
Options:
|
|
200
230
|
-f Forces the push, overwriting the remote repository history.
|
|
201
|
-
|
|
231
|
+
--g8 Uses the g8 repository extension for pushing.
|
|
202
232
|
-h, --help display help for command
|
|
203
233
|
|
|
204
234
|
```
|
|
@@ -282,11 +312,10 @@ Options:
|
|
|
282
312
|
Manages Underpost configurations using various operators.
|
|
283
313
|
|
|
284
314
|
Arguments:
|
|
285
|
-
operator The configuration operation to perform. Options:
|
|
286
|
-
|
|
315
|
+
operator The configuration operation to perform. Options: set,
|
|
316
|
+
delete, get, list, clean.
|
|
287
317
|
key Optional: The specific configuration key to manage.
|
|
288
|
-
value Optional: The value to set for the configuration
|
|
289
|
-
key.
|
|
318
|
+
value Optional: The value to set for the configuration key.
|
|
290
319
|
|
|
291
320
|
Options:
|
|
292
321
|
--plain Prints the configuration value in plain text.
|
|
@@ -295,8 +324,8 @@ Options:
|
|
|
295
324
|
--deploy-id <deploy-id> Sets the deployment configuration ID for the
|
|
296
325
|
operation context.
|
|
297
326
|
--build Sets the build context for the operation.
|
|
298
|
-
--copy Copies the configuration value to the clipboard
|
|
299
|
-
|
|
327
|
+
--copy Copies the configuration value to the clipboard (only
|
|
328
|
+
for get operation).
|
|
300
329
|
-h, --help display help for command
|
|
301
330
|
|
|
302
331
|
```
|
|
@@ -337,8 +366,8 @@ Options:
|
|
|
337
366
|
--ban-egress-clear Clears all banned egress IP addresses.
|
|
338
367
|
--ban-both-add Adds IP addresses to both banned ingress and egress
|
|
339
368
|
lists.
|
|
340
|
-
--ban-both-remove Removes IP addresses from both banned ingress and
|
|
341
|
-
|
|
369
|
+
--ban-both-remove Removes IP addresses from both banned ingress and egress
|
|
370
|
+
lists.
|
|
342
371
|
-h, --help display help for command
|
|
343
372
|
|
|
344
373
|
```
|
|
@@ -364,8 +393,8 @@ Options:
|
|
|
364
393
|
--mongodb Initializes the cluster with a MongoDB
|
|
365
394
|
statefulset.
|
|
366
395
|
--mongo-db-host <host> Set custom mongo db host
|
|
367
|
-
--postgresql Initializes the cluster with a
|
|
368
|
-
|
|
396
|
+
--postgresql Initializes the cluster with a PostgreSQL
|
|
397
|
+
statefulset.
|
|
369
398
|
--mongodb4 Initializes the cluster with a MongoDB
|
|
370
399
|
4.4 service.
|
|
371
400
|
--valkey Initializes the cluster with a Valkey
|
|
@@ -380,10 +409,10 @@ Options:
|
|
|
380
409
|
GPU base resources and environment
|
|
381
410
|
settings.
|
|
382
411
|
--ns-use <ns-name> Switches the current Kubernetes context
|
|
383
|
-
to the specified namespace (creates if
|
|
384
|
-
|
|
385
|
-
--kubeadm Initializes the cluster using kubeadm
|
|
386
|
-
|
|
412
|
+
to the specified namespace (creates if it
|
|
413
|
+
doesn't exist).
|
|
414
|
+
--kubeadm Initializes the cluster using kubeadm for
|
|
415
|
+
control plane management.
|
|
387
416
|
--pod-network-cidr <cidr> Sets custom pod network CIDR for kubeadm
|
|
388
417
|
cluster initialization (defaults to
|
|
389
418
|
"192.168.0.0/16").
|
|
@@ -392,15 +421,15 @@ Options:
|
|
|
392
421
|
to "localhost:6443").
|
|
393
422
|
--grafana Initializes the cluster with a Grafana
|
|
394
423
|
deployment.
|
|
395
|
-
--prom [hosts] Initializes the cluster with a
|
|
396
|
-
|
|
397
|
-
|
|
424
|
+
--prom [hosts] Initializes the cluster with a Prometheus
|
|
425
|
+
Operator deployment and monitor scrap for
|
|
426
|
+
specified hosts.
|
|
398
427
|
--dev Initializes a development-specific
|
|
399
428
|
cluster configuration.
|
|
400
429
|
--list-pods Displays detailed information about all
|
|
401
430
|
pods.
|
|
402
|
-
--pull-image Sets an optional associated image to
|
|
403
|
-
|
|
431
|
+
--pull-image Sets an optional associated image to pull
|
|
432
|
+
during initialization.
|
|
404
433
|
--init-host Installs necessary Kubernetes node CLI
|
|
405
434
|
tools (e.g., kind, kubeadm, docker,
|
|
406
435
|
podman, helm).
|
|
@@ -414,8 +443,8 @@ Options:
|
|
|
414
443
|
(Lightweight Kubernetes).
|
|
415
444
|
--hosts <hosts> A comma-separated list of cluster
|
|
416
445
|
hostnames or IP addresses.
|
|
417
|
-
--remove-volume-host-paths Removes specified volume host paths
|
|
418
|
-
|
|
446
|
+
--remove-volume-host-paths Removes specified volume host paths after
|
|
447
|
+
execution.
|
|
419
448
|
--namespace <namespace> Kubernetes namespace for cluster
|
|
420
449
|
operations (defaults to "default").
|
|
421
450
|
--replicas <replicas> Sets a custom number of replicas for
|
|
@@ -479,8 +508,8 @@ Options:
|
|
|
479
508
|
--status Retrieves current network traffic data
|
|
480
509
|
from resource deployments and the host
|
|
481
510
|
machine network configuration.
|
|
482
|
-
--kubeadm Enables the kubeadm context for
|
|
483
|
-
|
|
511
|
+
--kubeadm Enables the kubeadm context for deployment
|
|
512
|
+
operations.
|
|
484
513
|
--etc-hosts Enables the etc-hosts context for
|
|
485
514
|
deployment operations.
|
|
486
515
|
--restore-hosts Restores default `/etc/hosts` entries.
|
|
@@ -533,8 +562,8 @@ clusters.
|
|
|
533
562
|
|
|
534
563
|
Options:
|
|
535
564
|
--build Builds a Docker image using Podman,
|
|
536
|
-
optionally saves it as a tar archive,
|
|
537
|
-
|
|
565
|
+
optionally saves it as a tar archive, and
|
|
566
|
+
loads it into a specified Kubernetes
|
|
538
567
|
cluster (Kind, Kubeadm, or K3s).
|
|
539
568
|
--ls Lists all available Underpost Dockerfile
|
|
540
569
|
images.
|
|
@@ -551,8 +580,8 @@ Options:
|
|
|
551
580
|
"rockylinux9-underpost" image.
|
|
552
581
|
--spec Get current cached list of container
|
|
553
582
|
images used by all pods
|
|
554
|
-
--namespace <namespace> Kubernetes namespace for image
|
|
555
|
-
|
|
583
|
+
--namespace <namespace> Kubernetes namespace for image operations
|
|
584
|
+
(defaults to "default").
|
|
556
585
|
--kind Set kind cluster env image context
|
|
557
586
|
management.
|
|
558
587
|
--kubeadm Set kubeadm cluster env image context
|
|
@@ -561,8 +590,7 @@ Options:
|
|
|
561
590
|
management.
|
|
562
591
|
--node-name Set node name for kubeadm or k3s cluster
|
|
563
592
|
env image context management.
|
|
564
|
-
--reset Performs a build without using the
|
|
565
|
-
cache.
|
|
593
|
+
--reset Performs a build without using the cache.
|
|
566
594
|
--dev Use development mode.
|
|
567
595
|
--pull-dockerhub <dockerhub-image> Sets a custom Docker Hub image for base
|
|
568
596
|
image pulls.
|
|
@@ -790,32 +818,30 @@ services.
|
|
|
790
818
|
|
|
791
819
|
Options:
|
|
792
820
|
--deploy-id <deploy-id> Sets deploy id context for ssh operations.
|
|
793
|
-
--generate Generates new ssh credential and stores it in
|
|
794
|
-
|
|
821
|
+
--generate Generates new ssh credential and stores it in current
|
|
822
|
+
private keys file storage.
|
|
795
823
|
--user <user> Sets custom ssh user
|
|
796
824
|
--password <password> Sets custom ssh password
|
|
797
825
|
--host <host> Sets custom ssh host
|
|
798
826
|
--port <port> Sets custom ssh port
|
|
799
827
|
--filter <filter> Filters ssh user credentials from current private
|
|
800
828
|
keys file storage.
|
|
801
|
-
--groups <groups> Sets comma-separated ssh user groups for the ssh
|
|
802
|
-
|
|
829
|
+
--groups <groups> Sets comma-separated ssh user groups for the ssh user
|
|
830
|
+
credential.
|
|
803
831
|
--user-add Adds a new ssh user credential to current private
|
|
804
832
|
keys file storage.
|
|
805
833
|
--user-remove Removes an existing ssh user credential from current
|
|
806
834
|
private keys file storage.
|
|
807
835
|
--user-ls Lists all ssh user credentials from current private
|
|
808
836
|
keys file storage.
|
|
809
|
-
--start Starts an SSH session with the specified
|
|
810
|
-
credentials.
|
|
837
|
+
--start Starts an SSH session with the specified credentials.
|
|
811
838
|
--reset Resets ssh configuration and deletes all stored
|
|
812
839
|
credentials.
|
|
813
840
|
--keys-list Lists all ssh keys from current private keys file
|
|
814
841
|
storage.
|
|
815
842
|
--hosts-list Lists all ssh hosts from current private keys file
|
|
816
843
|
storage.
|
|
817
|
-
--disable-password Disables password authentication for the SSH
|
|
818
|
-
session.
|
|
844
|
+
--disable-password Disables password authentication for the SSH session.
|
|
819
845
|
--key-test Tests the SSH key using ssh-keygen.
|
|
820
846
|
--stop Stops the SSH service.
|
|
821
847
|
--status Checks the status of the SSH service.
|
|
@@ -833,7 +859,7 @@ Options:
|
|
|
833
859
|
Runs specified scripts using various runners.
|
|
834
860
|
|
|
835
861
|
Arguments:
|
|
836
|
-
runner-id The runner ID to run. Options: dev-cluster,ipfs-expose,metadata,svc-ls,svc-rm,ssh-deploy-info,dev-hosts-expose,dev-hosts-restore,cluster-build,template-deploy,template-deploy-image,clean,pull,release-deploy,ssh-deploy,ide,crypto-policy,sync,stop,ssh-deploy-stop,ssh-deploy-db-rollback,ssh-deploy-db,ssh-deploy-db-status,tz,get-proxy,instance-promote,instance,ls-deployments,host-update,dd-container,ip-info,db-client,git-conf,promote,metrics,cluster,deploy,disk-clean,disk-devices,disk-usage,dev,service,etc-hosts,sh,log,ps,
|
|
862
|
+
runner-id The runner ID to run. Options: dev-cluster,ipfs-expose,metadata,svc-ls,svc-rm,ssh-deploy-info,dev-hosts-expose,dev-hosts-restore,cluster-build,template-deploy,template-deploy-image,clean,pull,release-deploy,ssh-deploy,ide,crypto-policy,sync,stop,ssh-deploy-stop,ssh-deploy-db-rollback,ssh-deploy-db,ssh-deploy-db-status,tz,get-proxy,instance-promote,instance,ls-deployments,host-update,dd-container,ip-info,db-client,git-conf,promote,metrics,cluster,deploy,disk-clean,disk-devices,disk-usage,dev,service,etc-hosts,sh,log,ps,pid-info,background,ports,deploy-test,tf-vae-test,spark-template,rmi,kill,secret,underpost-config,gpu-env,tf-gpu-test,deploy-job.
|
|
837
863
|
path The input value, identifier, or path for the operation.
|
|
838
864
|
|
|
839
865
|
Options:
|
|
@@ -864,7 +890,6 @@ Options:
|
|
|
864
890
|
--force Forces operation, overriding any warnings or conflicts.
|
|
865
891
|
--tls Enables TLS for the runner execution.
|
|
866
892
|
--reset Resets the runner state before execution.
|
|
867
|
-
--terminal Enables terminal mode for interactive script execution.
|
|
868
893
|
--dev-proxy-port-offset <port-offset> Sets a custom port offset for development proxy.
|
|
869
894
|
--host-network Enables host network mode for the runner execution.
|
|
870
895
|
--requests-memory <requests-memory> Requests memory limit for the runner execution.
|
|
@@ -898,6 +923,7 @@ Options:
|
|
|
898
923
|
--monitor-status-delta-ms <milliseconds> Sets the polling interval in milliseconds for status monitoring (default: 1000).
|
|
899
924
|
--monitor-status-max-attempts <attempts> Sets the maximum number of status check attempts (default: 600).
|
|
900
925
|
--dry-run Preview operations without executing them.
|
|
926
|
+
--from-n-commit <n> Number of commits back to use for message propagation in template-deploy (default: 1, last commit only).
|
|
901
927
|
--create-job-now After applying cron manifests, immediately create a Job from each CronJob (forwarded to cron runner).
|
|
902
928
|
--host-aliases <host-aliases> Adds entries to the Pod /etc/hosts via hostAliases. Format: semicolon-separated entries of "ip=hostname1,hostname2" (e.g., "127.0.0.1=foo.local,bar.local;10.1.2.3=foo.remote,bar.remote").
|
|
903
929
|
-h, --help display help for command
|
|
@@ -931,8 +957,8 @@ Options:
|
|
|
931
957
|
--delete-vm <vm-name> Stop and delete the specified VM.
|
|
932
958
|
--init-vm <vm-name> Run k3s-node-setup.sh on the specified VM
|
|
933
959
|
(use with --control or --worker).
|
|
934
|
-
--info-vm <vm-name> Display full configuration and status for
|
|
935
|
-
|
|
960
|
+
--info-vm <vm-name> Display full configuration and status for the
|
|
961
|
+
specified VM.
|
|
936
962
|
--test <vm-name> Run connectivity and health checks on the
|
|
937
963
|
specified VM.
|
|
938
964
|
--root-size <gb-size> Root disk size in GiB for --create-vm
|
|
@@ -947,8 +973,7 @@ Options:
|
|
|
947
973
|
"k3s-control:80,443").
|
|
948
974
|
--workflow-id <workflow-id> Workflow ID to execute via runWorkflow.
|
|
949
975
|
--vm-id <vm-name> Target VM name for workflow execution.
|
|
950
|
-
--deploy-id <deploy-id> Deployment ID context for workflow
|
|
951
|
-
execution.
|
|
976
|
+
--deploy-id <deploy-id> Deployment ID context for workflow execution.
|
|
952
977
|
--namespace <namespace> Kubernetes namespace context (defaults to
|
|
953
978
|
"default").
|
|
954
979
|
-h, --help display help for command
|