@underpostnet/cyberia 3.3.0 → 3.3.76

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.
Files changed (568) hide show
  1. package/.dockerignore +1 -0
  2. package/.env.example +17 -5
  3. package/.github/workflows/coverall.cyberia.ci.yml +39 -14
  4. package/.github/workflows/cyberia-client.cd.yml +5 -0
  5. package/.github/workflows/cyberia-server.cd.yml +5 -0
  6. package/.github/workflows/docker-image.cyberia-client.ci.yml +8 -5
  7. package/.github/workflows/docker-image.cyberia-client.dev.ci.yml +8 -3
  8. package/.github/workflows/docker-image.cyberia-server.ci.yml +8 -5
  9. package/.github/workflows/docker-image.cyberia-server.dev.ci.yml +8 -5
  10. package/.github/workflows/docker-image.engine-cyberia.ci.yml +15 -1
  11. package/.github/workflows/docker-image.engine-cyberia.dev.ci.yml +15 -1
  12. package/.github/workflows/engine-cyberia.cd.yml +3 -0
  13. package/.github/workflows/engine-cyberia.ci.yml +4 -5
  14. package/.github/workflows/ghpkg.ci.yml +35 -20
  15. package/.github/workflows/hardhat.ci.yml +12 -11
  16. package/.github/workflows/npmpkg.ci.yml +17 -15
  17. package/.github/workflows/publish.cyberia.ci.yml +44 -0
  18. package/.github/workflows/pwa-microservices-template-test.ci.yml +2 -2
  19. package/.github/workflows/release.cd.yml +1 -0
  20. package/.prettierignore +1 -0
  21. package/AGENTS.md +96 -0
  22. package/CHANGELOG.md +653 -2513
  23. package/CLI-HELP.md +323 -157
  24. package/Dockerfile +25 -9
  25. package/Dockerfile.dev +25 -9
  26. package/Dockerfile.test +5 -5
  27. package/README.md +48 -28
  28. package/bin/build.js +86 -41
  29. package/bin/build.template.js +8 -3
  30. package/bin/cyberia.js +1494 -1403
  31. package/bin/deploy.js +18 -104
  32. package/bin/index.js +1494 -1403
  33. package/compose.env +17 -5
  34. package/conf.js +98 -7
  35. package/deploy/cyberia-client/deploy.sh +46 -0
  36. package/deploy/cyberia-client/package.sh +17 -0
  37. package/deploy/cyberia-client/state.sh +15 -0
  38. package/deploy/cyberia-server/deploy.sh +46 -0
  39. package/deploy/cyberia-server/package.sh +17 -0
  40. package/deploy/cyberia-server/state.sh +15 -0
  41. package/deploy/dd-cyberia/deploy.sh +9 -29
  42. package/deploy/dd-cyberia/init.sh +38 -45
  43. package/deploy/dd-cyberia/package.sh +16 -0
  44. package/deploy/dd-cyberia/state.sh +14 -0
  45. package/deploy/dd-cyberia/sync-deploy.sh +133 -147
  46. package/deploy/lib/config.sh +29 -0
  47. package/deploy/lib/github-actions-logging.sh +610 -0
  48. package/deploy/lib/host.sh +194 -0
  49. package/deploy/lib/state.sh +65 -0
  50. package/deploy/pwa-microservices-template/deploy.sh +17 -42
  51. package/deploy/release/deploy.sh +9 -41
  52. package/deployment.yaml +7 -2
  53. package/docker-compose.yml +23 -17
  54. package/examples/static-page/README.md +19 -19
  55. package/examples/static-page/ssr-components/CustomPage.js +2 -2
  56. package/hardhat/hardhat.config.js +1 -6
  57. package/hardhat/package-lock.json +101 -40
  58. package/hardhat/package.json +2 -2
  59. package/manifests/alertmanager/deployment.yaml +81 -0
  60. package/manifests/blackbox-exporter/deployment.yaml +75 -0
  61. package/manifests/cronjobs/dd-cron/dd-cron-backup.yaml +32 -7
  62. package/manifests/cronjobs/dd-cron/dd-cron-vultr.yaml +32 -7
  63. package/manifests/deployment/dd-cyberia-development/deployment.yaml +7 -2
  64. package/manifests/deployment/dd-default-development/deployment.yaml +2 -2
  65. package/manifests/deployment/mongo-express/deployment.yaml +46 -27
  66. package/manifests/deployment/mongo-express/kustomization.yaml +9 -0
  67. package/manifests/deployment/mongo-express/mongo-express-nodeport.yaml +18 -0
  68. package/manifests/deployment/mongo-express/service.yaml +16 -0
  69. package/manifests/deployment/mongo-express-no-auth/disable-mongodb-auth.yaml +16 -0
  70. package/manifests/deployment/mongo-express-no-auth/kustomization.yaml +16 -0
  71. package/manifests/grafana/deployment.yaml +26 -7
  72. package/manifests/grafana/kustomization.yaml +1 -0
  73. package/manifests/grafana/service.yaml +6 -1
  74. package/manifests/mariadb/pv.yaml +1 -0
  75. package/manifests/mongodb/statefulset.yaml +9 -2
  76. package/manifests/mysql/pv-pvc.yaml +14 -1
  77. package/manifests/postgresql/pv.yaml +12 -1
  78. package/manifests/postgresql/pvc.yaml +1 -0
  79. package/manifests/prometheus/deployment.yaml +18 -22
  80. package/package.json +87 -12
  81. package/scripts/event-monitor.sh +56 -0
  82. package/scripts/k3s-node-setup.sh +27 -14
  83. package/scripts/kubeadm-node-setup.sh +31 -11
  84. package/scripts/maas-setup.sh +8 -8
  85. package/scripts/selinux-normalize.sh +907 -0
  86. package/scripts/shutdown-machine.sh +843 -0
  87. package/scripts/test-monitor.sh +5 -5
  88. package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.controller.js +15 -10
  89. package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.model.js +36 -5
  90. package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.router.js +7 -2
  91. package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.service.js +90 -186
  92. package/src/api/core/core.controller.js +1 -1
  93. package/src/api/core/core.router.js +2 -2
  94. package/src/api/core/core.service.js +2 -2
  95. package/src/api/crypto/crypto.controller.js +1 -1
  96. package/src/api/crypto/crypto.service.js +1 -1
  97. package/src/api/cyberia-action/cyberia-action.controller.js +1 -1
  98. package/src/api/cyberia-action/cyberia-action.router.js +3 -3
  99. package/src/api/cyberia-action/cyberia-action.service.js +5 -6
  100. package/src/api/cyberia-audio/cyberia-audio.controller.js +6 -0
  101. package/src/api/cyberia-audio/cyberia-audio.model.js +61 -0
  102. package/src/api/cyberia-audio/cyberia-audio.router.js +21 -0
  103. package/src/api/cyberia-audio/cyberia-audio.service.js +220 -0
  104. package/src/api/cyberia-client-hints/cyberia-client-hints.controller.js +2 -4
  105. package/src/api/cyberia-client-hints/cyberia-client-hints.model.js +10 -19
  106. package/src/api/cyberia-client-hints/cyberia-client-hints.router.js +13 -35
  107. package/src/api/cyberia-client-hints/cyberia-client-hints.service.js +17 -34
  108. package/src/api/cyberia-dialogue/cyberia-dialogue.controller.js +1 -1
  109. package/src/api/cyberia-dialogue/cyberia-dialogue.model.js +1 -1
  110. package/src/api/cyberia-dialogue/cyberia-dialogue.router.js +2 -2
  111. package/src/api/cyberia-dialogue/cyberia-dialogue.service.js +2 -2
  112. package/src/api/cyberia-entity/cyberia-entity.controller.js +1 -1
  113. package/src/api/cyberia-entity/cyberia-entity.model.js +2 -0
  114. package/src/api/cyberia-entity/cyberia-entity.router.js +1 -1
  115. package/src/api/cyberia-entity/cyberia-entity.service.js +3 -3
  116. package/src/api/cyberia-entity-type-default/cyberia-entity-type-default.controller.js +8 -2
  117. package/src/api/cyberia-entity-type-default/cyberia-entity-type-default.model.js +31 -20
  118. package/src/api/cyberia-entity-type-default/cyberia-entity-type-default.router.js +17 -2
  119. package/src/api/cyberia-entity-type-default/cyberia-entity-type-default.service.js +468 -5
  120. package/src/api/cyberia-instance/cyberia-fallback-capture.js +502 -0
  121. package/src/api/cyberia-instance/cyberia-fallback-world.js +29 -40
  122. package/src/api/cyberia-instance/cyberia-instance-boot.service.js +5 -5
  123. package/src/api/cyberia-instance/cyberia-instance-items.js +98 -0
  124. package/src/api/cyberia-instance/cyberia-instance-map.service.js +35 -142
  125. package/src/api/cyberia-instance/cyberia-instance.controller.js +2 -5
  126. package/src/api/cyberia-instance/cyberia-instance.model.js +0 -14
  127. package/src/api/cyberia-instance/cyberia-instance.router.js +5 -18
  128. package/src/api/cyberia-instance/cyberia-instance.service.js +5 -45
  129. package/src/api/cyberia-instance/cyberia-world-generator.js +8 -13
  130. package/src/api/cyberia-instance-conf/cyberia-instance-conf.controller.js +1 -1
  131. package/src/api/cyberia-instance-conf/cyberia-instance-conf.model.js +49 -75
  132. package/src/api/cyberia-instance-conf/cyberia-instance-conf.router.js +1 -1
  133. package/src/api/cyberia-instance-conf/cyberia-instance-conf.service.js +76 -3
  134. package/src/api/cyberia-map/cyberia-map.controller.js +1 -1
  135. package/src/api/cyberia-map/cyberia-map.router.js +1 -1
  136. package/src/api/cyberia-map/cyberia-map.service.js +8 -4
  137. package/src/api/cyberia-map-audio-conf/cyberia-map-audio-conf.controller.js +31 -0
  138. package/src/api/cyberia-map-audio-conf/cyberia-map-audio-conf.model.js +56 -0
  139. package/src/api/cyberia-map-audio-conf/cyberia-map-audio-conf.router.js +33 -0
  140. package/src/api/cyberia-map-audio-conf/cyberia-map-audio-conf.service.js +189 -0
  141. package/src/api/cyberia-quest/cyberia-quest.controller.js +1 -1
  142. package/src/api/cyberia-quest/cyberia-quest.router.js +4 -4
  143. package/src/api/cyberia-quest/cyberia-quest.service.js +5 -5
  144. package/src/api/cyberia-quest-progress/cyberia-quest-progress.controller.js +1 -1
  145. package/src/api/cyberia-quest-progress/cyberia-quest-progress.model.js +1 -1
  146. package/src/api/cyberia-quest-progress/cyberia-quest-progress.router.js +1 -1
  147. package/src/api/cyberia-quest-progress/cyberia-quest-progress.service.js +2 -2
  148. package/src/api/cyberia-saga/cyberia-saga.controller.js +1 -1
  149. package/src/api/cyberia-saga/cyberia-saga.router.js +1 -1
  150. package/src/api/cyberia-saga/cyberia-saga.service.js +2 -2
  151. package/src/api/cyberia-server-defaults/cyberia-server-defaults.js +403 -214
  152. package/src/api/cyberia-skill/cyberia-skill.controller.js +1 -1
  153. package/src/api/cyberia-skill/cyberia-skill.model.js +6 -6
  154. package/src/api/cyberia-skill/cyberia-skill.router.js +1 -1
  155. package/src/api/cyberia-skill/cyberia-skill.service.js +2 -2
  156. package/src/api/default/default.controller.js +1 -1
  157. package/src/api/default/default.router.js +1 -1
  158. package/src/api/default/default.service.js +2 -2
  159. package/src/api/document/document.controller.js +1 -1
  160. package/src/api/document/document.router.js +1 -1
  161. package/src/api/document/document.service.js +2 -2
  162. package/src/api/file/file.controller.js +1 -1
  163. package/src/api/file/file.ref.js +153 -0
  164. package/src/api/file/file.ref.json +11 -2
  165. package/src/api/file/file.router.js +1 -1
  166. package/src/api/file/file.service.js +2 -2
  167. package/src/api/instance/instance.controller.js +1 -1
  168. package/src/api/instance/instance.router.js +1 -1
  169. package/src/api/instance/instance.service.js +2 -2
  170. package/src/api/ipfs/ipfs.controller.js +1 -1
  171. package/src/api/ipfs/ipfs.router.js +2 -2
  172. package/src/api/ipfs/ipfs.service.js +2 -2
  173. package/src/api/object-layer/object-layer.controller.js +1 -1
  174. package/src/api/object-layer/object-layer.model.js +47 -12
  175. package/src/api/object-layer/object-layer.router.js +12 -5
  176. package/src/api/object-layer/object-layer.service.js +116 -123
  177. package/src/api/object-layer-render-frames/object-layer-render-frames.controller.js +1 -1
  178. package/src/api/object-layer-render-frames/object-layer-render-frames.router.js +1 -1
  179. package/src/api/object-layer-render-frames/object-layer-render-frames.service.js +2 -2
  180. package/src/api/test/test.controller.js +1 -1
  181. package/src/api/test/test.service.js +1 -1
  182. package/src/api/user/guest.service.js +3 -3
  183. package/src/api/user/user.controller.js +1 -1
  184. package/src/api/user/user.router.js +2 -2
  185. package/src/api/user/user.service.js +4 -4
  186. package/src/api.js +5 -9
  187. package/src/cli/app.js +402 -0
  188. package/src/cli/baremetal.js +30 -35
  189. package/src/cli/client.js +306 -0
  190. package/src/cli/cloud-init.js +3 -3
  191. package/src/cli/cluster.js +191 -82
  192. package/src/cli/db.js +120 -68
  193. package/src/cli/deploy.js +157 -75
  194. package/src/cli/docker-compose.js +5 -5
  195. package/src/cli/domains.js +184 -0
  196. package/src/cli/dotenv-store.js +143 -0
  197. package/src/cli/event.js +2281 -0
  198. package/src/cli/fs-selection.js +115 -0
  199. package/src/cli/fs.js +159 -343
  200. package/src/cli/host.js +672 -0
  201. package/src/cli/image.js +4 -6
  202. package/src/cli/index.js +343 -151
  203. package/src/cli/ipfs.js +34 -30
  204. package/src/cli/kickstart.js +1 -1
  205. package/src/cli/kubectl.js +218 -41
  206. package/src/cli/lxd.js +3 -3
  207. package/src/cli/monitor.js +1359 -26
  208. package/src/cli/package.js +90 -0
  209. package/src/cli/release.js +16 -12
  210. package/src/cli/repository.js +586 -363
  211. package/src/cli/run.js +398 -843
  212. package/src/cli/secrets.js +2158 -964
  213. package/src/cli/ssh.js +478 -279
  214. package/src/cli/state.js +394 -0
  215. package/src/cli/static.js +2 -2
  216. package/src/cli/system.js +1 -1
  217. package/src/cli/test.js +203 -125
  218. package/src/cli/vultr.js +61 -21
  219. package/src/cli/wireguard.js +1112 -306
  220. package/src/client/components/core/CalendarCore.js +53 -96
  221. package/src/client/components/core/Docs.js +327 -303
  222. package/src/client/components/core/FileExplorer.js +0 -21
  223. package/src/client/components/core/Modal.js +56 -1
  224. package/src/client/components/core/PanelForm.js +4 -4
  225. package/src/client/components/core/Repository.js +56 -0
  226. package/src/client/components/core/Translate.js +7 -0
  227. package/src/client/components/core/{FullScreen.js → ViewModeController.js} +42 -39
  228. package/src/client/components/core/Wallet.js +0 -11
  229. package/src/client/components/core/Worker.js +7 -1
  230. package/src/client/components/cryptokoyn/SettingsCryptokoyn.js +2 -2
  231. package/src/client/components/cyberia/ActionEngineCyberia.js +12 -36
  232. package/src/client/components/cyberia/EntityEngineCyberia.js +492 -121
  233. package/src/client/components/cyberia/InstanceEngineCyberia.js +129 -160
  234. package/src/client/components/cyberia/InstanceSelectionView.js +7 -1
  235. package/src/client/components/cyberia/MapEngineCyberia.js +175 -69
  236. package/src/client/components/cyberia/ObjectLayerEngine.js +1011 -97
  237. package/src/client/components/cyberia/ObjectLayerEngineModal.js +81 -155
  238. package/src/client/components/cyberia/ObjectLayerEngineViewer.js +113 -98
  239. package/src/client/components/cyberia/SharedDefaultsCyberia.js +215 -56
  240. package/src/client/components/cyberia-portal/AppShellCyberiaPortal.js +2 -35
  241. package/src/client/components/cyberia-portal/CssCyberiaPortal.js +1 -1
  242. package/src/client/components/cyberia-portal/MainBodyCyberiaPortal.js +712 -76
  243. package/src/client/components/cyberia-portal/SettingsCyberiaPortal.js +2 -2
  244. package/src/client/components/cyberia-portal/TranslateCyberiaPortal.js +0 -4
  245. package/src/client/components/default/AppShellDefault.js +1 -1
  246. package/src/client/components/default/SettingsDefault.js +2 -2
  247. package/src/client/components/itemledger/SettingsItemledger.js +2 -2
  248. package/src/client/components/underpost/AppShellUnderpost.js +3 -2
  249. package/src/client/components/underpost/SettingsUnderpost.js +2 -2
  250. package/src/client/public/cyberia-docs/ARCHITECTURE.md +15 -15
  251. package/src/client/public/cyberia-docs/CYBERIA-CLI.md +313 -30
  252. package/src/client/public/cyberia-docs/CYBERIA-CLIENT.md +51 -29
  253. package/src/client/public/cyberia-docs/CYBERIA-SAGA.md +52 -53
  254. package/src/client/public/cyberia-docs/CYBERIA-SERVER.md +16 -11
  255. package/src/client/public/cyberia-docs/CYBERIA.md +48 -28
  256. package/src/client/public/cyberia-docs/ENTITY-PROFILE.md +11 -5
  257. package/src/client/public/cyberia-docs/HARDHAT-MODULE.md +23 -6
  258. package/src/client/public/cyberia-docs/ROADMAP.md +1 -1
  259. package/src/client/public/cyberia-docs/STATS-PROGRESSION.md +217 -0
  260. package/src/client/public/cyberia-docs/WHITE-PAPER.md +20 -12
  261. package/src/client/public/default/android-chrome-144x144.png +0 -0
  262. package/src/client/public/default/android-chrome-192x192.png +0 -0
  263. package/src/client/public/default/android-chrome-256x256.png +0 -0
  264. package/src/client/public/default/android-chrome-36x36.png +0 -0
  265. package/src/client/public/default/android-chrome-384x384.png +0 -0
  266. package/src/client/public/default/android-chrome-48x48.png +0 -0
  267. package/src/client/public/default/android-chrome-512x512.png +0 -0
  268. package/src/client/public/default/android-chrome-72x72.png +0 -0
  269. package/src/client/public/default/android-chrome-96x96.png +0 -0
  270. package/src/client/public/default/apple-touch-icon-1024x1024.png +0 -0
  271. package/src/client/public/default/apple-touch-icon-114x114.png +0 -0
  272. package/src/client/public/default/apple-touch-icon-120x120.png +0 -0
  273. package/src/client/public/default/apple-touch-icon-144x144.png +0 -0
  274. package/src/client/public/default/apple-touch-icon-152x152.png +0 -0
  275. package/src/client/public/default/apple-touch-icon-167x167.png +0 -0
  276. package/src/client/public/default/apple-touch-icon-180x180.png +0 -0
  277. package/src/client/public/default/apple-touch-icon-57x57.png +0 -0
  278. package/src/client/public/default/apple-touch-icon-60x60.png +0 -0
  279. package/src/client/public/default/apple-touch-icon-72x72.png +0 -0
  280. package/src/client/public/default/apple-touch-icon-76x76.png +0 -0
  281. package/src/client/public/default/apple-touch-icon-precomposed.png +0 -0
  282. package/src/client/public/default/apple-touch-icon.png +0 -0
  283. package/src/client/public/default/apple-touch-startup-image-1125x2436.png +0 -0
  284. package/src/client/public/default/apple-touch-startup-image-1136x640.png +0 -0
  285. package/src/client/public/default/apple-touch-startup-image-1170x2532.png +0 -0
  286. package/src/client/public/default/apple-touch-startup-image-1179x2556.png +0 -0
  287. package/src/client/public/default/apple-touch-startup-image-1242x2208.png +0 -0
  288. package/src/client/public/default/apple-touch-startup-image-1242x2688.png +0 -0
  289. package/src/client/public/default/apple-touch-startup-image-1284x2778.png +0 -0
  290. package/src/client/public/default/apple-touch-startup-image-1290x2796.png +0 -0
  291. package/src/client/public/default/apple-touch-startup-image-1334x750.png +0 -0
  292. package/src/client/public/default/apple-touch-startup-image-1488x2266.png +0 -0
  293. package/src/client/public/default/apple-touch-startup-image-1536x2048.png +0 -0
  294. package/src/client/public/default/apple-touch-startup-image-1620x2160.png +0 -0
  295. package/src/client/public/default/apple-touch-startup-image-1640x2160.png +0 -0
  296. package/src/client/public/default/apple-touch-startup-image-1668x2224.png +0 -0
  297. package/src/client/public/default/apple-touch-startup-image-1668x2388.png +0 -0
  298. package/src/client/public/default/apple-touch-startup-image-1792x828.png +0 -0
  299. package/src/client/public/default/apple-touch-startup-image-2048x1536.png +0 -0
  300. package/src/client/public/default/apple-touch-startup-image-2048x2732.png +0 -0
  301. package/src/client/public/default/apple-touch-startup-image-2160x1620.png +0 -0
  302. package/src/client/public/default/apple-touch-startup-image-2160x1640.png +0 -0
  303. package/src/client/public/default/apple-touch-startup-image-2208x1242.png +0 -0
  304. package/src/client/public/default/apple-touch-startup-image-2224x1668.png +0 -0
  305. package/src/client/public/default/apple-touch-startup-image-2266x1488.png +0 -0
  306. package/src/client/public/default/apple-touch-startup-image-2388x1668.png +0 -0
  307. package/src/client/public/default/apple-touch-startup-image-2436x1125.png +0 -0
  308. package/src/client/public/default/apple-touch-startup-image-2532x1170.png +0 -0
  309. package/src/client/public/default/apple-touch-startup-image-2556x1179.png +0 -0
  310. package/src/client/public/default/apple-touch-startup-image-2688x1242.png +0 -0
  311. package/src/client/public/default/apple-touch-startup-image-2732x2048.png +0 -0
  312. package/src/client/public/default/apple-touch-startup-image-2778x1284.png +0 -0
  313. package/src/client/public/default/apple-touch-startup-image-2796x1290.png +0 -0
  314. package/src/client/public/default/apple-touch-startup-image-640x1136.png +0 -0
  315. package/src/client/public/default/apple-touch-startup-image-750x1334.png +0 -0
  316. package/src/client/public/default/apple-touch-startup-image-828x1792.png +0 -0
  317. package/src/client/public/default/assets/background/white.jpg +0 -0
  318. package/src/client/public/default/browserconfig.xml +1 -1
  319. package/src/client/public/default/favicon-16x16.png +0 -0
  320. package/src/client/public/default/favicon-32x32.png +0 -0
  321. package/src/client/public/default/favicon-48x48.png +0 -0
  322. package/src/client/public/default/favicon.ico +0 -0
  323. package/src/client/public/default/manifest.webmanifest +5 -5
  324. package/src/client/public/default/mstile-144x144.png +0 -0
  325. package/src/client/public/default/mstile-150x150.png +0 -0
  326. package/src/client/public/default/mstile-310x150.png +0 -0
  327. package/src/client/public/default/mstile-310x310.png +0 -0
  328. package/src/client/public/default/mstile-70x70.png +0 -0
  329. package/src/client/public/default/yandex-browser-50x50.png +0 -0
  330. package/src/client/public/default/yandex-browser-manifest.json +1 -1
  331. package/src/client/services/cyberia-audio/cyberia-audio.service.js +99 -0
  332. package/src/client/services/cyberia-entity-type-default/cyberia-entity-type-default.service.js +38 -0
  333. package/src/client/services/cyberia-instance/cyberia-instance.management.js +5 -4
  334. package/src/client/services/cyberia-instance/cyberia-instance.service.js +0 -40
  335. package/src/client/services/cyberia-map/cyberia-map.management.js +5 -4
  336. package/src/client/services/cyberia-map-audio-conf/cyberia-map-audio-conf.service.js +138 -0
  337. package/src/client/services/object-layer/object-layer.management.js +6 -10
  338. package/src/client/services/object-layer/object-layer.service.js +3 -1
  339. package/src/client/ssr/RootDocument.js +1 -1
  340. package/src/client/ssr/body/404.js +1 -1
  341. package/src/client/ssr/body/500.js +1 -1
  342. package/src/client/ssr/body/CacheControl.js +1 -1
  343. package/src/client/ssr/body/CyberiaDefaultSplashScreen.js +1 -1
  344. package/src/client/ssr/body/DefaultSplashScreen.js +1 -1
  345. package/src/client/ssr/body/SwaggerDarkMode.js +1 -1
  346. package/src/client/ssr/body/UnderpostDefaultSplashScreen.js +1 -1
  347. package/src/client/ssr/head/CryptokoynScripts.js +1 -1
  348. package/src/client/ssr/head/Css.js +1 -1
  349. package/src/client/ssr/head/CyberiaPortalScripts.js +1 -1
  350. package/src/client/ssr/head/DefaultScripts.js +1 -1
  351. package/src/client/ssr/head/ItemledgerScripts.js +1 -1
  352. package/src/client/ssr/head/Microdata.js +1 -1
  353. package/src/client/ssr/head/Production.js +1 -1
  354. package/src/client/ssr/head/Pwa.js +1 -1
  355. package/src/client/ssr/head/PwaItemledger.js +1 -1
  356. package/src/client/ssr/head/Seo.js +1 -1
  357. package/src/client/ssr/head/UnderpostScripts.js +1 -1
  358. package/src/client/ssr/mailer/DefaultRecoverEmail.js +1 -1
  359. package/src/client/ssr/mailer/DefaultVerifyEmail.js +1 -1
  360. package/src/client/ssr/views/Cyberia404.js +7 -5
  361. package/src/client/ssr/views/CyberiaServerMetrics.js +1 -1
  362. package/src/client/ssr/views/Maintenance.js +1 -1
  363. package/src/client/ssr/views/NoNetworkConnection.js +1 -1
  364. package/src/client/ssr/views/Test.js +1 -1
  365. package/src/client/sw/core.sw.js +20 -14
  366. package/src/client-builder/client-build-docs.js +92 -77
  367. package/src/client-builder/client-build-live.js +2 -2
  368. package/src/client-builder/client-build.js +105 -74
  369. package/src/client-builder/client-bundle.js +347 -0
  370. package/src/client-builder/client-dev-server.js +3 -3
  371. package/src/client-builder/client-icons.js +2 -2
  372. package/src/client-builder/ssr.js +3 -3
  373. package/src/client.build.js +3 -6
  374. package/src/client.dev.js +3 -6
  375. package/src/db/DataBaseProvider.js +186 -3
  376. package/src/db/mariadb/MariaDB.js +3 -2
  377. package/src/db/mongo/MongoBootstrap.js +273 -101
  378. package/src/db/mongo/MongoExpress.js +187 -0
  379. package/src/db/mongo/MongooseDB.js +7 -8
  380. package/src/{server/valkey.js → db/valkey/Valkey.js} +5 -4
  381. package/src/grpc/cyberia/grpc-server.js +6 -8
  382. package/src/index.js +79 -23
  383. package/src/mailer/EmailRender.js +2 -2
  384. package/src/mailer/MailerInterceptor.js +87 -0
  385. package/src/mailer/MailerProvider.js +50 -6
  386. package/src/projects/cyberia/atlas-sprite-sheet-generator.js +144 -147
  387. package/src/projects/cyberia/atlas-sprite-sheet-store.js +391 -0
  388. package/src/projects/cyberia/besu-genesis-generator.js +8 -17
  389. package/src/projects/cyberia/boot-contract-fixtures.js +32 -0
  390. package/src/projects/cyberia/catalog-cyberia.js +54 -10
  391. package/src/projects/cyberia/gemini-client.js +4 -4
  392. package/src/projects/cyberia/generate-saga.js +5 -12
  393. package/src/projects/cyberia/hot-reload-trigger.js +18 -29
  394. package/src/projects/cyberia/instance-backup.js +210 -0
  395. package/src/projects/cyberia/instance-data.js +178 -258
  396. package/src/projects/cyberia/ipfs-client.js +4 -4
  397. package/src/projects/cyberia/map-preview-generator.js +33 -69
  398. package/src/projects/cyberia/object-layer.js +153 -320
  399. package/src/projects/cyberia/seed-audio.js +139 -0
  400. package/src/projects/cyberia/semantic-layer-generator-skin.js +2 -8
  401. package/src/projects/cyberia/semantic-layer-generator.js +3 -19
  402. package/src/projects/cyberia/stat-balance.js +81 -0
  403. package/src/projects/cyberia/stat-commands.js +23 -0
  404. package/src/projects/cyberia/stat-contract-generator.js +101 -0
  405. package/src/projects/underpost/catalog-underpost.js +9 -1
  406. package/src/proxy.js +4 -7
  407. package/src/runtime/cyberia-client/Dockerfile +17 -8
  408. package/src/runtime/cyberia-client/Dockerfile.dev +13 -4
  409. package/src/runtime/cyberia-server/Dockerfile +18 -6
  410. package/src/runtime/cyberia-server/Dockerfile.dev +16 -3
  411. package/src/runtime/engine-cyberia/Dockerfile +25 -9
  412. package/src/runtime/engine-cyberia/Dockerfile.dev +25 -9
  413. package/src/runtime/engine-cyberia/Dockerfile.test +5 -5
  414. package/src/runtime/engine-cyberia/compose.env +17 -5
  415. package/src/runtime/engine-cyberia/docker-compose.yml +23 -17
  416. package/src/runtime/express/Express.js +32 -27
  417. package/src/runtime/lampp/Lampp.js +22 -70
  418. package/src/runtime/nginx/Nginx.js +1 -1
  419. package/src/runtime/wp/Wp.js +16 -48
  420. package/src/server/{catalog.js → build/catalog.js} +15 -5
  421. package/src/server/build/coverage.js +188 -0
  422. package/src/server/build/execution.js +402 -0
  423. package/src/server/build/package.js +508 -0
  424. package/src/server/build/testing.js +578 -0
  425. package/src/server/{dns.js → network/dns.js} +144 -11
  426. package/src/server/{forward-proxy.js → network/forward-proxy.js} +10 -18
  427. package/src/server/{middlewares.js → network/middlewares.js} +11 -5
  428. package/src/server/network/node-capability.js +98 -0
  429. package/src/server/{peer.js → network/peer.js} +3 -3
  430. package/src/server/{proxy.js → network/proxy.js} +7 -13
  431. package/src/server/network/router.js +356 -0
  432. package/src/server/{tls.js → network/tls.js} +2 -2
  433. package/src/server/{underpost-compression.js → network/underpost-compression.js} +1 -1
  434. package/src/server/{underpost-gateway.js → network/underpost-gateway.js} +7 -7
  435. package/src/server/{underpost-ingress.js → network/underpost-ingress.js} +2 -2
  436. package/src/server/{cri.js → ops/cri.js} +2 -2
  437. package/src/server/{cron.js → ops/cron.js} +349 -74
  438. package/src/server/ops/event-notification.js +284 -0
  439. package/src/server/{logger.js → ops/logger.js} +143 -23
  440. package/src/server/ops/monitoring.js +1724 -0
  441. package/src/server/{systemd.js → ops/systemd.js} +55 -1
  442. package/src/server/{conf.js → runtime/conf.js} +516 -423
  443. package/src/server/runtime/config-scope.js +215 -0
  444. package/src/server/runtime/environment.js +149 -0
  445. package/src/server/{process.js → runtime/process.js} +153 -12
  446. package/src/server/{runtime-status.js → runtime/runtime-status.js} +155 -16
  447. package/src/server/{runtime.js → runtime/runtime.js} +12 -8
  448. package/src/server/{start.js → runtime/start.js} +128 -39
  449. package/src/server/{auth.js → security/auth.js} +7 -8
  450. package/src/server/security/container-storage.js +382 -0
  451. package/src/server/{crypto.js → security/crypto.js} +1 -1
  452. package/src/server/{selinux.js → security/selinux.js} +1 -1
  453. package/src/server/{backup.js → storage/backup.js} +17 -8
  454. package/src/server/{data-query.js → storage/data-query.js} +17 -1
  455. package/src/server/storage/downloader.js +121 -0
  456. package/src/server/storage/repository.js +68 -0
  457. package/src/server/storage/zip.js +153 -0
  458. package/src/server.js +4 -7
  459. package/src/ws/IoInterface.js +1 -1
  460. package/src/ws/IoServer.js +1 -1
  461. package/src/ws/core/core.ws.connection.js +1 -1
  462. package/src/ws/core/core.ws.emit.js +1 -1
  463. package/src/ws/core/core.ws.server.js +1 -1
  464. package/src/ws/default/default.ws.connection.js +1 -1
  465. package/src/ws/default/default.ws.emit.js +1 -1
  466. package/src/ws/default/default.ws.server.js +1 -1
  467. package/test/e2e/event-e2e-public-ingress-down.js +45 -0
  468. package/test/e2e/event-e2e-wireguard-server-down.js +38 -0
  469. package/test/e2e/event-e2e-wireguard-spoke-down.js +40 -0
  470. package/test/{api.test.js → integration/app/api.test.js} +33 -14
  471. package/test/integration/app/cyberia/atlas-sprite-sheet-store.test.js +402 -0
  472. package/test/integration/app/cyberia/atlas-sprite-sheet.test.js +86 -0
  473. package/test/integration/app/cyberia/cyberia-cli-plain-reads.test.js +64 -0
  474. package/test/integration/app/cyberia/cyberia-entity-type-default.test.js +842 -0
  475. package/test/integration/app/cyberia/cyberia-instance-conf-coerce.test.js +53 -0
  476. package/test/{cyberia-instance-conf-defaults.test.js → integration/app/cyberia/cyberia-instance-conf-defaults.test.js} +17 -23
  477. package/test/integration/app/cyberia/cyberia-instance-items.test.js +90 -0
  478. package/test/integration/app/cyberia/cyberia-load.test.js +466 -0
  479. package/test/integration/app/cyberia/cyberia-map-audio-conf.test.js +256 -0
  480. package/test/integration/app/cyberia/cyberia-stats.test.js +150 -0
  481. package/test/integration/app/cyberia/fallback-world-capture.test.js +338 -0
  482. package/test/integration/app/cyberia/object-layer-item-id.test.js +327 -0
  483. package/test/integration/app/cyberia/object-layer-item-selection.test.js +56 -0
  484. package/test/integration/app/cyberia/object-layer-natural-key.test.js +32 -0
  485. package/test/integration/app/cyberia/seed-audio.test.js +275 -0
  486. package/test/{shape-generator.test.js → integration/app/cyberia/shape-generator.test.js} +1 -1
  487. package/test/integration/infra/1-security/config-scope.test.js +305 -0
  488. package/test/integration/infra/1-security/container-storage.test.js +356 -0
  489. package/test/integration/infra/1-security/in-pod-cli-surface.test.js +86 -0
  490. package/test/integration/infra/1-security/secret-onboarding.test.js +930 -0
  491. package/test/{selinux.test.js → integration/infra/1-security/selinux.test.js} +2 -4
  492. package/test/{sops-secret-store.test.js → integration/infra/1-security/sops-secret-store.test.js} +415 -61
  493. package/test/integration/infra/1-security/systemd-service.test.js +70 -0
  494. package/test/integration/infra/1-security/underpost-config-secret.test.js +367 -0
  495. package/test/integration/infra/2-network/dns-firewall.test.js +566 -0
  496. package/test/integration/infra/2-network/node-capability.test.js +182 -0
  497. package/test/integration/infra/2-network/wireguard-cli.test.js +1187 -0
  498. package/test/{wireguard-edge.test.js → integration/infra/2-network/wireguard-edge.test.js} +649 -55
  499. package/test/{cluster-instances.test.js → integration/infra/3-cluster/cluster-instances.test.js} +11 -15
  500. package/test/{deploy-node-placement.test.js → integration/infra/3-cluster/deploy-node-placement.test.js} +3 -3
  501. package/test/integration/infra/3-cluster/docker-compose-stack.test.js +313 -0
  502. package/test/integration/infra/3-cluster/mongo-express-deploy.test.js +156 -0
  503. package/test/integration/infra/4-ingress/api-cross-origin.test.js +79 -0
  504. package/test/integration/infra/4-ingress/deploy-routes.test.js +379 -0
  505. package/test/integration/infra/4-ingress/gateway-static-assets.test.js +453 -0
  506. package/test/{instance-traffic-plan.test.js → integration/infra/4-ingress/instance-traffic-plan.test.js} +10 -6
  507. package/test/{underpost-gateway.test.js → integration/infra/4-ingress/underpost-gateway.test.js} +6 -6
  508. package/test/{underpost-ingress.test.js → integration/infra/4-ingress/underpost-ingress.test.js} +4 -4
  509. package/test/integration/infra/5-observability/cron-jobs.test.js +652 -0
  510. package/test/{deploy-monitor.test.js → integration/infra/5-observability/deploy-monitor.test.js} +29 -31
  511. package/test/integration/infra/5-observability/event-notification.test.js +197 -0
  512. package/test/integration/infra/5-observability/event-remediation.test.js +502 -0
  513. package/test/integration/infra/5-observability/event-targets.test.js +1174 -0
  514. package/test/integration/infra/5-observability/monitoring-stack.test.js +902 -0
  515. package/test/support/shell-harness.js +73 -0
  516. package/test/unit/build-template.test.js +97 -0
  517. package/test/unit/build-workflow-offline.test.js +132 -0
  518. package/test/unit/catalog.test.js +71 -0
  519. package/test/unit/client-build-docs.test.js +361 -0
  520. package/test/unit/client-bundle.test.js +313 -0
  521. package/test/unit/conf-loading.test.js +303 -0
  522. package/test/unit/conf-resolution.test.js +996 -0
  523. package/test/unit/coverage-artifact.test.js +221 -0
  524. package/test/{crypto.test.js → unit/crypto.test.js} +1 -1
  525. package/test/unit/cyberia/instance-backup.test.js +183 -0
  526. package/test/unit/cyberia/instance-object-layer-items.test.js +46 -0
  527. package/test/unit/cyberia/publish-workflow.test.js +22 -0
  528. package/test/unit/cyberia/stat-balance.test.js +69 -0
  529. package/test/unit/deploy-env-resolution.test.js +38 -0
  530. package/test/unit/deploy-log-table.test.js +518 -0
  531. package/test/unit/downloader-integrity.test.js +98 -0
  532. package/test/unit/execution-profiles.test.js +219 -0
  533. package/test/unit/file-reference-registry.test.js +141 -0
  534. package/test/unit/fleet-sync-source.test.js +149 -0
  535. package/test/unit/fs-storage-paths.test.js +596 -0
  536. package/test/unit/logger-redaction.test.js +141 -0
  537. package/test/unit/package.test.js +457 -0
  538. package/test/unit/prepare-host.test.js +382 -0
  539. package/test/unit/process-environment.test.js +18 -0
  540. package/test/unit/propagation-message.test.js +78 -0
  541. package/test/unit/redeploy-plan.test.js +24 -0
  542. package/test/unit/release-bump.test.js +474 -0
  543. package/test/unit/ssh-output-redaction.test.js +28 -0
  544. package/test/unit/start-options.test.js +46 -0
  545. package/test/unit/test-tiers.test.js +220 -0
  546. package/test/unit/zip-archive.test.js +142 -0
  547. package/vitest.config.js +66 -0
  548. package/.nycrc +0 -9
  549. package/deploy/lib/logging.sh +0 -96
  550. package/manifests/cronjobs/dd-cron/dd-cron-dns.yaml +0 -48
  551. package/manifests/mongodb/pv-pvc.yaml +0 -59
  552. package/scripts/coverall-test-cyberia.sh +0 -24
  553. package/scripts/coverall-test.sh +0 -24
  554. package/scripts/link-local-underpost-cli.sh +0 -6
  555. package/src/api/cyberia-instance/cyberia-fallback-default-items.js +0 -63
  556. package/src/api/user/user.build.js +0 -16
  557. package/src/cli/env.js +0 -177
  558. package/src/client/components/core/Blockchain.js +0 -41
  559. package/src/client/components/core/Blog.js +0 -9
  560. package/src/client/components/core/KeyboardAvoidance.js +0 -145
  561. package/src/client/components/cyberia/FallbackWorldEngineCyberia.js +0 -368
  562. package/src/client/public/default/assets/background/dark.jpg +0 -0
  563. package/src/client/public/default/assets/background/white0-min.jpg +0 -0
  564. package/src/client/public/default/assets/background/white0.jpg +0 -0
  565. package/src/client/public/doc/favicon.ico +0 -0
  566. package/src/client/public/doc/sitemap +0 -148
  567. package/src/server/downloader.js +0 -73
  568. package/src/server/environment.js +0 -98
package/CLI-HELP.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## Underpost CLI
2
2
 
3
- > underpost ci/cd cli v3.3.0
3
+ > underpost ci/cd cli v3.3.76
4
4
 
5
5
  **Usage:** `underpost [options] [command]`
6
6
 
@@ -9,6 +9,7 @@
9
9
  | Option | Description |
10
10
  | --- | --- |
11
11
  | `-V, --version` | output the version number |
12
+ | `--profile <profile>` | Execution profile. One of: LIVE_CLUSTER, HERMETIC_BUILD, OFFLINE_DRY_RUN. LIVE_CLUSTER Full access: cluster and host mutation permitted. HERMETIC_BUILD Build outputs only: no cluster, host or network side effects. OFFLINE_DRY_RUN Nothing executes; every command is reported as intent. |
12
13
  | `-h, --help` | display help for command |
13
14
 
14
15
  ### Commands
@@ -22,30 +23,33 @@
22
23
  | [`pull`](#underpost-pull) | Pulls the latest changes from a specified GitHub repository. |
23
24
  | [`cmt`](#underpost-cmt) | Manages commits to a GitHub repository, supporting various commit types and options. |
24
25
  | [`push`](#underpost-push) | Pushes committed changes from a local repository to a remote GitHub repository. |
25
- | [`env`](#underpost-env) | Sets environment variables and configurations related to a specific deployment ID. |
26
26
  | [`static`](#underpost-static) | Manages static build of page, bundles, and documentation with comprehensive customization options. |
27
- | [`config`](#underpost-config) | Manages Underpost configurations using various operators. |
28
27
  | [`root`](#underpost-root) | Displays the root path of the npm installation. |
29
28
  | [`ip`](#underpost-ip) | Displays the current public machine IP addresses. |
30
29
  | [`cluster`](#underpost-cluster) | Manages Kubernetes clusters, defaulting to Kind cluster initialization. |
31
30
  | [`deploy`](#underpost-deploy) | Manages application deployments, defaulting to deploying development pods. |
32
- | [`secret`](#underpost-secret) | Manages secrets for various platforms. |
31
+ | [`secret`](#underpost-secret) | Workload secret store: SOPS/Age encrypted credentials projected as Kubernetes Secrets. |
32
+ | [`host`](#underpost-host) | Host configuration: the node-level operational environment shared by the cluster. |
33
+ | [`app`](#underpost-app) | Application environment: one deployment's runtime configuration. |
34
+ | [`state`](#underpost-state) | Runtime state: live container execution state, health and metrics, exported off-cluster. |
33
35
  | [`image`](#underpost-image) | Manages Docker images, including building, saving, and loading into Kubernetes clusters. |
34
36
  | [`install`](#underpost-install) | Quickly imports Underpost npm dependencies by copying them. |
35
37
  | [`db`](#underpost-db) | Manages database operations with support for MariaDB and MongoDB, including import/export, multi-pod targeting, and Git integration. |
36
38
  | [`metadata`](#underpost-metadata) | Manages cluster metadata operations, including import and export. |
37
39
  | [`cron`](#underpost-cron) | Manages cron jobs: execute jobs directly or generate and apply K8s CronJob manifests. |
38
- | [`fs`](#underpost-fs) | Manages file storage, defaulting to file upload operations. |
39
- | [`test`](#underpost-test) | Manages and runs tests, defaulting to the current Underpost default test suite. |
40
- | [`monitor`](#underpost-monitor) | Manages health server monitoring for specified deployments. |
41
- | [`ssh`](#underpost-ssh) | Manages SSH credentials and sessions for remote access to cluster nodes or services. |
40
+ | [`fs`](#underpost-fs) | Uploads, pulls, or deletes Cloudinary assets and synchronizes the selected storage manifest. |
41
+ | [`monitor`](#underpost-monitor) | Manages health server monitoring, the cluster observability stack, and host dashboards. |
42
+ | [`event`](#underpost-event) | Dispatches operational events and provisions the monitoring rules that trigger them. |
43
+ | [`ssh`](#underpost-ssh) | Manages cluster scoped SSH credentials and sessions for remote access to cluster nodes or services. Users are registered in engine-private/deploy/conf.users.json and keys are stored in engine-private/deploy/users/<user>. |
42
44
  | [`wireguard`](#underpost-wireguard) | Manages the WireGuard L3 hub-and-spoke transport and the HAProxy edge gateway in front of it. |
43
45
  | [`haproxy`](#underpost-haproxy) | Manages the HAProxy edge gateway over the WireGuard transport (same subsystem as `underpost wireguard`). |
44
46
  | [`vultr`](#underpost-vultr) | Meters the edge VPS bandwidth against its Vultr plan quota and blocks egress before overage accrues. |
45
47
  | [`run`](#underpost-run) | Runs specified scripts using various runners. |
48
+ | [`test`](#underpost-test) | Runs the test tiers locally, inside deployment pods, or as a cluster Job with Allure reporting. |
46
49
  | [`docker-compose`](#underpost-docker-compose) | General-purpose Docker Compose development pipeline (mirrors the Kubernetes dev stack). |
47
50
  | [`lxd`](#underpost-lxd) | Manages LXD virtual machines as K3s nodes (control plane or workers). |
48
51
  | [`baremetal`](#underpost-baremetal) | Manages baremetal server operations, including installation, database setup, commissioning, and user management. |
52
+ | [`package`](#underpost-package) | Generates the package manifests a deploy id owns, from the engine manifest and the deploy's product catalog, and installs the dependencies that catalog pins. |
49
53
  | [`release`](#underpost-release) | Release orchestrator for building new versions and deploying releases of the Underpost CLI. |
50
54
 
51
55
  ## Command reference
@@ -68,12 +72,12 @@ Initializes a new Underpost project, service, or configuration.
68
72
  | --- | --- |
69
73
  | `--deploy-id <deploy-id>` | Create deploy ID conf env files |
70
74
  | `--sub-conf <sub-conf>` | Create sub conf env files |
71
- | `--cluster` | Create deploy ID cluster files and sync to current cluster |
75
+ | `--cluster` | Initialize the base cluster deploy folder engine-private/deploy from ./conf.js |
72
76
  | `--build-repos` | Create deploy ID repositories |
73
77
  | `--build` | Build the deployment to pwa-microservices-template (requires --deploy-id) |
74
78
  | `--clean-template` | Clean the build directory (pwa-microservices-template) |
75
79
  | `--sync-conf` | Sync configuration to private repositories (requires --deploy-id) |
76
- | `--sync-start` | Sync start scripts in deploy ID package.json with root package.json (use 'dd' as --deploy-id to sync all dd.router) |
80
+ | `--sync-start` | Sync start scripts in deploy ID package.json with root package.json (use 'dd' as --deploy-id to sync all dd.routes) |
77
81
  | `--purge` | Remove deploy ID conf and all related repositories (requires --deploy-id) |
78
82
  | `--dev` | Sets the development cli context |
79
83
  | `--default-conf` | Create default deploy ID conf env files |
@@ -110,6 +114,8 @@ Builds client assets, single replicas, and/or syncs environment ports.
110
114
  | `--lite-build` | Skip full build (default is full build) |
111
115
  | `--icons-build` | Build icons |
112
116
  | `--ssr` | Rebuild only SSR views defined in conf.ssr.json, leaving client assets untouched |
117
+ | `--env <env>` | Target environment for the build (e.g. "production", "development"). Falls back to --dev, then NODE_ENV. |
118
+ | `--dev` | Sets the development cli context (shorthand for --env development). |
113
119
  | `-h, --help` | display help for command |
114
120
 
115
121
  ---
@@ -134,7 +140,8 @@ Initiates application servers, build pipelines, or other defined services based
134
140
  | `--run` | Starts application servers and monitors their health. |
135
141
  | `--build` | Triggers the client-side application build process. |
136
142
  | `--underpost-quickly-install` | Uses Underpost Quickly Install for dependency installation. |
137
- | `--skip-pull-base` | Skips cloning repositories, uses current workspace code directly. |
143
+ | `--skip-pull-repo-base` | Skips cloning the engine source repository, uses current workspace code directly. |
144
+ | `--skip-pull-private-repo` | Skips cloning the private configuration repository, uses the engine-private already in the workspace. |
138
145
  | `--skip-full-build` | Skips the full client bundle build during deployment. |
139
146
  | `--pull-bundle` | Downloads the pre-built client bundle from Cloudinary via pull-bundle before starting. Use together with --skip-full-build to skip the local build entirely. |
140
147
  | `--private-test-repo` | During --build, clone the private test source repo (engine-test-<id>) instead of the production engine-<id> repo. |
@@ -218,11 +225,12 @@ Manages commits to a GitHub repository, supporting various commit types and opti
218
225
  | `--hashes <hashes>` | Comma-separated list of specific file hashes of commits. |
219
226
  | `--extension <extension>` | specific file extensions of commits. |
220
227
  | `--changelog` | Print the plain changelog of the last N commits (see --from-n-commit, default 1). |
221
- | `--changelog-build` | Builds a CHANGELOG.md file based on the commit history |
228
+ | `--changelog-build` | Builds a CHANGELOG.md from the latest five versions |
222
229
  | `--changelog-min-version <version>` | Sets the minimum version limit for --changelog-build (default: 2.85.0) |
223
230
  | `--changelog-no-hash` | Excludes commit hashes from the generated changelog entries (used with --changelog-build). |
224
231
  | `--changelog-msg` | Print the sanitized, commit-ready changelog message of the last N commits (see --from-n-commit, default 1). Empty when there are no tagged entries. |
225
232
  | `--from-n-commit <n>` | Number of latest commits to include in --changelog/--changelog-msg (default: 1). |
233
+ | `--propagate-msg` | Prints the changelog payload carried by the propagation chain, read from the PROPAGATED_MESSAGE environment variable and stripped of the commit subject wrapper. Falls back to --changelog-msg over the last N commits (see --from-n-commit) when nothing was propagated. |
226
234
  | `--unpush` | With --log, automatically sets range to unpushed commits ahead of remote. |
227
235
  | `-b` | Shows the current Git branch name. |
228
236
  | `-p [branch]` | Shows the reflog for the specified branch. |
@@ -259,28 +267,6 @@ Pushes committed changes from a local repository to a remote GitHub repository.
259
267
 
260
268
  ---
261
269
 
262
- ### underpost env
263
-
264
- Sets environment variables and configurations related to a specific deployment ID.
265
-
266
- **Usage:** `underpost env [options] [deploy-id] [env] [subConf]`
267
-
268
- #### Arguments
269
-
270
- | Argument | Description |
271
- | --- | --- |
272
- | `deploy-id` | The deployment configuration ID. Use 'clean' to restore default environment settings. Use 'root' to load underpost root env. Use 'current' to get plain current deploy Id. |
273
- | `env` | Optional: The environment to set (e.g., "production", "development"). Defaults to "production". |
274
- | `subConf` | Optional: The sub configuration to set. |
275
-
276
- #### Options
277
-
278
- | Option | Description |
279
- | --- | --- |
280
- | `-h, --help` | display help for command |
281
-
282
- ---
283
-
284
270
  ### underpost static
285
271
 
286
272
  Manages static build of page, bundles, and documentation with comprehensive customization options.
@@ -324,33 +310,6 @@ Manages static build of page, bundles, and documentation with comprehensive cust
324
310
 
325
311
  ---
326
312
 
327
- ### underpost config
328
-
329
- Manages Underpost configurations using various operators.
330
-
331
- **Usage:** `underpost config [options] <operator> [key] [value]`
332
-
333
- #### Arguments
334
-
335
- | Argument | Description |
336
- | --- | --- |
337
- | `operator` | The configuration operation to perform. Options: set, delete, get, list, clean, isInsideContainer. |
338
- | `key` | Optional: The specific configuration key to manage. |
339
- | `value` | Optional: The value to set for the configuration key. |
340
-
341
- #### Options
342
-
343
- | Option | Description |
344
- | --- | --- |
345
- | `--plain` | Prints the configuration value in plain text. |
346
- | `--filter <keyword>` | Filters the list by matching key or value (only for list operation). |
347
- | `--deploy-id <deploy-id>` | Sets the deployment configuration ID for the operation context. |
348
- | `--build` | Sets the build context for the operation. |
349
- | `--copy` | Copies the configuration value to the clipboard (only for get operation). |
350
- | `-h, --help` | display help for command |
351
-
352
- ---
353
-
354
313
  ### underpost root
355
314
 
356
315
  Displays the root path of the npm installation.
@@ -397,6 +356,8 @@ Displays the current public machine IP addresses.
397
356
  | `--unblock-all-egress` | Unblocks all outbound traffic and restores default ACCEPT policy. |
398
357
  | `--block-all-ingress` | Blocks all new inbound traffic to this host (keeps established/related connections). |
399
358
  | `--unblock-all-ingress` | Unblocks all inbound traffic and restores default ACCEPT policy. |
359
+ | `--block-ingress-port <ports>` | Blocks new inbound traffic on comma-separated TCP ports, leaving the management path reachable. |
360
+ | `--unblock-ingress-port <ports>` | Withdraws the port rules --block-ingress-port installed. |
400
361
  | `--mac` | Prints the MAC address of the main network interface. |
401
362
  | `-h, --help` | display help for command |
402
363
 
@@ -426,6 +387,7 @@ Manages Kubernetes clusters, defaulting to Kind cluster initialization.
426
387
  | `--service-host <host>` | Set custom host/IP for exposed MongoDB and Valkey clients. |
427
388
  | `--postgresql` | Initializes the cluster with a PostgreSQL statefulset. |
428
389
  | `--mongodb4` | Initializes the cluster with a MongoDB 4.4 service. |
390
+ | `--mongo-express` | Deploys the mongo-express web client for inspecting the MongoDB statefulset databases and collections. Reuses the mongodb-secret credentials, and drops them when the deployed mongod runs without --auth. Combine with --node-port to expose it on the node network. |
429
391
  | `--valkey` | Initializes the cluster with a Valkey service. |
430
392
  | `--ipfs` | Initializes the cluster with an ipfs-cluster statefulset. |
431
393
  | `--contour` | Initializes the cluster with Project Contour base HTTPProxy and Envoy. |
@@ -433,15 +395,15 @@ Manages Kubernetes clusters, defaulting to Kind cluster initialization.
433
395
  | `--gateway-class <name>` | GatewayClass name to provision (default "eg"). |
434
396
  | `--ingress-node <node-name>` | Dedicated node for underpost-ingress when both routing stacks coexist. Workload placement flags do not move it. |
435
397
  | `--node-port` | Exposes enabled ready services (e.g. MongoDB 4.4, Valkey) to the host/public network via their NodePort Service manifest. |
436
- | `--node-selector <k8s-node-name>` | Pins the just-deployed StatefulSet (MongoDB 4.4 / Valkey) to the given Kubernetes node once it is ready (via a kubernetes.io/hostname nodeSelector). |
398
+ | `--node-name <k8s-node-name>` | Pins the just-deployed workload (MongoDB 4.4 / Valkey StatefulSets, the observability Deployments) to the given Kubernetes node once it is ready, via a kubernetes.io/hostname nodeSelector. |
437
399
  | `--cert-manager` | Initializes the cluster with a Let's Encrypt production ClusterIssuer. |
438
400
  | `--dedicated-gpu` | Initializes the cluster with dedicated GPU base resources and environment settings. |
439
401
  | `--ns-use <ns-name>` | Switches the current Kubernetes context to the specified namespace (creates if it doesn't exist). |
440
402
  | `--kubeadm` | Initializes the cluster using kubeadm for control plane management. |
441
403
  | `--pod-network-cidr <cidr>` | Sets custom pod network CIDR for kubeadm cluster initialization (defaults to "192.168.0.0/16"). |
442
404
  | `--control-plane-endpoint <endpoint>` | Sets custom control plane endpoint for kubeadm cluster initialization (defaults to "localhost:6443"). |
443
- | `--grafana` | Initializes the cluster with a Grafana deployment. |
444
- | `--prom [hosts]` | Initializes the cluster with a Prometheus Operator deployment and monitor scrap for specified hosts. |
405
+ | `--grafana` | Initializes the cluster with the observability stack (Prometheus, Alertmanager, Blackbox Exporter, Grafana). Equivalent to --prom; both converge the one stack. |
406
+ | `--prom [hosts]` | Initializes the cluster with the observability stack. Scrape targets are derived from each deploy conf.server.json; the optional comma-separated hosts are scraped at /metrics in addition to them. |
445
407
  | `--dev` | Initializes a development-specific cluster configuration. |
446
408
  | `--list-pods` | Displays detailed information about all pods. |
447
409
  | `--pull-image` | Sets an optional associated image to pull during initialization. |
@@ -521,36 +483,110 @@ Manages application deployments, defaulting to deploying development pods.
521
483
 
522
484
  ### underpost secret
523
485
 
524
- Manages secrets for various platforms.
486
+ Workload secret store: SOPS/Age encrypted credentials projected as Kubernetes Secrets.
487
+
488
+ **Usage:** `underpost secret [options] <action>`
489
+
490
+ #### Arguments
491
+
492
+ | Argument | Description |
493
+ | --- | --- |
494
+ | `action` | Action to run. One of: setup, load, publish, apply, status, rotate, clean. setup Onboards the domain: provisions whatever it needs, then converges it. Idempotent. load Loads the durable source into the local runtime environment. publish Writes the local runtime environment into the durable source. apply Projects the durable source into the live cluster. status Read-only report of the domain: sources, keys, and drift from the cluster. rotate Replaces the current projection or encryption identity. clean Withdraws the domain traces from the local filesystem. |
495
+
496
+ #### Options
497
+
498
+ | Option | Description |
499
+ | --- | --- |
500
+ | `--env <env>` | Target environment: development \| production \| test (default: production). |
501
+ | `--namespace <namespace>` | Kubernetes namespace to act on (default: default). |
502
+ | `--args <key=value-list>` | Comma-separated domain parameters, e.g. `names=postgres-secret`, `recipient=age1...`, `sub-conf=nexodev`. |
503
+ | `--dry-run` | Reports what the action would change without changing anything. |
504
+ | `--force` | Confirms the irreversible variant of the action. |
505
+ | `-h, --help` | display help for command |
506
+
507
+ ---
508
+
509
+ ### underpost host
525
510
 
526
- **Usage:** `underpost secret [options] [platform]`
511
+ Host configuration: the node-level operational environment shared by the cluster.
512
+
513
+ **Usage:** `underpost host [options] <action> [key] [value]`
527
514
 
528
515
  #### Arguments
529
516
 
530
517
  | Argument | Description |
531
518
  | --- | --- |
532
- | `platform` | The secret management platform. Options: underpost, sops, sanitizeSecretEnvFile, globalSecretClean. Defaults to "sops". (default: "sops") |
519
+ | `action` | Action to run. One of: setup, load, publish, apply, status, rotate, clean, get, set, delete, list. setup Onboards the domain: provisions whatever it needs, then converges it. Idempotent. load Loads the durable source into the local runtime environment. publish Writes the local runtime environment into the durable source. apply Projects the durable source into the live cluster. status Read-only report of the domain: sources, keys, and drift from the cluster. rotate Replaces the current projection or encryption identity. clean Withdraws the domain traces from the local filesystem. get\|set\|delete\|list Key-level access to the store this domain owns. |
520
+ | `key` | Key to act on, for the key-level operators. |
521
+ | `value` | Value to write, for the `set` operator. |
533
522
 
534
523
  #### Options
535
524
 
536
525
  | Option | Description |
537
526
  | --- | --- |
538
- | `--init` | Initializes the secrets platform environment. |
539
- | `--create-from-file <path-env-file>` | Creates secrets from a specified environment file. |
540
- | `--create-from-env` | Creates secrets from container environment variables (envFrom: secretRef). |
541
- | `--global-clean` | Removes all filesystem traces of secrets (engine-private, .env, conf cache). |
542
- | `--list` | Lists all available secrets for the platform. |
543
- | `--encrypt <plaintext-path>` | Encrypts a plaintext Secret manifest into the Git-tracked SOPS store and shreds the source (sops platform). |
544
- | `--apply` | Decrypts stored SOPS manifests and streams them into kubectl apply, without writing plaintext to disk (sops platform). |
545
- | `--namespace <namespace>` | Kubernetes namespace for secret operations (defaults to "default"). |
546
- | `--install-tools` | Installs the sops and age host binaries only, without running a full cluster host initialization. |
547
- | `--rotate` | Re-keys every stored SOPS manifest onto --recipient. Secret values are unchanged, so no workload restart is needed. |
548
- | `--recipient <age-public-key>` | Incoming Age public recipient for --rotate. |
549
- | `--prune-recipients` | With --rotate, makes --recipient the only recipient, revoking every previous key (use after a key compromise). Requires --force, and revokes CI/CD keys too unless they are named in --keep-recipients. |
550
- | `--keep-recipients <age-public-keys>` | Comma-separated recipients to retain while --prune-recipients revokes the rest (e.g. the CI/CD key). |
551
- | `--purge <secret-name>` | Emergency removal: deletes the live Kubernetes Secret and takes its encrypted manifest out of the store. |
552
- | `--force` | Confirms the irreversible variant: deletes the manifest instead of archiving it (--purge), revokes recipients (--rotate --prune-recipients), or replaces an existing manifest (--encrypt). |
553
- | `--dry-run` | Reports what --apply, --rotate, or --purge would do without changing anything. |
527
+ | `--env <env>` | Target environment: development \| production \| test (default: production). |
528
+ | `--namespace <namespace>` | Kubernetes namespace to act on (default: default). |
529
+ | `--args <key=value-list>` | Comma-separated domain parameters, e.g. `names=postgres-secret`, `recipient=age1...`, `sub-conf=nexodev`. |
530
+ | `--dry-run` | Reports what the action would change without changing anything. |
531
+ | `--force` | Confirms the irreversible variant of the action. |
532
+ | `--plain` | Prints the value in plain text (get). |
533
+ | `--filter <keyword>` | Filters by matching key or value (list). |
534
+ | `--copy` | Copies the value to the clipboard (get). |
535
+ | `-h, --help` | display help for command |
536
+
537
+ ---
538
+
539
+ ### underpost app
540
+
541
+ Application environment: one deployment's runtime configuration.
542
+
543
+ **Usage:** `underpost app [options] <action>`
544
+
545
+ #### Arguments
546
+
547
+ | Argument | Description |
548
+ | --- | --- |
549
+ | `action` | Action to run. One of: setup, load, publish, apply, status, rotate, clean. setup Onboards the domain: provisions whatever it needs, then converges it. Idempotent. load Loads the durable source into the local runtime environment. publish Writes the local runtime environment into the durable source. apply Projects the durable source into the live cluster. status Read-only report of the domain: sources, keys, and drift from the cluster. rotate Replaces the current projection or encryption identity. clean Withdraws the domain traces from the local filesystem. |
550
+
551
+ #### Options
552
+
553
+ | Option | Description |
554
+ | --- | --- |
555
+ | `--env <env>` | Target environment: development \| production \| test (default: production). |
556
+ | `--namespace <namespace>` | Kubernetes namespace to act on (default: default). |
557
+ | `--args <key=value-list>` | Comma-separated domain parameters, e.g. `names=postgres-secret`, `recipient=age1...`, `sub-conf=nexodev`. |
558
+ | `--dry-run` | Reports what the action would change without changing anything. |
559
+ | `--force` | Confirms the irreversible variant of the action. |
560
+ | `-h, --help` | display help for command |
561
+
562
+ ---
563
+
564
+ ### underpost state
565
+
566
+ Runtime state: live container execution state, health and metrics, exported off-cluster.
567
+
568
+ **Usage:** `underpost state [options] <action> [key] [value]`
569
+
570
+ #### Arguments
571
+
572
+ | Argument | Description |
573
+ | --- | --- |
574
+ | `action` | Action to run. One of: setup, load, publish, apply, status, rotate, clean, get, set, delete, list. setup Onboards the domain: provisions whatever it needs, then converges it. Idempotent. load Loads the durable source into the local runtime environment. publish Writes the local runtime environment into the durable source. apply Projects the durable source into the live cluster. status Read-only report of the domain: sources, keys, and drift from the cluster. rotate Replaces the current projection or encryption identity. clean Withdraws the domain traces from the local filesystem. get\|set\|delete\|list Key-level access to the store this domain owns. |
575
+ | `key` | Key to act on, for the key-level operators. |
576
+ | `value` | Value to write, for the `set` operator. |
577
+
578
+ #### Options
579
+
580
+ | Option | Description |
581
+ | --- | --- |
582
+ | `--env <env>` | Target environment: development \| production \| test (default: production). |
583
+ | `--namespace <namespace>` | Kubernetes namespace to act on (default: default). |
584
+ | `--args <key=value-list>` | Comma-separated domain parameters, e.g. `names=postgres-secret`, `recipient=age1...`, `sub-conf=nexodev`. |
585
+ | `--dry-run` | Reports what the action would change without changing anything. |
586
+ | `--force` | Confirms the irreversible variant of the action. |
587
+ | `--plain` | Prints the value in plain text (get). |
588
+ | `--filter <keyword>` | Filters by matching key or value (list). |
589
+ | `--copy` | Copies the value to the clipboard (get). |
554
590
  | `-h, --help` | display help for command |
555
591
 
556
592
  ---
@@ -624,7 +660,6 @@ Manages database operations with support for MariaDB and MongoDB, including impo
624
660
  | `--pod-name <pod-name>` | Comma-separated list of pod names or patterns (supports wildcards like "mariadb-*"). |
625
661
  | `--all-pods` | Target all matching pods instead of just the first one. |
626
662
  | `--primary-pod` | Automatically detect and use MongoDB primary pod (MongoDB only). |
627
- | `--primary-pod-ensure <pod-name>` | Ensure setup of MongoDB replica set primary pod before operations. |
628
663
  | `--stats` | Display database statistics (collection/table names with document/row counts). |
629
664
  | `--collections <collections>` | Comma-separated list of database collections to operate on. |
630
665
  | `--out-path <out-path>` | Specifies a custom output path for backups. |
@@ -698,7 +733,7 @@ Manages cron jobs: execute jobs directly or generate and apply K8s CronJob manif
698
733
  | `--setup-start` | Updates deploy-list package.json start script and generates+applies its K8s CronJob manifests. |
699
734
  | `--namespace <namespace>` | Kubernetes namespace for the CronJob resources (default: "default"). |
700
735
  | `--image <image>` | Custom container image for the CronJob pods. |
701
- | `--node-name <node-name>` | Pins the CronJob pods to this node via a kubernetes.io/hostname nodeSelector. |
736
+ | `--node-name <node-name>` | Pins the CronJob pods to this node via a kubernetes.io/hostname nodeSelector. With --apply, defaults to this machine when the cluster knows it as a node, because the pods mount its checkout. |
702
737
  | `--git` | Pass --git flag to cron job execution. |
703
738
  | `--cmd <cmd>` | Optional pre-script commands to run before cron execution. |
704
739
  | `--dev` | Use local ./ base path instead of global underpost installation. |
@@ -713,7 +748,7 @@ Manages cron jobs: execute jobs directly or generate and apply K8s CronJob manif
713
748
 
714
749
  ### underpost fs
715
750
 
716
- Manages file storage, defaulting to file upload operations.
751
+ Uploads, pulls, or deletes Cloudinary assets and synchronizes the selected storage manifest.
717
752
 
718
753
  **Usage:** `underpost fs [options] [path]`
719
754
 
@@ -721,61 +756,40 @@ Manages file storage, defaulting to file upload operations.
721
756
 
722
757
  | Argument | Description |
723
758
  | --- | --- |
724
- | `path` | The absolute or relative directory path for file operations. |
759
+ | `path` | Selects one file or all files below a directory. Required unless --tracked is set. |
725
760
 
726
761
  #### Options
727
762
 
728
763
  | Option | Description |
729
764
  | --- | --- |
730
- | `--rm` | Removes the specified file. |
731
- | `--git` | Displays current Git changes related to file storage. |
732
- | `--recursive` | Uploads files recursively from the specified path. |
733
- | `--deploy-id <deploy-id>` | Specifies the deployment configuration ID for file operations. |
734
- | `--pull` | Downloads the specified file. |
765
+ | `--rm` | Deletes selected remote assets and their manifest entries. |
766
+ | `--git` | Restricts filesystem selection to Git-tracked files. Does not change Git state. |
767
+ | `--recursive` | Compatibility option. Directories always select files recursively. |
768
+ | `--tracked` | Selects only manifest entries. An optional path limits their scope. |
769
+ | `--deploy-id <deploy-id>` | Selects the deployment configuration. |
770
+ | `--pull` | Downloads selected manifest assets. Use --tracked to restore missing local files. |
735
771
  | `--omit-unzip` | With --pull, keeps the downloaded .zip file and skips extraction. |
736
- | `--force` | Forces the action, overriding any warnings or conflicts. |
737
- | `--storage-file-path <storage-file-path>` | Specifies a custom file storage path. |
738
- | `-h, --help` | display help for command |
739
-
740
- ---
741
-
742
- ### underpost test
743
-
744
- Manages and runs tests, defaulting to the current Underpost default test suite.
745
-
746
- **Usage:** `underpost test [options] [deploy-list]`
747
-
748
- #### Arguments
749
-
750
- | Argument | Description |
751
- | --- | --- |
752
- | `deploy-list` | A comma-separated list of deployment IDs (e.g., "default-a,default-b"). |
753
-
754
- #### Options
755
-
756
- | Option | Description |
757
- | --- | --- |
758
- | `--itc` | Executes tests within the container execution context. |
759
- | `--sh` | Copies the container entrypoint shell command to the clipboard. |
760
- | `--logs` | Displays container logs for test debugging. |
761
- | `--pod-name <pod-name>` | Optional: Specifies the pod name for test execution. |
762
- | `--pod-status <pod-status>` | Optional: Filters tests by pod status. |
763
- | `--kind-type <kind-type>` | Optional: Specifies the Kind cluster type for tests. |
772
+ | `--force` | Overwrites remote uploads or local downloads. Does not change selection. |
773
+ | `--storage-id <sub-id>` | Selects storage.<sub-id>.json. The default is storage.json. |
774
+ | `--key <path>` | Selects one exact manifest key within the path scope and filters. |
775
+ | `--from-key <path>` | Starts an inclusive range in manifest key order. |
776
+ | `--to-key <path>` | Ends an inclusive range. The default start is the first manifest key. |
777
+ | `--key-regex <pattern>` | Filters manifest keys by a JavaScript regular expression. |
764
778
  | `-h, --help` | display help for command |
765
779
 
766
780
  ---
767
781
 
768
782
  ### underpost monitor
769
783
 
770
- Manages health server monitoring for specified deployments.
784
+ Manages health server monitoring, the cluster observability stack, and host dashboards.
771
785
 
772
- **Usage:** `underpost monitor [options] <deploy-id> [env]`
786
+ **Usage:** `underpost monitor [options] [deploy-id] [env]`
773
787
 
774
788
  #### Arguments
775
789
 
776
790
  | Argument | Description |
777
791
  | --- | --- |
778
- | `deploy-id` | The deployment configuration ID to monitor. |
792
+ | `deploy-id` | The deployment configuration ID to monitor. With the observability flags it selects which deploys are scraped; "dd" covers every deploy in dd.routes. (default: "dd") |
779
793
  | `env` | Optional: The environment to monitor (e.g., "development", "production"). Defaults to "development". |
780
794
 
781
795
  #### Options
@@ -797,13 +811,70 @@ Manages health server monitoring for specified deployments.
797
811
  | `--versions <deployment-versions>` | Specifies the deployment versions to monitor. eg. "blue,green", "green" |
798
812
  | `--ready-deployment` | Run in ready deployment monitor mode. |
799
813
  | `--promote` | Promotes the deployment after monitoring. |
814
+ | `--observability` | Deploys or converges the cluster observability stack (Prometheus, Alertmanager, Blackbox Exporter, Grafana), ensuring the Gateway API metrics source and local-path storage provisioner are ready. |
815
+ | `--sync-prom` | Regenerates the scrape configuration, alert rules and Alertmanager route from the live deploy configuration and event registry, applies Grafana admin credentials, then reloads or rolls only the affected component. |
816
+ | `--events <event-ids>` | Comma-separated event ids to provision; empty provisions every registered event. |
817
+ | `--webhook-url <url>` | URL Alertmanager delivers events to (defaults to the node address of `event --serve`). |
818
+ | `--extra-targets <targets>` | Comma-separated additional "host:port" scrape targets. |
819
+ | `--metrics-server` | Installs the Kubernetes metrics-server (kubectl top / HPA resource API). Skipped on K3s, which bundles its own, unless --force. |
820
+ | `--cockpit` | Installs and enables the Cockpit KVM dashboard on this host (cockpit, cockpit-machines, libvirt) and opens its firewall service. |
821
+ | `--cockpit-stop` | Stops and disables the Cockpit KVM dashboard and closes its firewall service. |
822
+ | `--grafana-host <host>` | Publishes Grafana at https://<host>/grafana through the edge Gateway that already serves that hostname. |
823
+ | `--node-port` | Publishes Grafana on the node's LAN address (port 32300). |
824
+ | `--expose-grafana` | Republishes Grafana with --grafana-host / --node-port without redeploying the stack. |
825
+ | `--webhook-token` | Prints the shared event webhook token, to persist as UNDERPOST_EVENT_TOKEN in the cron deploy env. |
826
+ | `--node-name <k8s-node-name>` | Pins every monitoring workload to this node; moving Grafana deletes and recreates its node-local data. |
827
+ | `--kubeadm` | Treats the cluster as kubeadm when resolving node and host addresses. |
828
+ | `--kind` | Treats the cluster as Kind (Docker nodes) when resolving node and host addresses. |
829
+ | `--k3s` | Treats the cluster as K3s when resolving node and host addresses. |
830
+ | `--force` | Confirms an install that would replace a bundled component (e.g. --metrics-server on K3s). |
831
+ | `--dev` | Sets the development cli context (scrapes over HTTP, defaults the cluster type to Kind). |
832
+ | `-h, --help` | display help for command |
833
+
834
+ ---
835
+
836
+ ### underpost event
837
+
838
+ Dispatches operational events and provisions the monitoring rules that trigger them.
839
+
840
+ **Usage:** `underpost event [options] [event-id]`
841
+
842
+ #### Arguments
843
+
844
+ | Argument | Description |
845
+ | --- | --- |
846
+ | `event-id` | The operational event to dispatch. Options: wireguard-server-down,wireguard-spoke-down,public-ingress-down,node-cpu-limit-exceeded,node-memory-limit-exceeded,hub-bandwidth-limit-exceeded,node-disk-limit-exceeded,node-network-traffic-exceeded. |
847
+
848
+ #### Options
849
+
850
+ | Option | Description |
851
+ | --- | --- |
852
+ | `--deploy` | Merges the event into the set already deployed in the cluster and republishes the monitoring configuration. |
853
+ | `--undeploy` | Removes the event from the deployed set and republishes without it. |
854
+ | `--suspend-events <state-file>` | Saves the exact deployed event set and temporarily republishes observability without event probes or alerts. |
855
+ | `--resume-events <state-file>` | Restores and resynchronizes the exact event set saved by --suspend-events, then removes the state file. |
856
+ | `--serve` | Runs the Alertmanager webhook receiver in the foreground (use --service to supervise it). |
857
+ | `--service` | Installs the receiver on a WireGuard control node as the underpost-event systemd unit. It remains available while the tunnel is down. |
858
+ | `--service-stop` | Stops, disables and removes the underpost-event systemd unit. |
859
+ | `--service-status` | Reports whether the underpost-event unit is active and enabled. |
860
+ | `--list` | Lists the registered events with their resolved probe targets. |
861
+ | `--port <port>` | Listening port for --serve and the generated unit (default: 39099). |
862
+ | `--cooldown-ms <ms>` | Minimum interval between two dispatches of one event in --serve (default: 10000). |
863
+ | `--spoke <spoke-id>` | Spoke to remediate when dispatching wireguard-spoke-down by hand; a webhook takes it from the alert labels. |
864
+ | `--nodes <node-names>` | Comma-separated node documents to act on — hubs for wireguard-server-down, peers for wireguard-spoke-down. Empty covers every registered hub, or every peer of this node hub. |
865
+ | `--namespace <namespace>` | Kubernetes namespace holding the observability stack. Defaults to "default". |
866
+ | `--webhook-url <url>` | URL Alertmanager delivers to, written into the generated route with --deploy. |
867
+ | `--dev` | Sets the development cli context. |
868
+ | `--dry-run` | Reports the remediation the event would run without executing it. |
869
+ | `--no-notify` | Skips the operational alert declared in engine-private/deploy/conf.event.json. |
870
+ | `--e2e-test` | Rehearses the event against the live edge: breaks the real subject, waits for the probe to fail, runs the remediation, and verifies the notification was actually sent. |
800
871
  | `-h, --help` | display help for command |
801
872
 
802
873
  ---
803
874
 
804
875
  ### underpost ssh
805
876
 
806
- Manages SSH credentials and sessions for remote access to cluster nodes or services.
877
+ Manages cluster scoped SSH credentials and sessions for remote access to cluster nodes or services. Users are registered in engine-private/deploy/conf.users.json and keys are stored in engine-private/deploy/users/<user>.
807
878
 
808
879
  **Usage:** `underpost ssh [options]`
809
880
 
@@ -811,7 +882,6 @@ Manages SSH credentials and sessions for remote access to cluster nodes or servi
811
882
 
812
883
  | Option | Description |
813
884
  | --- | --- |
814
- | `--deploy-id <deploy-id>` | Sets deploy id context for ssh operations. |
815
885
  | `--generate` | Generates new ssh credential and stores it in current private keys file storage. |
816
886
  | `--user <user>` | Sets custom ssh user |
817
887
  | `--password <password>` | Sets custom ssh password |
@@ -830,8 +900,6 @@ Manages SSH credentials and sessions for remote access to cluster nodes or servi
830
900
  | `--key-test` | Tests the SSH key using ssh-keygen. |
831
901
  | `--stop` | Stops the SSH service. |
832
902
  | `--status` | Checks the status of the SSH service. |
833
- | `--connect-uri` | Displays the connection URI. |
834
- | `--copy` | Copies the connection URI to clipboard. |
835
903
  | `-h, --help` | display help for command |
836
904
 
837
905
  ---
@@ -846,35 +914,51 @@ Manages the WireGuard L3 hub-and-spoke transport and the HAProxy edge gateway in
846
914
 
847
915
  | Option | Description |
848
916
  | --- | --- |
849
- | `--deploy-id <deploy-id>` | Deploy IDs whose conf.server.json/conf.instances.json define the routes. Accepts one id or a comma-separated list; defaults to "dd", every deploy in dd.router, because the edge holds one pair of map files for the whole cluster. |
917
+ | `--deploy-id <deploy-id>` | Deploy IDs whose conf.server.json/conf.instances.json define the routes. Accepts one id or a comma-separated list; defaults to "dd", every deploy in dd.routes, because the edge holds one pair of map files for the whole cluster. |
850
918
  | `--interface <name>` | WireGuard interface name (default: "wg0"). |
851
919
  | `--wireguard-install` | Installs the wireguard-tools, haproxy and iptables host packages. |
852
920
  | `--wireguard-setup` | Generates keys, builds the interface config, and applies local network rules. |
853
- | `--server` | Configures this node as the hub endpoint accepting inbound tunnel traffic. |
854
- | `--client` | Configures this node as a spoke endpoint maintaining an outbound tunnel. |
921
+ | `--node-config` | Writes a node identity under deploy/nodes, named after the machine it describes. |
922
+ | `--node-name <node-name>` | Node record to write; defaults to this hostname, which is what runtime commands resolve their identity by. |
923
+ | `--node-role <role>` | Machine role: control, worker, or hub. |
924
+ | `--hub-host <ipv4>` | Static public IPv4 key of the hub topology this node belongs to. |
855
925
  | `--port <port>` | WireGuard UDP listening port (default: 51820). |
856
- | `--cidr <cidr>` | Hub interface address with prefix when used with --server (e.g. "10.0.0.1/24"); the overlay subnet a spoke routes back through the hub when used with --client (default: "10.0.0.0/24"). |
857
- | `--peer-ip <ip>` | Tunnel address of the target spoke. Required with --client and --peer-add. |
858
- | `--endpoint <host:port>` | Hub host and port a spoke dials. Required with --client. |
859
- | `--public-key <key>` | Hub public key with --client; spoke public key with --peer-add. |
926
+ | `--cidr <cidr>` | Hub interface address on a hub; overlay subnet routed through the hub on control and worker nodes. |
927
+ | `--peer-ip <ip>` | Tunnel address used by --peer-add or to update the selected node during setup. |
928
+ | `--peer-id <peer-id>` | Topology peer represented by a control or worker node identity. |
929
+ | `--public-key <key>` | Public key used by off-host topology authoring or --peer-add. |
860
930
  | `--peer-add <peer-id>` | Registers a spoke and applies it to the running hub without a restart. |
861
- | `--peer-remove <peer-id>` | Removes a spoke from the registry and from the running hub. |
931
+ | `--peer-remove <peer-id>` | Removes a peer from the selected topology and running hub. |
862
932
  | `--allowed-ips <cidrs>` | Comma-separated CIDRs routed to the spoke (e.g. "10.0.0.2/32,192.168.10.0/24"). |
863
933
  | `--hosts <hosts>` | Comma-separated hostnames bound to the spoke, overriding instance resolution. |
864
934
  | `--instances <instances>` | Comma-separated conf.instances.json ids bound to the spoke. |
935
+ | `--management-host <host>` | Stable LAN or management address used to repair this peer when its tunnel address is unavailable. |
865
936
  | `--default` | Marks the spoke as the fallback for hostnames that match no other binding. |
866
937
  | `--haproxy-setup` | Installs HAProxy, publishes the current routes, and enables the daemon. |
867
938
  | `--haproxy-sync` | Recompiles the SNI/Host maps from deploy config and hot-reloads HAProxy. |
868
939
  | `--status` | Prints the whole edge context without changing anything: role, interface, tunnel address, public key, daemon states, peers with their bindings and link health, and the resolved routing. |
869
- | `--build-conf` | Writes only engine-private/deploy/conf.wireguard.json and touches no host state. Combine with --wireguard-setup / --peer-add / --peer-remove to author the topology off-box; alone it normalizes and validates the existing registry. |
940
+ | `--build-conf` | Writes only engine-private/deploy/conf.wireguard.json and touches no host state. Combine with --wireguard-setup / --peer-add / --peer-remove to author the topology off-box; alone it normalizes and validates the existing topology. |
870
941
  | `--forward-proxy-server` | Ensures the hub HTTP/CONNECT forward proxy runs as the underpost-forward-proxy systemd service, bound to the tunnel address only (default port 1080), and returns. Authenticates every request with FORWARD_PROXY_API_KEY, so spokes can reach the internet through the VPS public address. Idempotent: re-running converges on the one service and restarts it only when the unit actually changed. |
871
- | `--forward-proxy-server-host <host>` | Address the forward proxy binds, overriding the hub tunnel address from the registry. |
942
+ | `--forward-proxy-server-host <host>` | Address the forward proxy binds, overriding the selected hub tunnel address. |
872
943
  | `--forward-proxy-server-port <port>` | Port the forward proxy binds (default: 1080). |
873
- | `--ssh-forward-port <port>` | Publishes the default spoke SSH port on this public TCP port of the hub, so CI with no fixed address can reach the cluster node (e.g. 2222). "0" closes it. Stored in the registry. |
944
+ | `--ssh-forward-port <port>` | Publishes the default spoke SSH port on this public TCP port of the hub, so CI with no fixed address can reach the cluster node (e.g. 2222). "0" closes it. Stored in hub topology. |
945
+ | `--sync` | Brings every registered node engine checkout up to date over its SSH identity: clean, pull, fix and install. |
946
+ | `--nodes <node-names>` | Comma-separated node documents --sync, --cmd, --node-exporter and --connect-uri act on. Empty covers every hub and every peer of this node hub. |
947
+ | `--connect-uri` | Prints the SSH command that reaches each node named by --nodes, joining the node document under engine-private/deploy/nodes to the management address it is registered under in engine-private/deploy/conf.users.json. Empty --nodes lists the whole fleet. |
948
+ | `--copy` | Copies the --connect-uri output to the clipboard instead of printing it. |
949
+ | `--cmd <command-list>` | Comma-separated custom commands to run on the selected nodes over their SSH identity. Given with --sync, only these run in place of the sync steps. |
950
+ | `--node-exporter` | Provisions the host metrics collector as a systemd service on the selected hub nodes, bound to their tunnel address, so machines outside the cluster report hardware metrics like every cluster node. |
951
+ | `--repo-engine <repo>` | Engine repository --sync pulls from, as owner/repo or a clone URL. Defaults to the configured account engine. |
952
+ | `--repo-engine-private <repo>` | Private engine repository --sync pulls from, as owner/repo or a clone URL. Defaults to the configured private repo derived from --repo-engine. |
874
953
  | `--wireguard-start` | Enables and starts wg-quick@<interface> and the QUIC forward. |
954
+ | `--wireguard-restart` | Restarts wg-quick@<interface> and restores the hub QUIC forward. |
875
955
  | `--wireguard-stop` | Tears down the interface and removes its transient packet rules. |
876
- | `--wireguard-reset` | Removes generated configs and packet rules, keeping the key pair and registry. |
877
- | `--wireguard-reinstall` | Full purge, package reinstall and re-key; every spoke must re-register. |
956
+ | `--check` | Waits for an active interface and a fresh handshake with its required peer. |
957
+ | `--check-timeout <seconds>` | Maximum wait for --check (default: 30). |
958
+ | `--expected-role <role>` | Refuses restart/check unless this host has the expected node role. |
959
+ | `--expected-id <peer-id>` | Refuses restart/check unless this node represents the expected peer id. |
960
+ | `--wireguard-reset` | Removes generated host state, keeping keys, topology and node identity. |
961
+ | `--wireguard-reinstall` | Full purge, package reinstall and re-key; updates the selected topology key. |
878
962
  | `--dry-run` | Prints the files and commands the run would apply, without touching the host. |
879
963
  | `-h, --help` | display help for command |
880
964
 
@@ -890,35 +974,51 @@ Manages the HAProxy edge gateway over the WireGuard transport (same subsystem as
890
974
 
891
975
  | Option | Description |
892
976
  | --- | --- |
893
- | `--deploy-id <deploy-id>` | Deploy IDs whose conf.server.json/conf.instances.json define the routes. Accepts one id or a comma-separated list; defaults to "dd", every deploy in dd.router, because the edge holds one pair of map files for the whole cluster. |
977
+ | `--deploy-id <deploy-id>` | Deploy IDs whose conf.server.json/conf.instances.json define the routes. Accepts one id or a comma-separated list; defaults to "dd", every deploy in dd.routes, because the edge holds one pair of map files for the whole cluster. |
894
978
  | `--interface <name>` | WireGuard interface name (default: "wg0"). |
895
979
  | `--wireguard-install` | Installs the wireguard-tools, haproxy and iptables host packages. |
896
980
  | `--wireguard-setup` | Generates keys, builds the interface config, and applies local network rules. |
897
- | `--server` | Configures this node as the hub endpoint accepting inbound tunnel traffic. |
898
- | `--client` | Configures this node as a spoke endpoint maintaining an outbound tunnel. |
981
+ | `--node-config` | Writes a node identity under deploy/nodes, named after the machine it describes. |
982
+ | `--node-name <node-name>` | Node record to write; defaults to this hostname, which is what runtime commands resolve their identity by. |
983
+ | `--node-role <role>` | Machine role: control, worker, or hub. |
984
+ | `--hub-host <ipv4>` | Static public IPv4 key of the hub topology this node belongs to. |
899
985
  | `--port <port>` | WireGuard UDP listening port (default: 51820). |
900
- | `--cidr <cidr>` | Hub interface address with prefix when used with --server (e.g. "10.0.0.1/24"); the overlay subnet a spoke routes back through the hub when used with --client (default: "10.0.0.0/24"). |
901
- | `--peer-ip <ip>` | Tunnel address of the target spoke. Required with --client and --peer-add. |
902
- | `--endpoint <host:port>` | Hub host and port a spoke dials. Required with --client. |
903
- | `--public-key <key>` | Hub public key with --client; spoke public key with --peer-add. |
986
+ | `--cidr <cidr>` | Hub interface address on a hub; overlay subnet routed through the hub on control and worker nodes. |
987
+ | `--peer-ip <ip>` | Tunnel address used by --peer-add or to update the selected node during setup. |
988
+ | `--peer-id <peer-id>` | Topology peer represented by a control or worker node identity. |
989
+ | `--public-key <key>` | Public key used by off-host topology authoring or --peer-add. |
904
990
  | `--peer-add <peer-id>` | Registers a spoke and applies it to the running hub without a restart. |
905
- | `--peer-remove <peer-id>` | Removes a spoke from the registry and from the running hub. |
991
+ | `--peer-remove <peer-id>` | Removes a peer from the selected topology and running hub. |
906
992
  | `--allowed-ips <cidrs>` | Comma-separated CIDRs routed to the spoke (e.g. "10.0.0.2/32,192.168.10.0/24"). |
907
993
  | `--hosts <hosts>` | Comma-separated hostnames bound to the spoke, overriding instance resolution. |
908
994
  | `--instances <instances>` | Comma-separated conf.instances.json ids bound to the spoke. |
995
+ | `--management-host <host>` | Stable LAN or management address used to repair this peer when its tunnel address is unavailable. |
909
996
  | `--default` | Marks the spoke as the fallback for hostnames that match no other binding. |
910
997
  | `--haproxy-setup` | Installs HAProxy, publishes the current routes, and enables the daemon. |
911
998
  | `--haproxy-sync` | Recompiles the SNI/Host maps from deploy config and hot-reloads HAProxy. |
912
999
  | `--status` | Prints the whole edge context without changing anything: role, interface, tunnel address, public key, daemon states, peers with their bindings and link health, and the resolved routing. |
913
- | `--build-conf` | Writes only engine-private/deploy/conf.wireguard.json and touches no host state. Combine with --wireguard-setup / --peer-add / --peer-remove to author the topology off-box; alone it normalizes and validates the existing registry. |
1000
+ | `--build-conf` | Writes only engine-private/deploy/conf.wireguard.json and touches no host state. Combine with --wireguard-setup / --peer-add / --peer-remove to author the topology off-box; alone it normalizes and validates the existing topology. |
914
1001
  | `--forward-proxy-server` | Ensures the hub HTTP/CONNECT forward proxy runs as the underpost-forward-proxy systemd service, bound to the tunnel address only (default port 1080), and returns. Authenticates every request with FORWARD_PROXY_API_KEY, so spokes can reach the internet through the VPS public address. Idempotent: re-running converges on the one service and restarts it only when the unit actually changed. |
915
- | `--forward-proxy-server-host <host>` | Address the forward proxy binds, overriding the hub tunnel address from the registry. |
1002
+ | `--forward-proxy-server-host <host>` | Address the forward proxy binds, overriding the selected hub tunnel address. |
916
1003
  | `--forward-proxy-server-port <port>` | Port the forward proxy binds (default: 1080). |
917
- | `--ssh-forward-port <port>` | Publishes the default spoke SSH port on this public TCP port of the hub, so CI with no fixed address can reach the cluster node (e.g. 2222). "0" closes it. Stored in the registry. |
1004
+ | `--ssh-forward-port <port>` | Publishes the default spoke SSH port on this public TCP port of the hub, so CI with no fixed address can reach the cluster node (e.g. 2222). "0" closes it. Stored in hub topology. |
1005
+ | `--sync` | Brings every registered node engine checkout up to date over its SSH identity: clean, pull, fix and install. |
1006
+ | `--nodes <node-names>` | Comma-separated node documents --sync, --cmd, --node-exporter and --connect-uri act on. Empty covers every hub and every peer of this node hub. |
1007
+ | `--connect-uri` | Prints the SSH command that reaches each node named by --nodes, joining the node document under engine-private/deploy/nodes to the management address it is registered under in engine-private/deploy/conf.users.json. Empty --nodes lists the whole fleet. |
1008
+ | `--copy` | Copies the --connect-uri output to the clipboard instead of printing it. |
1009
+ | `--cmd <command-list>` | Comma-separated custom commands to run on the selected nodes over their SSH identity. Given with --sync, only these run in place of the sync steps. |
1010
+ | `--node-exporter` | Provisions the host metrics collector as a systemd service on the selected hub nodes, bound to their tunnel address, so machines outside the cluster report hardware metrics like every cluster node. |
1011
+ | `--repo-engine <repo>` | Engine repository --sync pulls from, as owner/repo or a clone URL. Defaults to the configured account engine. |
1012
+ | `--repo-engine-private <repo>` | Private engine repository --sync pulls from, as owner/repo or a clone URL. Defaults to the configured private repo derived from --repo-engine. |
918
1013
  | `--wireguard-start` | Enables and starts wg-quick@<interface> and the QUIC forward. |
1014
+ | `--wireguard-restart` | Restarts wg-quick@<interface> and restores the hub QUIC forward. |
919
1015
  | `--wireguard-stop` | Tears down the interface and removes its transient packet rules. |
920
- | `--wireguard-reset` | Removes generated configs and packet rules, keeping the key pair and registry. |
921
- | `--wireguard-reinstall` | Full purge, package reinstall and re-key; every spoke must re-register. |
1016
+ | `--check` | Waits for an active interface and a fresh handshake with its required peer. |
1017
+ | `--check-timeout <seconds>` | Maximum wait for --check (default: 30). |
1018
+ | `--expected-role <role>` | Refuses restart/check unless this host has the expected node role. |
1019
+ | `--expected-id <peer-id>` | Refuses restart/check unless this node represents the expected peer id. |
1020
+ | `--wireguard-reset` | Removes generated host state, keeping keys, topology and node identity. |
1021
+ | `--wireguard-reinstall` | Full purge, package reinstall and re-key; updates the selected topology key. |
922
1022
  | `--dry-run` | Prints the files and commands the run would apply, without touching the host. |
923
1023
  | `-h, --help` | display help for command |
924
1024
 
@@ -967,7 +1067,7 @@ Runs specified scripts using various runners.
967
1067
 
968
1068
  | Argument | Description |
969
1069
  | --- | --- |
970
- | `runner-id` | The runner ID to run. Options: status,expose,dev-cluster,metadata,ipfs-expose,svc-ls,svc-rm,node-move,dev-hosts-expose,dev-hosts-restore,cluster-build,template-deploy,template-deploy-local,docker-image,clean,pull,release-deploy,ssh-deploy,ide,crypto-policy,sync,stop,tz,get-traffic,restore-mongo,ingress-refresh,instance-promote,instance,deploy-key,instance-build-manifest,ls-deployments,host-update,install-crio,dd-container,ip-info,db-client,git-conf,promote,metrics,cluster,gateway-status,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,pull-rocky-image,rmi,kill,generate-pass,sops-setup,sops-status,secret,underpost-config,gpu-env,tf-gpu-test,deploy-job,push-bundle,pull-bundle,kubeadm-wireguard,build-cluster-deployment-manifests,monitor-ui,shared-dir,shared-dir-add-user. |
1070
+ | `runner-id` | The runner ID to run. Options: status,expose,dev-cluster,metadata,ipfs-expose,svc-ls,svc-rm,node-move,cluster-build,template-deploy,template-deploy-local,docker-image,clean,pull,ssh-deploy,ide,crypto-policy,sync,net-tables,stop,tz,get-traffic,restore-mongo,ingress-refresh,instance-promote,instance,deploy-key,instance-build-manifest,ls-deployments,host-update,install-crio,dd-container,ip-info,db-client,git-conf,promote,cluster,gateway-status,deploy,disk-clean,disk-devices,disk-usage,dev,service,etc-hosts,log,ps,pid-info,background,ports,deploy-test,tf-vae-test,spark-template,kill,generate-pass,gpu-env,tf-gpu-test,deploy-job,push-bundle,pull-bundle,kubeadm-wireguard,build-cluster-deployment-manifests,monitor-ui,shared-dir,shared-dir-add-user. |
971
1071
  | `path` | The input value, identifier, or path for the operation. |
972
1072
 
973
1073
  #### Options
@@ -992,6 +1092,9 @@ Runs specified scripts using various runners.
992
1092
  | `--volume-mount-path <volume-mount-path>` | Optional: Specifies the volume mount path for test execution. |
993
1093
  | `--volume-type <volume-type>` | Optional: Specifies the volume type for test execution. |
994
1094
  | `--image-name <image-name>` | Optional: Specifies the image name for test execution. |
1095
+ | `--image <image>` | Container image the deployment pulls and runs (sync). |
1096
+ | `--runtime-image <name>` | src/runtime/<name> image family the cluster runner brings up (default "express"). |
1097
+ | `--versions <deployment-versions>` | Comma-separated blue/green deployment versions (sync); unset resolves the next colour. |
995
1098
  | `--container-name <container-name>` | Optional: Specifies the container name for test execution. |
996
1099
  | `--namespace <namespace>` | Optional: Specifies the namespace for test execution. |
997
1100
  | `--tty` | Enables TTY for the container in deploy-job. |
@@ -1027,6 +1130,7 @@ Runs specified scripts using various runners.
1027
1130
  | `--deploy-id <deploy-id>` | Sets deploy id context for the runner execution. |
1028
1131
  | `--user <user>` | Sets user context for the runner execution. |
1029
1132
  | `--hosts <hosts>` | Comma-separated list of hosts for the runner execution. |
1133
+ | `--split <mb>` | Zip part size in MB for push-bundle, or "none" to upload a single zip. Defaults to 8. |
1030
1134
  | `--instance-id <instance-id>` | Sets instance id context for the runner execution. |
1031
1135
  | `--pid <process-id>` | Sets process id context for the runner execution. |
1032
1136
  | `--timeout-response <duration>` | Sets HTTPProxy per-route response timeout (e.g., "1s", "300ms", "infinity"). |
@@ -1038,6 +1142,7 @@ Runs specified scripts using various runners.
1038
1142
  | `--gateway-class <name>` | GatewayClass name for generated Gateway manifests (default "eg"). |
1039
1143
  | `--disable-http3` | Omits the QUIC/HTTP3 listener config and the Alt-Svc advertisement from Gateway API manifests. |
1040
1144
  | `--quic-port <port>` | UDP port advertised for QUIC/HTTP3 in generated Gateway API manifests (default 443). |
1145
+ | `--repo-engine-private <repo>` | Private configuration repository the pull runner checks out, as owner/repo or a clone URL. Defaults to the private repo derived from the engine source. |
1041
1146
  | `--disable-private-conf-update` | Disables updates to private configuration during execution. |
1042
1147
  | `--logs` | Streams logs during the runner execution. |
1043
1148
  | `--monitor-status <status>` | Sets the status to monitor for pod/resource (default: "Running"). |
@@ -1058,6 +1163,42 @@ Runs specified scripts using various runners.
1058
1163
 
1059
1164
  ---
1060
1165
 
1166
+ ### underpost test
1167
+
1168
+ Runs the test tiers locally, inside deployment pods, or as a cluster Job with Allure reporting.
1169
+
1170
+ **Usage:** `underpost test [options] [suite]`
1171
+
1172
+ #### Arguments
1173
+
1174
+ | Argument | Description |
1175
+ | --- | --- |
1176
+ | `suite` | A comma-separated list of suites or tiers to run. Suites: unit, infra, app, cyberia, contracts, all. Tiers: unit, infra:1-security, infra:2-network, infra:3-cluster, infra:4-ingress, infra:5-observability, app, cyberia, contracts. Defaults to every tier, in tier order. (default: "") |
1177
+
1178
+ #### Options
1179
+
1180
+ | Option | Description |
1181
+ | --- | --- |
1182
+ | `--itc` | Runs in this execution context instead of dispatching into deployment pods. |
1183
+ | `--deploy-list <deploy-list>` | A comma-separated list of deployment IDs to run the suite inside. |
1184
+ | `--grep <pattern>` | Runs only tests whose name matches the pattern. |
1185
+ | `--watch` | Keeps the runner open and re-runs affected suites on change. |
1186
+ | `--no-coverage` | Skips coverage instrumentation and reporters. |
1187
+ | `--allure` | Writes Allure results for the cluster dashboard alongside the run. |
1188
+ | `--dashboard` | Applies the Allure dashboard to the cluster and exits. |
1189
+ | `--job` | Runs the selected suite on the cluster as a Kubernetes Job (requires --image). |
1190
+ | `--image <image>` | Image carrying the engine and its dependencies, for --job. |
1191
+ | `--node-name <node-name>` | Pins the --job pod to this node. |
1192
+ | `--host <host>` | Hostname to route the --dashboard sub-path on. |
1193
+ | `--namespace <namespace>` | Kubernetes namespace for --dashboard, --job and --deploy-list. |
1194
+ | `--dry-run` | Renders the --dashboard or --job manifests without applying them. |
1195
+ | `--pod-name <pod-name>` | Waits for this cluster object to reach --pod-status instead of running tests. |
1196
+ | `--pod-status <pod-status>` | Status --pod-name waits for (default: "Running"). |
1197
+ | `--kind-type <kind-type>` | Kind --pod-name queries (default: "pods"). |
1198
+ | `-h, --help` | display help for command |
1199
+
1200
+ ---
1201
+
1061
1202
  ### underpost docker-compose
1062
1203
 
1063
1204
  General-purpose Docker Compose development pipeline (mirrors the Kubernetes dev stack).
@@ -1185,9 +1326,9 @@ Manages baremetal server operations, including installation, database setup, com
1185
1326
  | `--no-remote-install` | Skips the controller-side remote install orchestration over SSH. |
1186
1327
  | `--worker` | Post-install infra role: join the deployed node as a Kubernetes worker (requires --control <ip>). Without this flag the node is set up as a control-plane. |
1187
1328
  | `--control <ip>` | Control-plane IP the worker node joins (used with --worker for kubeadm infra setup). |
1188
- | `--ssh-key-dir <dir>` | Directory holding the SSH key pair used for commissioning/orchestration (expects <dir>/id_rsa and <dir>/id_rsa.pub). Overrides the workflow "sshKeyDir"; defaults to engine-private/deploy. Supports a leading ~. |
1189
- | `--deploy-id <deploy-id>` | Deployment ID whose user key pair is used for SSH (key from engine-private/conf/<deploy-id>/users/<user>/id_rsa). Same user↔deployId↔key convention as the ssh command. |
1190
- | `--user <user>` | SSH user paired with --deploy-id for key resolution and the login user on an existing control-plane (defaults to root). Mirrors the ssh command --user. |
1329
+ | `--ssh-key-dir <dir>` | Directory holding the SSH key pair used for commissioning/orchestration (expects <dir>/id_rsa and <dir>/id_rsa.pub). Overrides the workflow "sshKeyDir"; defaults to engine-private/deploy/users/<user> for a non-root --user, otherwise engine-private/deploy. Supports a leading ~. |
1330
+ | `--deploy-id <deploy-id>` | Deployment ID used to resolve the private engine repo cloned onto the node (engine-<suffix>-private. |
1331
+ | `--user <user>` | SSH user whose cluster scoped key pair is used (engine-private/deploy/users/<user>/id_rsa) and the login user on an existing control-plane (defaults to root, whose key is engine-private/deploy/id_rsa). Mirrors the ssh command --user. |
1191
1332
  | `--engine-repo <url>` | Custom engine repo cloned + normalized to /home/dd/engine on the node (default: <GITHUB_USERNAME>/engine). |
1192
1333
  | `--engine-branch <branch>` | Branch of the engine repo to clone on the node. |
1193
1334
  | `--engine-private-repo <url>` | Custom private repo cloned + normalized to /home/dd/engine/engine-private on the node (default: <GITHUB_USERNAME>/engine-<id>-private). |
@@ -1219,6 +1360,31 @@ Manages baremetal server operations, including installation, database setup, com
1219
1360
 
1220
1361
  ---
1221
1362
 
1363
+ ### underpost package
1364
+
1365
+ Generates the package manifests a deploy id owns, from the engine manifest and the deploy's product catalog, and installs the dependencies that catalog pins.
1366
+
1367
+ **Usage:** `underpost package [options] [deploy-id]`
1368
+
1369
+ #### Arguments
1370
+
1371
+ | Argument | Description |
1372
+ | --- | --- |
1373
+ | `deploy-id` | Deploy id, or a comma-separated list, to act on. Defaults to every deploy id in the private configuration tree. |
1374
+
1375
+ #### Options
1376
+
1377
+ | Option | Description |
1378
+ | --- | --- |
1379
+ | `--sync` | Regenerates each deploy manifest from the engine manifest and the deploy catalog (default). |
1380
+ | `--install` | Installs the dependencies the deploy catalog pins into this checkout. |
1381
+ | `--rename <name>` | Renames this checkout's package, in its manifest and its lockfile. |
1382
+ | `--set-repo <owner/repo>` | Points this checkout's package at a repository. |
1383
+ | `--dry-run` | For --sync: resolves the manifests without writing them. |
1384
+ | `-h, --help` | display help for command |
1385
+
1386
+ ---
1387
+
1222
1388
  ### underpost release
1223
1389
 
1224
1390
  Release orchestrator for building new versions and deploying releases of the Underpost CLI.