cyberia 3.0.2 → 3.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (182) hide show
  1. package/{.env.production → .env.example} +20 -2
  2. package/.github/workflows/engine-cyberia.cd.yml +41 -10
  3. package/.github/workflows/engine-cyberia.ci.yml +53 -14
  4. package/.github/workflows/ghpkg.ci.yml +1 -1
  5. package/.github/workflows/gitlab.ci.yml +1 -1
  6. package/.github/workflows/hardhat.ci.yml +82 -0
  7. package/.github/workflows/npmpkg.ci.yml +37 -8
  8. package/.github/workflows/publish.ci.yml +5 -5
  9. package/.github/workflows/publish.cyberia.ci.yml +5 -5
  10. package/.github/workflows/pwa-microservices-template-page.cd.yml +3 -3
  11. package/.github/workflows/pwa-microservices-template-test.ci.yml +1 -1
  12. package/.github/workflows/release.cd.yml +3 -2
  13. package/.vscode/extensions.json +9 -8
  14. package/.vscode/settings.json +3 -2
  15. package/CHANGELOG.md +533 -290
  16. package/CLI-HELP.md +79 -53
  17. package/WHITE-PAPER.md +1540 -0
  18. package/bin/build.js +16 -11
  19. package/bin/cyberia.js +959 -8
  20. package/bin/deploy.js +103 -270
  21. package/bin/file.js +2 -1
  22. package/bin/index.js +959 -8
  23. package/bin/vs.js +3 -3
  24. package/conf.js +277 -77
  25. package/deployment.yaml +218 -4
  26. package/hardhat/.env.example +31 -0
  27. package/hardhat/README.md +531 -0
  28. package/hardhat/WHITE-PAPER.md +1540 -0
  29. package/hardhat/contracts/ObjectLayerToken.sol +391 -0
  30. package/hardhat/deployments/.gitkeep +0 -0
  31. package/hardhat/deployments/hardhat-ObjectLayerToken.json +11 -0
  32. package/hardhat/hardhat.config.js +136 -0
  33. package/hardhat/ignition/modules/ObjectLayerToken.js +21 -0
  34. package/hardhat/networks/besu-object-layer.network.json +138 -0
  35. package/hardhat/package-lock.json +7628 -0
  36. package/hardhat/package.json +45 -0
  37. package/hardhat/scripts/deployObjectLayerToken.js +98 -0
  38. package/hardhat/test/ObjectLayerToken.js +590 -0
  39. package/jsdoc.dd-cyberia.json +59 -0
  40. package/jsdoc.json +20 -13
  41. package/manifests/cronjobs/dd-cron/dd-cron-backup.yaml +1 -1
  42. package/manifests/cronjobs/dd-cron/dd-cron-dns.yaml +1 -1
  43. package/manifests/deployment/dd-cyberia-development/deployment.yaml +490 -0
  44. package/manifests/deployment/dd-cyberia-development/proxy.yaml +261 -0
  45. package/manifests/deployment/dd-cyberia-development/pv-pvc.yaml +132 -0
  46. package/manifests/deployment/dd-default-development/deployment.yaml +2 -2
  47. package/manifests/deployment/dd-test-development/deployment.yaml +52 -52
  48. package/manifests/deployment/dd-test-development/proxy.yaml +4 -4
  49. package/manifests/pv-pvc-dd.yaml +1 -1
  50. package/package.json +60 -50
  51. package/proxy.yaml +128 -9
  52. package/pv-pvc.yaml +132 -0
  53. package/scripts/k3s-node-setup.sh +1 -1
  54. package/scripts/ports-ls.sh +2 -0
  55. package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.controller.js +3 -1
  56. package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.model.js +1 -2
  57. package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.service.js +40 -7
  58. package/src/api/document/document.service.js +1 -1
  59. package/src/api/file/file.controller.js +3 -1
  60. package/src/api/file/file.service.js +28 -5
  61. package/src/api/ipfs/ipfs.service.js +2 -2
  62. package/src/api/object-layer/object-layer.controller.js +6 -2
  63. package/src/api/object-layer/object-layer.model.js +67 -21
  64. package/src/api/object-layer/object-layer.router.js +668 -42
  65. package/src/api/object-layer/object-layer.service.js +10 -16
  66. package/src/api/object-layer-render-frames/object-layer-render-frames.model.js +1 -2
  67. package/src/api/user/user.router.js +10 -5
  68. package/src/api/user/user.service.js +7 -7
  69. package/src/cli/baremetal.js +6 -10
  70. package/src/cli/cloud-init.js +0 -3
  71. package/src/cli/db.js +54 -71
  72. package/src/cli/deploy.js +64 -12
  73. package/src/cli/env.js +5 -5
  74. package/src/cli/fs.js +0 -2
  75. package/src/cli/image.js +0 -3
  76. package/src/cli/index.js +41 -13
  77. package/src/cli/monitor.js +5 -6
  78. package/src/cli/repository.js +329 -46
  79. package/src/cli/run.js +210 -122
  80. package/src/cli/secrets.js +1 -3
  81. package/src/cli/ssh.js +1 -1
  82. package/src/client/Itemledger.index.js +1 -959
  83. package/src/client/Underpost.index.js +36 -0
  84. package/src/client/components/core/AgGrid.js +20 -5
  85. package/src/client/components/core/Alert.js +2 -2
  86. package/src/client/components/core/Content.js +22 -3
  87. package/src/client/components/core/Docs.js +30 -6
  88. package/src/client/components/core/FileExplorer.js +71 -4
  89. package/src/client/components/core/Input.js +1 -1
  90. package/src/client/components/core/Modal.js +22 -6
  91. package/src/client/components/core/PublicProfile.js +3 -3
  92. package/src/client/components/core/RichText.js +1 -2
  93. package/src/client/components/core/Router.js +34 -1
  94. package/src/client/components/core/Worker.js +1 -1
  95. package/src/client/components/cryptokoyn/CssCryptokoyn.js +63 -1
  96. package/src/client/components/cyberia/ObjectLayerEngineModal.js +145 -119
  97. package/src/client/components/cyberia/ObjectLayerEngineViewer.js +64 -6
  98. package/src/client/components/cyberia-portal/CommonCyberiaPortal.js +1 -0
  99. package/src/client/components/cyberia-portal/CssCyberiaPortal.js +44 -2
  100. package/src/client/components/cyberia-portal/LogInCyberiaPortal.js +0 -1
  101. package/src/client/components/cyberia-portal/MenuCyberiaPortal.js +64 -2
  102. package/src/client/components/cyberia-portal/RoutesCyberiaPortal.js +1 -0
  103. package/src/client/components/itemledger/CssItemledger.js +62 -0
  104. package/src/client/components/underpost/CommonUnderpost.js +29 -0
  105. package/src/client/components/underpost/CssUnderpost.js +281 -0
  106. package/src/client/components/underpost/CyberpunkBloggerUnderpost.js +879 -0
  107. package/src/client/components/underpost/DocumentSearchProvider.js +448 -0
  108. package/src/client/components/underpost/ElementsUnderpost.js +38 -0
  109. package/src/client/components/underpost/LabGalleryUnderpost.js +82 -0
  110. package/src/client/components/underpost/LogInUnderpost.js +23 -0
  111. package/src/client/components/underpost/LogOutUnderpost.js +15 -0
  112. package/src/client/components/underpost/MenuUnderpost.js +691 -0
  113. package/src/client/components/underpost/RoutesUnderpost.js +47 -0
  114. package/src/client/components/underpost/SettingsUnderpost.js +16 -0
  115. package/src/client/components/underpost/SignUpUnderpost.js +9 -0
  116. package/src/client/components/underpost/SocketIoUnderpost.js +54 -0
  117. package/src/client/components/underpost/TranslateUnderpost.js +10 -0
  118. package/src/client/public/cryptokoyn/assets/logo/base-icon.png +0 -0
  119. package/src/client/public/cryptokoyn/browserconfig.xml +12 -0
  120. package/src/client/public/cryptokoyn/microdata.json +85 -0
  121. package/src/client/public/cryptokoyn/site.webmanifest +57 -0
  122. package/src/client/public/cryptokoyn/sitemap +3 -3
  123. package/src/client/public/default/sitemap +3 -3
  124. package/src/client/public/itemledger/browserconfig.xml +2 -2
  125. package/src/client/public/itemledger/manifest.webmanifest +4 -4
  126. package/src/client/public/itemledger/microdata.json +71 -0
  127. package/src/client/public/itemledger/sitemap +3 -3
  128. package/src/client/public/itemledger/yandex-browser-manifest.json +2 -2
  129. package/src/client/public/test/sitemap +3 -3
  130. package/src/client/services/object-layer/object-layer.management.js +23 -4
  131. package/src/client/ssr/body/404.js +15 -11
  132. package/src/client/ssr/body/500.js +15 -11
  133. package/src/client/ssr/body/SwaggerDarkMode.js +285 -0
  134. package/src/client/ssr/body/UnderpostDefaultSplashScreen.js +83 -0
  135. package/src/client/ssr/head/PwaItemledger.js +60 -0
  136. package/src/client/ssr/head/UnderpostScripts.js +6 -0
  137. package/src/client/ssr/offline/NoNetworkConnection.js +11 -10
  138. package/src/client/ssr/pages/Test.js +11 -10
  139. package/src/client.build.js +0 -3
  140. package/src/client.dev.js +0 -3
  141. package/src/db/DataBaseProvider.js +17 -2
  142. package/src/db/mariadb/MariaDB.js +14 -9
  143. package/src/db/mongo/MongooseDB.js +17 -1
  144. package/src/index.js +1 -1
  145. package/src/proxy.js +0 -3
  146. package/src/runtime/express/Express.js +15 -9
  147. package/src/runtime/lampp/Lampp.js +6 -13
  148. package/src/server/auth.js +12 -14
  149. package/src/server/backup.js +2 -3
  150. package/src/server/besu-genesis-generator.js +1630 -0
  151. package/src/server/client-build-docs.js +126 -17
  152. package/src/server/client-build-live.js +9 -18
  153. package/src/server/client-build.js +203 -75
  154. package/src/server/client-dev-server.js +14 -13
  155. package/src/server/conf.js +376 -164
  156. package/src/server/cron.js +2 -1
  157. package/src/server/dns.js +28 -12
  158. package/src/server/downloader.js +0 -2
  159. package/src/server/logger.js +27 -9
  160. package/src/server/object-layer.js +92 -16
  161. package/src/server/peer.js +0 -2
  162. package/src/server/process.js +1 -50
  163. package/src/server/proxy.js +4 -8
  164. package/src/server/runtime.js +5 -8
  165. package/src/server/semantic-layer-generator.js +1 -0
  166. package/src/server/ssr.js +0 -3
  167. package/src/server/start.js +19 -12
  168. package/src/server/tls.js +0 -2
  169. package/src/server.js +0 -4
  170. package/.env.development +0 -43
  171. package/.env.test +0 -43
  172. package/hardhat/contracts/CryptoKoyn.sol +0 -59
  173. package/hardhat/contracts/ItemLedger.sol +0 -73
  174. package/hardhat/contracts/Lock.sol +0 -34
  175. package/hardhat/hardhat.config.cjs +0 -45
  176. package/hardhat/ignition/modules/Lock.js +0 -18
  177. package/hardhat/networks/cryptokoyn-itemledger.network.json +0 -29
  178. package/hardhat/scripts/deployCryptokoyn.cjs +0 -25
  179. package/hardhat/scripts/deployItemledger.cjs +0 -25
  180. package/hardhat/test/Lock.js +0 -126
  181. package/hardhat/white-paper.md +0 -581
  182. package/white-paper.md +0 -581
package/CLI-HELP.md CHANGED
@@ -1,4 +1,4 @@
1
- ## underpost ci/cd cli v3.0.2
1
+ ## underpost ci/cd cli v3.1.3
2
2
 
3
3
  ### Usage: `underpost [options] [command]`
4
4
  ```
@@ -8,6 +8,7 @@
8
8
 
9
9
  Commands:
10
10
  new [options] [app-name] Initializes a new Underpost project, service, or configuration.
11
+ client [options] [deploy-id] [sub-conf] [host] [path] Builds client assets, single replicas, and/or syncs environment ports.
11
12
  start [options] <deploy-id> [env] Initiates application servers, build pipelines, or other defined services based on the deployment ID.
12
13
  clone [options] <uri> Clones a specified GitHub repository into the current directory.
13
14
  pull [options] <path> <uri> Pulls the latest changes from a specified GitHub repository.
@@ -62,6 +63,9 @@ Options:
62
63
  (pwa-microservices-template)
63
64
  --sync-conf Sync configuration to private repositories
64
65
  (requires --deploy-id)
66
+ --sync-start Sync start scripts in deploy ID package.json
67
+ with root package.json (use 'dd' as
68
+ --deploy-id to sync all dd.router)
65
69
  --purge Remove deploy ID conf and all related
66
70
  repositories (requires --deploy-id)
67
71
  --dev Sets the development cli context
@@ -73,6 +77,29 @@ Options:
73
77
  ```
74
78
 
75
79
 
80
+ ### `client` :
81
+ ```
82
+ Usage: underpost client [options] [deploy-id] [sub-conf] [host] [path]
83
+
84
+ Builds client assets, single replicas, and/or syncs environment ports.
85
+
86
+ Arguments:
87
+ deploy-id The deployment ID to build. (default: "dd-default")
88
+ sub-conf The sub-configuration for the build. (default: "")
89
+ host Comma-separated hosts to filter the build. (default: "")
90
+ path Comma-separated paths to filter the build. (default: "")
91
+
92
+ Options:
93
+ --sync-env-port Sync environment port assignments across all deploy IDs
94
+ --single-replica Build single replica folders instead of full client
95
+ --build-zip Create zip files of the builds
96
+ --lite-build Skip full build (default is full build)
97
+ --icons-build Build icons
98
+ -h, --help display help for command
99
+
100
+ ```
101
+
102
+
76
103
  ### `start` :
77
104
  ```
78
105
  Usage: underpost start [options] <deploy-id> [env]
@@ -94,6 +121,8 @@ Options:
94
121
  process.
95
122
  --underpost-quickly-install Uses Underpost Quickly Install for dependency
96
123
  installation.
124
+ --skip-pull-base Skips cloning repositories, uses current
125
+ workspace code directly.
97
126
  -h, --help display help for command
98
127
 
99
128
  ```
@@ -110,7 +139,7 @@ Arguments:
110
139
 
111
140
  Options:
112
141
  --bare Performs a bare clone, downloading only the .git files.
113
- -g8 Uses the g8 repository extension for cloning.
142
+ --g8 Uses the g8 repository extension for cloning.
114
143
  -h, --help display help for command
115
144
 
116
145
  ```
@@ -128,7 +157,7 @@ Arguments:
128
157
  uri The URI of the GitHub repository (e.g., "username/repository").
129
158
 
130
159
  Options:
131
- -g8 Uses the g8 repository extension for pulling.
160
+ --g8 Uses the g8 repository extension for pulling.
132
161
  -h, --help display help for command
133
162
 
134
163
  ```
@@ -145,8 +174,8 @@ Arguments:
145
174
  path The absolute or relative directory path of
146
175
  the repository.
147
176
  commit-type The type of commit to perform. Options:
148
- feat, fix, docs, style, refactor, perf,
149
- ci, cd, infra, build, test, chore, revert,
177
+ feat, fix, docs, style, refactor, perf, ci,
178
+ cd, infra, build, test, chore, revert,
150
179
  backup.
151
180
  module-tag Optional: Sets a specific module tag for
152
181
  the commit.
@@ -160,8 +189,8 @@ Options:
160
189
  --empty Allows committing with empty files.
161
190
  --copy Copies the generated commit message to the
162
191
  clipboard.
163
- --info Displays information about available
164
- commit types.
192
+ --info Displays information about available commit
193
+ types.
165
194
  --diff Shows the current git diff changes.
166
195
  --edit Edit last commit.
167
196
  --deploy-id <deploy-id> Sets the deployment configuration ID for
@@ -171,8 +200,8 @@ Options:
171
200
  hashes of commits.
172
201
  --extension <extension> specific file extensions of commits.
173
202
  --changelog [latest-n] Print plain the changelog of the specified
174
- number of latest n commits, if no number
175
- is provided it will get the changelog to
203
+ number of latest n commits, if no number is
204
+ provided it will get the changelog to
176
205
  latest ci integration
177
206
  --changelog-build Builds a CHANGELOG.md file based on the
178
207
  commit history
@@ -181,6 +210,7 @@ Options:
181
210
  --changelog-no-hash Excludes commit hashes from the generated
182
211
  changelog entries (used with
183
212
  --changelog-build).
213
+ -b Shows the current Git branch name.
184
214
  -h, --help display help for command
185
215
 
186
216
  ```
@@ -198,7 +228,7 @@ Arguments:
198
228
 
199
229
  Options:
200
230
  -f Forces the push, overwriting the remote repository history.
201
- -g8 Uses the g8 repository extension for pushing.
231
+ --g8 Uses the g8 repository extension for pushing.
202
232
  -h, --help display help for command
203
233
 
204
234
  ```
@@ -282,11 +312,10 @@ Options:
282
312
  Manages Underpost configurations using various operators.
283
313
 
284
314
  Arguments:
285
- operator The configuration operation to perform. Options:
286
- set, delete, get, list, clean.
315
+ operator The configuration operation to perform. Options: set,
316
+ delete, get, list, clean.
287
317
  key Optional: The specific configuration key to manage.
288
- value Optional: The value to set for the configuration
289
- key.
318
+ value Optional: The value to set for the configuration key.
290
319
 
291
320
  Options:
292
321
  --plain Prints the configuration value in plain text.
@@ -295,8 +324,8 @@ Options:
295
324
  --deploy-id <deploy-id> Sets the deployment configuration ID for the
296
325
  operation context.
297
326
  --build Sets the build context for the operation.
298
- --copy Copies the configuration value to the clipboard
299
- (only for get operation).
327
+ --copy Copies the configuration value to the clipboard (only
328
+ for get operation).
300
329
  -h, --help display help for command
301
330
 
302
331
  ```
@@ -337,8 +366,8 @@ Options:
337
366
  --ban-egress-clear Clears all banned egress IP addresses.
338
367
  --ban-both-add Adds IP addresses to both banned ingress and egress
339
368
  lists.
340
- --ban-both-remove Removes IP addresses from both banned ingress and
341
- egress lists.
369
+ --ban-both-remove Removes IP addresses from both banned ingress and egress
370
+ lists.
342
371
  -h, --help display help for command
343
372
 
344
373
  ```
@@ -364,8 +393,8 @@ Options:
364
393
  --mongodb Initializes the cluster with a MongoDB
365
394
  statefulset.
366
395
  --mongo-db-host <host> Set custom mongo db host
367
- --postgresql Initializes the cluster with a
368
- PostgreSQL statefulset.
396
+ --postgresql Initializes the cluster with a PostgreSQL
397
+ statefulset.
369
398
  --mongodb4 Initializes the cluster with a MongoDB
370
399
  4.4 service.
371
400
  --valkey Initializes the cluster with a Valkey
@@ -380,10 +409,10 @@ Options:
380
409
  GPU base resources and environment
381
410
  settings.
382
411
  --ns-use <ns-name> Switches the current Kubernetes context
383
- to the specified namespace (creates if
384
- it doesn't exist).
385
- --kubeadm Initializes the cluster using kubeadm
386
- for control plane management.
412
+ to the specified namespace (creates if it
413
+ doesn't exist).
414
+ --kubeadm Initializes the cluster using kubeadm for
415
+ control plane management.
387
416
  --pod-network-cidr <cidr> Sets custom pod network CIDR for kubeadm
388
417
  cluster initialization (defaults to
389
418
  "192.168.0.0/16").
@@ -392,15 +421,15 @@ Options:
392
421
  to "localhost:6443").
393
422
  --grafana Initializes the cluster with a Grafana
394
423
  deployment.
395
- --prom [hosts] Initializes the cluster with a
396
- Prometheus Operator deployment and
397
- monitor scrap for specified hosts.
424
+ --prom [hosts] Initializes the cluster with a Prometheus
425
+ Operator deployment and monitor scrap for
426
+ specified hosts.
398
427
  --dev Initializes a development-specific
399
428
  cluster configuration.
400
429
  --list-pods Displays detailed information about all
401
430
  pods.
402
- --pull-image Sets an optional associated image to
403
- pull during initialization.
431
+ --pull-image Sets an optional associated image to pull
432
+ during initialization.
404
433
  --init-host Installs necessary Kubernetes node CLI
405
434
  tools (e.g., kind, kubeadm, docker,
406
435
  podman, helm).
@@ -414,8 +443,8 @@ Options:
414
443
  (Lightweight Kubernetes).
415
444
  --hosts <hosts> A comma-separated list of cluster
416
445
  hostnames or IP addresses.
417
- --remove-volume-host-paths Removes specified volume host paths
418
- after execution.
446
+ --remove-volume-host-paths Removes specified volume host paths after
447
+ execution.
419
448
  --namespace <namespace> Kubernetes namespace for cluster
420
449
  operations (defaults to "default").
421
450
  --replicas <replicas> Sets a custom number of replicas for
@@ -479,8 +508,8 @@ Options:
479
508
  --status Retrieves current network traffic data
480
509
  from resource deployments and the host
481
510
  machine network configuration.
482
- --kubeadm Enables the kubeadm context for
483
- deployment operations.
511
+ --kubeadm Enables the kubeadm context for deployment
512
+ operations.
484
513
  --etc-hosts Enables the etc-hosts context for
485
514
  deployment operations.
486
515
  --restore-hosts Restores default `/etc/hosts` entries.
@@ -533,8 +562,8 @@ clusters.
533
562
 
534
563
  Options:
535
564
  --build Builds a Docker image using Podman,
536
- optionally saves it as a tar archive,
537
- and loads it into a specified Kubernetes
565
+ optionally saves it as a tar archive, and
566
+ loads it into a specified Kubernetes
538
567
  cluster (Kind, Kubeadm, or K3s).
539
568
  --ls Lists all available Underpost Dockerfile
540
569
  images.
@@ -551,8 +580,8 @@ Options:
551
580
  "rockylinux9-underpost" image.
552
581
  --spec Get current cached list of container
553
582
  images used by all pods
554
- --namespace <namespace> Kubernetes namespace for image
555
- operations (defaults to "default").
583
+ --namespace <namespace> Kubernetes namespace for image operations
584
+ (defaults to "default").
556
585
  --kind Set kind cluster env image context
557
586
  management.
558
587
  --kubeadm Set kubeadm cluster env image context
@@ -561,8 +590,7 @@ Options:
561
590
  management.
562
591
  --node-name Set node name for kubeadm or k3s cluster
563
592
  env image context management.
564
- --reset Performs a build without using the
565
- cache.
593
+ --reset Performs a build without using the cache.
566
594
  --dev Use development mode.
567
595
  --pull-dockerhub <dockerhub-image> Sets a custom Docker Hub image for base
568
596
  image pulls.
@@ -790,32 +818,30 @@ services.
790
818
 
791
819
  Options:
792
820
  --deploy-id <deploy-id> Sets deploy id context for ssh operations.
793
- --generate Generates new ssh credential and stores it in
794
- current private keys file storage.
821
+ --generate Generates new ssh credential and stores it in current
822
+ private keys file storage.
795
823
  --user <user> Sets custom ssh user
796
824
  --password <password> Sets custom ssh password
797
825
  --host <host> Sets custom ssh host
798
826
  --port <port> Sets custom ssh port
799
827
  --filter <filter> Filters ssh user credentials from current private
800
828
  keys file storage.
801
- --groups <groups> Sets comma-separated ssh user groups for the ssh
802
- user credential.
829
+ --groups <groups> Sets comma-separated ssh user groups for the ssh user
830
+ credential.
803
831
  --user-add Adds a new ssh user credential to current private
804
832
  keys file storage.
805
833
  --user-remove Removes an existing ssh user credential from current
806
834
  private keys file storage.
807
835
  --user-ls Lists all ssh user credentials from current private
808
836
  keys file storage.
809
- --start Starts an SSH session with the specified
810
- credentials.
837
+ --start Starts an SSH session with the specified credentials.
811
838
  --reset Resets ssh configuration and deletes all stored
812
839
  credentials.
813
840
  --keys-list Lists all ssh keys from current private keys file
814
841
  storage.
815
842
  --hosts-list Lists all ssh hosts from current private keys file
816
843
  storage.
817
- --disable-password Disables password authentication for the SSH
818
- session.
844
+ --disable-password Disables password authentication for the SSH session.
819
845
  --key-test Tests the SSH key using ssh-keygen.
820
846
  --stop Stops the SSH service.
821
847
  --status Checks the status of the SSH service.
@@ -833,7 +859,7 @@ Options:
833
859
  Runs specified scripts using various runners.
834
860
 
835
861
  Arguments:
836
- runner-id The runner ID to run. Options: dev-cluster,ipfs-expose,metadata,svc-ls,svc-rm,ssh-deploy-info,dev-hosts-expose,dev-hosts-restore,cluster-build,template-deploy,template-deploy-image,clean,pull,release-deploy,ssh-deploy,ide,crypto-policy,sync,stop,ssh-deploy-stop,ssh-deploy-db-rollback,ssh-deploy-db,ssh-deploy-db-status,tz,get-proxy,instance-promote,instance,ls-deployments,host-update,dd-container,ip-info,db-client,git-conf,promote,metrics,cluster,deploy,disk-clean,disk-devices,disk-usage,dev,service,etc-hosts,sh,log,ps,ptls,release-cmt,deploy-test,sync-replica,tf-vae-test,spark-template,rmi,kill,secret,underpost-config,gpu-env,tf-gpu-test,deploy-job.
862
+ runner-id The runner ID to run. Options: dev-cluster,ipfs-expose,metadata,svc-ls,svc-rm,ssh-deploy-info,dev-hosts-expose,dev-hosts-restore,cluster-build,template-deploy,template-deploy-image,clean,pull,release-deploy,ssh-deploy,ide,crypto-policy,sync,stop,ssh-deploy-stop,ssh-deploy-db-rollback,ssh-deploy-db,ssh-deploy-db-status,tz,get-proxy,instance-promote,instance,ls-deployments,host-update,dd-container,ip-info,db-client,git-conf,promote,metrics,cluster,deploy,disk-clean,disk-devices,disk-usage,dev,service,etc-hosts,sh,log,ps,pid-info,background,ports,deploy-test,tf-vae-test,spark-template,rmi,kill,secret,underpost-config,gpu-env,tf-gpu-test,deploy-job.
837
863
  path The input value, identifier, or path for the operation.
838
864
 
839
865
  Options:
@@ -864,7 +890,6 @@ Options:
864
890
  --force Forces operation, overriding any warnings or conflicts.
865
891
  --tls Enables TLS for the runner execution.
866
892
  --reset Resets the runner state before execution.
867
- --terminal Enables terminal mode for interactive script execution.
868
893
  --dev-proxy-port-offset <port-offset> Sets a custom port offset for development proxy.
869
894
  --host-network Enables host network mode for the runner execution.
870
895
  --requests-memory <requests-memory> Requests memory limit for the runner execution.
@@ -898,7 +923,9 @@ Options:
898
923
  --monitor-status-delta-ms <milliseconds> Sets the polling interval in milliseconds for status monitoring (default: 1000).
899
924
  --monitor-status-max-attempts <attempts> Sets the maximum number of status check attempts (default: 600).
900
925
  --dry-run Preview operations without executing them.
926
+ --from-n-commit <n> Number of commits back to use for message propagation in template-deploy (default: 1, last commit only).
901
927
  --create-job-now After applying cron manifests, immediately create a Job from each CronJob (forwarded to cron runner).
928
+ --host-aliases <host-aliases> Adds entries to the Pod /etc/hosts via hostAliases. Format: semicolon-separated entries of "ip=hostname1,hostname2" (e.g., "127.0.0.1=foo.local,bar.local;10.1.2.3=foo.remote,bar.remote").
902
929
  -h, --help display help for command
903
930
 
904
931
  ```
@@ -930,8 +957,8 @@ Options:
930
957
  --delete-vm <vm-name> Stop and delete the specified VM.
931
958
  --init-vm <vm-name> Run k3s-node-setup.sh on the specified VM
932
959
  (use with --control or --worker).
933
- --info-vm <vm-name> Display full configuration and status for
934
- the specified VM.
960
+ --info-vm <vm-name> Display full configuration and status for the
961
+ specified VM.
935
962
  --test <vm-name> Run connectivity and health checks on the
936
963
  specified VM.
937
964
  --root-size <gb-size> Root disk size in GiB for --create-vm
@@ -946,8 +973,7 @@ Options:
946
973
  "k3s-control:80,443").
947
974
  --workflow-id <workflow-id> Workflow ID to execute via runWorkflow.
948
975
  --vm-id <vm-name> Target VM name for workflow execution.
949
- --deploy-id <deploy-id> Deployment ID context for workflow
950
- execution.
976
+ --deploy-id <deploy-id> Deployment ID context for workflow execution.
951
977
  --namespace <namespace> Kubernetes namespace context (defaults to
952
978
  "default").
953
979
  -h, --help display help for command