underpost 2.8.1 → 2.8.7

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 (145) hide show
  1. package/.dockerignore +1 -0
  2. package/.github/workflows/ghpkg.yml +19 -49
  3. package/.github/workflows/npmpkg.yml +67 -0
  4. package/.github/workflows/publish.yml +5 -5
  5. package/.github/workflows/pwa-microservices-template.page.yml +12 -4
  6. package/.github/workflows/pwa-microservices-template.test.yml +2 -2
  7. package/.vscode/extensions.json +18 -71
  8. package/.vscode/settings.json +20 -3
  9. package/AUTHORS.md +16 -5
  10. package/CHANGELOG.md +123 -3
  11. package/Dockerfile +27 -70
  12. package/README.md +39 -29
  13. package/bin/build.js +186 -0
  14. package/bin/db.js +2 -24
  15. package/bin/deploy.js +1467 -236
  16. package/bin/file.js +67 -16
  17. package/bin/hwt.js +0 -10
  18. package/bin/index.js +1 -77
  19. package/bin/ssl.js +19 -11
  20. package/bin/util.js +9 -104
  21. package/bin/vs.js +26 -2
  22. package/cli.md +451 -0
  23. package/conf.js +29 -138
  24. package/docker-compose.yml +1 -1
  25. package/jsdoc.json +1 -1
  26. package/manifests/calico-custom-resources.yaml +25 -0
  27. package/manifests/deployment/adminer/deployment.yaml +32 -0
  28. package/manifests/deployment/adminer/kustomization.yaml +7 -0
  29. package/manifests/deployment/adminer/service.yaml +13 -0
  30. package/manifests/deployment/fastapi/backend-deployment.yml +120 -0
  31. package/manifests/deployment/fastapi/backend-service.yml +19 -0
  32. package/manifests/deployment/fastapi/frontend-deployment.yml +54 -0
  33. package/manifests/deployment/fastapi/frontend-service.yml +15 -0
  34. package/manifests/deployment/kafka/deployment.yaml +69 -0
  35. package/manifests/deployment/mongo-express/deployment.yaml +60 -0
  36. package/manifests/deployment/phpmyadmin/deployment.yaml +54 -0
  37. package/manifests/kind-config-dev.yaml +12 -0
  38. package/manifests/kind-config.yaml +12 -0
  39. package/manifests/kubeadm-calico-config.yaml +119 -0
  40. package/manifests/letsencrypt-prod.yaml +15 -0
  41. package/manifests/mariadb/config.yaml +10 -0
  42. package/manifests/mariadb/kustomization.yaml +9 -0
  43. package/manifests/mariadb/pv.yaml +12 -0
  44. package/manifests/mariadb/pvc.yaml +10 -0
  45. package/manifests/mariadb/secret.yaml +8 -0
  46. package/manifests/mariadb/service.yaml +10 -0
  47. package/manifests/mariadb/statefulset.yaml +55 -0
  48. package/manifests/mongodb/backup-access.yaml +16 -0
  49. package/manifests/mongodb/backup-cronjob.yaml +42 -0
  50. package/manifests/mongodb/backup-pv-pvc.yaml +22 -0
  51. package/manifests/mongodb/configmap.yaml +26 -0
  52. package/manifests/mongodb/headless-service.yaml +10 -0
  53. package/manifests/mongodb/kustomization.yaml +11 -0
  54. package/manifests/mongodb/pv-pvc.yaml +23 -0
  55. package/manifests/mongodb/statefulset.yaml +125 -0
  56. package/manifests/mongodb-4.4/kustomization.yaml +7 -0
  57. package/manifests/mongodb-4.4/pv-pvc.yaml +23 -0
  58. package/manifests/mongodb-4.4/service-deployment.yaml +63 -0
  59. package/manifests/postgresql/configmap.yaml +9 -0
  60. package/manifests/postgresql/kustomization.yaml +10 -0
  61. package/manifests/postgresql/pv.yaml +15 -0
  62. package/manifests/postgresql/pvc.yaml +13 -0
  63. package/manifests/postgresql/service.yaml +10 -0
  64. package/manifests/postgresql/statefulset.yaml +37 -0
  65. package/manifests/valkey/kustomization.yaml +7 -0
  66. package/manifests/valkey/service.yaml +17 -0
  67. package/manifests/valkey/statefulset.yaml +41 -0
  68. package/package.json +127 -136
  69. package/src/api/core/core.service.js +1 -1
  70. package/src/api/default/default.service.js +1 -1
  71. package/src/api/user/user.model.js +16 -3
  72. package/src/api/user/user.service.js +15 -12
  73. package/src/cli/cluster.js +389 -0
  74. package/src/cli/cron.js +121 -0
  75. package/src/cli/db.js +222 -0
  76. package/src/cli/deploy.js +487 -0
  77. package/src/cli/env.js +58 -0
  78. package/src/cli/fs.js +161 -0
  79. package/src/cli/image.js +66 -0
  80. package/src/cli/index.js +312 -0
  81. package/src/cli/monitor.js +236 -0
  82. package/src/cli/repository.js +128 -0
  83. package/src/cli/script.js +53 -0
  84. package/src/cli/secrets.js +37 -0
  85. package/src/cli/test.js +118 -0
  86. package/src/client/components/core/Account.js +28 -24
  87. package/src/client/components/core/Auth.js +22 -4
  88. package/src/client/components/core/Blockchain.js +1 -1
  89. package/src/client/components/core/CalendarCore.js +128 -121
  90. package/src/client/components/core/CommonJs.js +283 -19
  91. package/src/client/components/core/CssCore.js +16 -4
  92. package/src/client/components/core/Docs.js +1 -2
  93. package/src/client/components/core/DropDown.js +5 -1
  94. package/src/client/components/core/EventsUI.js +3 -3
  95. package/src/client/components/core/FileExplorer.js +86 -78
  96. package/src/client/components/core/Input.js +22 -6
  97. package/src/client/components/core/JoyStick.js +2 -2
  98. package/src/client/components/core/LoadingAnimation.js +3 -12
  99. package/src/client/components/core/LogIn.js +3 -3
  100. package/src/client/components/core/LogOut.js +1 -1
  101. package/src/client/components/core/Modal.js +54 -20
  102. package/src/client/components/core/Panel.js +109 -90
  103. package/src/client/components/core/PanelForm.js +23 -30
  104. package/src/client/components/core/Recover.js +3 -3
  105. package/src/client/components/core/RichText.js +1 -11
  106. package/src/client/components/core/Router.js +3 -1
  107. package/src/client/components/core/Scroll.js +1 -0
  108. package/src/client/components/core/SignUp.js +2 -2
  109. package/src/client/components/core/Translate.js +47 -9
  110. package/src/client/components/core/Validator.js +9 -1
  111. package/src/client/components/core/VanillaJs.js +0 -9
  112. package/src/client/components/core/Worker.js +34 -31
  113. package/src/client/components/default/RoutesDefault.js +3 -2
  114. package/src/client/services/core/core.service.js +15 -10
  115. package/src/client/services/default/default.management.js +46 -37
  116. package/src/client/ssr/Render.js +6 -1
  117. package/src/client/ssr/body/CacheControl.js +2 -3
  118. package/src/client/sw/default.sw.js +3 -3
  119. package/src/db/mongo/MongooseDB.js +29 -1
  120. package/src/index.js +101 -19
  121. package/src/mailer/MailerProvider.js +3 -0
  122. package/src/runtime/lampp/Dockerfile +65 -0
  123. package/src/runtime/lampp/Lampp.js +1 -13
  124. package/src/runtime/xampp/Xampp.js +0 -13
  125. package/src/server/auth.js +3 -3
  126. package/src/server/backup.js +49 -93
  127. package/src/server/client-build.js +49 -46
  128. package/src/server/client-formatted.js +6 -3
  129. package/src/server/conf.js +297 -55
  130. package/src/server/dns.js +75 -62
  131. package/src/server/downloader.js +0 -8
  132. package/src/server/json-schema.js +77 -0
  133. package/src/server/logger.js +15 -10
  134. package/src/server/network.js +20 -161
  135. package/src/server/peer.js +2 -2
  136. package/src/server/process.js +25 -2
  137. package/src/server/proxy.js +7 -29
  138. package/src/server/runtime.js +53 -40
  139. package/src/server/ssl.js +1 -1
  140. package/src/server/start.js +122 -0
  141. package/src/server/valkey.js +27 -11
  142. package/test/api.test.js +0 -8
  143. package/src/dns.js +0 -22
  144. package/src/server/prompt-optimizer.js +0 -28
  145. package/startup.js +0 -11
@@ -0,0 +1,389 @@
1
+ import { getNpmRootPath } from '../server/conf.js';
2
+ import { loggerFactory } from '../server/logger.js';
3
+ import { shellExec } from '../server/process.js';
4
+ import UnderpostDeploy from './deploy.js';
5
+ import UnderpostTest from './test.js';
6
+
7
+ const logger = loggerFactory(import.meta);
8
+
9
+ class UnderpostCluster {
10
+ static API = {
11
+ async init(
12
+ podName,
13
+ options = {
14
+ mongodb: false,
15
+ mongodb4: false,
16
+ mariadb: false,
17
+ postgresql: false,
18
+ valkey: false,
19
+ full: false,
20
+ info: false,
21
+ certManager: false,
22
+ listPods: false,
23
+ reset: false,
24
+ dev: false,
25
+ nsUse: '',
26
+ infoCapacity: false,
27
+ infoCapacityPod: false,
28
+ istio: false,
29
+ pullImage: false,
30
+ },
31
+ ) {
32
+ // 1) Install kind, kubeadm, docker, podman
33
+ // 2) Check kubectl, kubelet, containerd.io
34
+ // 3) Install Nvidia drivers from Rocky Linux docs
35
+ // 4) Install LXD with MAAS from Rocky Linux docs
36
+ // 5) Install MAAS src from snap
37
+ const npmRoot = getNpmRootPath();
38
+ const underpostRoot = options?.dev === true ? '.' : `${npmRoot}/underpost`;
39
+ if (options.infoCapacityPod === true) return logger.info('', UnderpostDeploy.API.resourcesFactory());
40
+ if (options.infoCapacity === true) return logger.info('', UnderpostCluster.API.getResourcesCapacity());
41
+ if (options.reset === true) return await UnderpostCluster.API.reset();
42
+ if (options.listPods === true) return console.table(UnderpostDeploy.API.get(podName ?? undefined));
43
+
44
+ if (options.nsUse && typeof options.nsUse === 'string') {
45
+ shellExec(`kubectl config set-context --current --namespace=${options.nsUse}`);
46
+ return;
47
+ }
48
+ if (options.info === true) {
49
+ shellExec(`kubectl config get-contexts`); // config env persisente for manage multiple clusters
50
+ shellExec(`kubectl config get-clusters`);
51
+ shellExec(`kubectl get nodes -o wide`); // set of nodes of a cluster
52
+ shellExec(`kubectl config view | grep namespace`);
53
+ shellExec(`kubectl get ns -o wide`); // A namespace can have pods of different nodes
54
+ shellExec(`kubectl get pvc --all-namespaces -o wide`); // PersistentVolumeClaim -> request storage service
55
+ shellExec(`kubectl get pv --all-namespaces -o wide`); // PersistentVolume -> real storage
56
+ shellExec(`kubectl get cronjob --all-namespaces -o wide`);
57
+ shellExec(`kubectl get svc --all-namespaces -o wide`); // proxy dns gate way -> deployments, statefulsets, pods
58
+ shellExec(`kubectl get statefulsets --all-namespaces -o wide`); // set pods with data/volume persistence
59
+ shellExec(`kubectl get deployments --all-namespaces -o wide`); // set pods
60
+ shellExec(`kubectl get configmap --all-namespaces -o wide`);
61
+ shellExec(`kubectl get pods --all-namespaces -o wide`);
62
+ shellExec(
63
+ `kubectl get pod --all-namespaces -o="custom-columns=NAME:.metadata.name,INIT-CONTAINERS:.spec.initContainers[*].name,CONTAINERS:.spec.containers[*].name"`,
64
+ );
65
+ shellExec(
66
+ `kubectl get pods --all-namespaces -o=jsonpath='{range .items[*]}{"\\n"}{.metadata.name}{":\\t"}{range .spec.containers[*]}{.image}{", "}{end}{end}'`,
67
+ );
68
+ console.log();
69
+ logger.info('contour -------------------------------------------------');
70
+ for (const _k of ['Cluster', 'HTTPProxy', 'ClusterIssuer', 'Certificate']) {
71
+ shellExec(`kubectl get ${_k} --all-namespaces -o wide`);
72
+ }
73
+ logger.info('----------------------------------------------------------------');
74
+ shellExec(`kubectl get secrets --all-namespaces -o wide`);
75
+ shellExec(`docker secret ls`);
76
+ shellExec(`kubectl get crd --all-namespaces -o wide`);
77
+ shellExec(`sudo kubectl api-resources`);
78
+ return;
79
+ }
80
+
81
+ if (
82
+ (!options.istio && !UnderpostDeploy.API.get('kube-apiserver-kind-control-plane')[0]) ||
83
+ (options.istio === true && !UnderpostDeploy.API.get('calico-kube-controllers')[0])
84
+ ) {
85
+ shellExec(`sudo setenforce 0`);
86
+ shellExec(`sudo sed -i 's/^SELINUX=enforcing$/SELINUX=permissive/' /etc/selinux/config`);
87
+ // sudo systemctl disable kubelet
88
+ // shellExec(`sudo systemctl enable --now kubelet`);
89
+ shellExec(`containerd config default > /etc/containerd/config.toml`);
90
+ shellExec(`sed -i -e "s/SystemdCgroup = false/SystemdCgroup = true/g" /etc/containerd/config.toml`);
91
+ // shellExec(`cp /etc/kubernetes/admin.conf ~/.kube/config`);
92
+ // shellExec(`sudo systemctl restart kubelet`);
93
+ shellExec(`sudo service docker restart`);
94
+ shellExec(`sudo systemctl enable --now containerd.service`);
95
+ shellExec(`sudo swapoff -a; sudo sed -i '/swap/d' /etc/fstab`);
96
+ if (options.istio === true) {
97
+ shellExec(`sysctl net.bridge.bridge-nf-call-iptables=1`);
98
+ shellExec(`sudo kubeadm init --pod-network-cidr=192.168.0.0/16`);
99
+ shellExec(`sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config`);
100
+ shellExec(`sudo chown $(id -u):$(id -g) $HOME/.kube/config**`);
101
+ // https://docs.tigera.io/calico/latest/getting-started/kubernetes/quickstart
102
+ shellExec(
103
+ `sudo kubectl create -f https://raw.githubusercontent.com/projectcalico/calico/v3.29.3/manifests/tigera-operator.yaml`,
104
+ );
105
+ // shellExec(
106
+ // `wget https://raw.githubusercontent.com/projectcalico/calico/v3.25.0/manifests/custom-resources.yaml`,
107
+ // );
108
+ shellExec(`sudo kubectl apply -f ./manifests/kubeadm-calico-config.yaml`);
109
+ shellExec(`sudo systemctl restart containerd`);
110
+ } else {
111
+ shellExec(`sudo systemctl restart containerd`);
112
+ shellExec(
113
+ `cd ${underpostRoot}/manifests && kind create cluster --config kind-config${
114
+ options?.dev === true ? '-dev' : ''
115
+ }.yaml`,
116
+ );
117
+ shellExec(`sudo chown $(id -u):$(id -g) $HOME/.kube/config**`);
118
+ }
119
+ } else logger.warn('Cluster already initialized');
120
+
121
+ if (options.full === true || options.valkey === true) {
122
+ if (options.pullImage === true) {
123
+ shellExec(`docker pull valkey/valkey`);
124
+ shellExec(`sudo kind load docker-image valkey/valkey:latest`);
125
+ }
126
+ shellExec(`kubectl delete statefulset service-valkey`);
127
+ shellExec(`kubectl apply -k ${underpostRoot}/manifests/valkey`);
128
+ }
129
+ if (options.full === true || options.mariadb === true) {
130
+ shellExec(
131
+ `sudo kubectl create secret generic mariadb-secret --from-file=username=/home/dd/engine/engine-private/mariadb-username --from-file=password=/home/dd/engine/engine-private/mariadb-password`,
132
+ );
133
+ shellExec(
134
+ `sudo kubectl create secret generic github-secret --from-literal=GITHUB_TOKEN=${process.env.GITHUB_TOKEN}`,
135
+ );
136
+ shellExec(`kubectl delete statefulset mariadb-statefulset`);
137
+ shellExec(`kubectl apply -k ${underpostRoot}/manifests/mariadb`);
138
+ }
139
+ if (options.full === true || options.postgresql === true) {
140
+ if (options.pullImage === true) {
141
+ shellExec(`docker pull postgres:latest`);
142
+ shellExec(`sudo kind load docker-image postgres:latest`);
143
+ }
144
+ shellExec(
145
+ `sudo kubectl create secret generic postgres-secret --from-file=password=/home/dd/engine/engine-private/postgresql-password`,
146
+ );
147
+ shellExec(`kubectl apply -k ./manifests/postgresql`);
148
+ }
149
+ if (options.mongodb4 === true) {
150
+ if (options.pullImage === true) {
151
+ shellExec(`docker pull mongo:4.4`);
152
+ shellExec(`sudo kind load docker-image mongo:4.4`);
153
+ }
154
+ shellExec(`kubectl apply -k ${underpostRoot}/manifests/mongodb-4.4`);
155
+
156
+ const deploymentName = 'mongodb-deployment';
157
+
158
+ const successInstance = await UnderpostTest.API.statusMonitor(deploymentName);
159
+
160
+ if (successInstance) {
161
+ const mongoConfig = {
162
+ _id: 'rs0',
163
+ members: [{ _id: 0, host: '127.0.0.1:27017' }],
164
+ };
165
+
166
+ const [pod] = UnderpostDeploy.API.get(deploymentName);
167
+
168
+ shellExec(
169
+ `sudo kubectl exec -i ${pod.NAME} -- mongo --quiet \
170
+ --eval 'rs.initiate(${JSON.stringify(mongoConfig)})'`,
171
+ );
172
+ }
173
+
174
+ // await UnderpostTest.API.statusMonitor('mongodb-1');
175
+ } else if (options.full === true || options.mongodb === true) {
176
+ shellExec(
177
+ `sudo kubectl create secret generic mongodb-keyfile --from-file=/home/dd/engine/engine-private/mongodb-keyfile`,
178
+ );
179
+ shellExec(
180
+ `sudo kubectl create secret generic mongodb-secret --from-file=username=/home/dd/engine/engine-private/mongodb-username --from-file=password=/home/dd/engine/engine-private/mongodb-password`,
181
+ );
182
+ shellExec(`kubectl delete statefulset mongodb`);
183
+ shellExec(`kubectl apply -k ${underpostRoot}/manifests/mongodb`);
184
+
185
+ const successInstance = await UnderpostTest.API.statusMonitor('mongodb-1');
186
+
187
+ if (successInstance) {
188
+ const mongoConfig = {
189
+ _id: 'rs0',
190
+ members: [
191
+ { _id: 0, host: 'mongodb-0.mongodb-service:27017', priority: 1 },
192
+ { _id: 1, host: 'mongodb-1.mongodb-service:27017', priority: 1 },
193
+ ],
194
+ };
195
+
196
+ shellExec(
197
+ `sudo kubectl exec -i mongodb-0 -- mongosh --quiet --json=relaxed \
198
+ --eval 'use admin' \
199
+ --eval 'rs.initiate(${JSON.stringify(mongoConfig)})' \
200
+ --eval 'rs.status()'`,
201
+ );
202
+ }
203
+ }
204
+
205
+ if (options.full === true || options.contour === true)
206
+ shellExec(`kubectl apply -f https://projectcontour.io/quickstart/contour.yaml`);
207
+
208
+ if (options.full === true || options.certManager === true) {
209
+ if (!UnderpostDeploy.API.get('cert-manager').find((p) => p.STATUS === 'Running')) {
210
+ shellExec(`helm repo add jetstack https://charts.jetstack.io --force-update`);
211
+ shellExec(
212
+ `helm install cert-manager jetstack/cert-manager \
213
+ --namespace cert-manager \
214
+ --create-namespace \
215
+ --version v1.17.0 \
216
+ --set crds.enabled=true`,
217
+ );
218
+ }
219
+
220
+ const letsEncName = 'letsencrypt-prod';
221
+ shellExec(`sudo kubectl delete ClusterIssuer ${letsEncName}`);
222
+ shellExec(`sudo kubectl apply -f ${underpostRoot}/manifests/${letsEncName}.yaml`);
223
+ }
224
+ },
225
+ // This function performs a comprehensive reset of Kubernetes and container environments
226
+ // on the host machine. Its primary goal is to clean up cluster components, temporary files,
227
+ // and container data, ensuring a clean state for re-initialization or fresh deployments,
228
+ // while also preventing the loss of the host machine's internet connectivity.
229
+
230
+ reset() {
231
+ // Step 1: Delete all existing Kind (Kubernetes in Docker) clusters.
232
+ // 'kind get clusters' lists all Kind clusters.
233
+ // 'xargs -t -n1 kind delete cluster --name' then iterates through each cluster name
234
+ // and executes 'kind delete cluster --name <cluster_name>' to remove them.
235
+ shellExec(`kind get clusters | xargs -t -n1 kind delete cluster --name`);
236
+
237
+ // Step 2: Reset the Kubernetes control-plane components installed by kubeadm.
238
+ // 'kubeadm reset -f' performs a forceful reset, removing installed Kubernetes components,
239
+ // configuration files, and associated network rules (like iptables entries created by kubeadm).
240
+ // The '-f' flag bypasses confirmation prompts.
241
+ shellExec(`sudo kubeadm reset -f`);
242
+
243
+ // Step 3: Remove specific CNI (Container Network Interface) configuration files.
244
+ // This command targets and removes the configuration file for Flannel,
245
+ // a common CNI plugin, which might be left behind after a reset.
246
+ shellExec('sudo rm -f /etc/cni/net.d/10-flannel.conflist');
247
+
248
+ // Note: The aggressive 'sudo iptables -F ...' command was intentionally removed from previous versions.
249
+ // This command would flush all iptables rules, including those crucial for the host's general
250
+ // internet connectivity, leading to network loss. 'kubeadm reset' and container runtime pruning
251
+ // adequately handle Kubernetes and container-specific iptables rules without affecting the host's
252
+ // default network configuration.
253
+
254
+ // Step 4: Remove the kubectl configuration file from the current user's home directory.
255
+ // This ensures that after a reset, there's no lingering configuration pointing to the old cluster,
256
+ // providing a clean slate for connecting to a new or re-initialized cluster.
257
+ shellExec('sudo rm -f $HOME/.kube/config');
258
+
259
+ // Step 5: Clear trash files from the root user's trash directory.
260
+ // This is a general cleanup step to remove temporary or deleted files.
261
+ shellExec('sudo rm -rf /root/.local/share/Trash/files/*');
262
+
263
+ // Step 6: Prune all unused Docker data.
264
+ // 'docker system prune -a -f' removes:
265
+ // - All stopped containers
266
+ // - All unused networks
267
+ // - All dangling images
268
+ // - All build cache
269
+ // - All unused volumes
270
+ // This aggressively frees up disk space and removes temporary Docker artifacts.
271
+ shellExec('sudo docker system prune -a -f');
272
+
273
+ // Step 7: Stop the Docker daemon service.
274
+ // This step is often necessary to ensure that Docker's files and directories
275
+ // can be safely manipulated or moved in subsequent steps without conflicts.
276
+ shellExec('sudo service docker stop');
277
+
278
+ // Step 8: Aggressively remove container storage data for containerd and Docker.
279
+ // These commands target the default storage locations for containerd and Docker,
280
+ // as well as any custom paths that might have been used (`/home/containers/storage`, `/home/docker`).
281
+ // This ensures a complete wipe of all container images, layers, and volumes.
282
+ shellExec(`sudo rm -rf /var/lib/containers/storage/*`);
283
+ shellExec(`sudo rm -rf /var/lib/docker/volumes/*`);
284
+ shellExec(`sudo rm -rf /var/lib/docker~/*`); // Cleans up a potential backup directory for Docker data
285
+ shellExec(`sudo rm -rf /home/containers/storage/*`); // Cleans up custom containerd/Podman storage
286
+ shellExec(`sudo rm -rf /home/docker/*`); // Cleans up custom Docker storage
287
+
288
+ // Step 9: Re-configure Docker's default storage location (if desired).
289
+ // These commands effectively move Docker's data directory from its default `/var/lib/docker`
290
+ // to a new location (`/home/docker`) and create a symbolic link.
291
+ // This is a specific customization to relocate Docker's storage.
292
+ shellExec('sudo mv /var/lib/docker /var/lib/docker~'); // Moves existing /var/lib/docker to /var/lib/docker~ (backup)
293
+ shellExec('sudo mkdir /home/docker'); // Creates the new desired directory for Docker data
294
+ shellExec('sudo chmod 0711 /home/docker'); // Sets appropriate permissions for the new directory
295
+ shellExec('sudo ln -s /home/docker /var/lib/docker'); // Creates a symlink from original path to new path
296
+
297
+ // Step 10: Prune all unused Podman data.
298
+ // Similar to Docker pruning, these commands remove:
299
+ // - All stopped containers
300
+ // - All unused networks
301
+ // - All unused images
302
+ // - All unused volumes ('--volumes')
303
+ // - The '--force' flag bypasses confirmation.
304
+ // '--external' prunes external content not managed by Podman's default storage backend.
305
+ shellExec(`sudo podman system prune -a -f`);
306
+ shellExec(`sudo podman system prune --all --volumes --force`);
307
+ shellExec(`sudo podman system prune --external --force`);
308
+ shellExec(`sudo podman system prune --all --volumes --force`); // Redundant but harmless repetition
309
+
310
+ // Step 11: Create and set permissions for Podman's custom storage directory.
311
+ // This ensures the custom path `/home/containers/storage` exists and has correct permissions
312
+ // before Podman attempts to use it.
313
+ shellExec(`sudo mkdir -p /home/containers/storage`);
314
+ shellExec('sudo chmod 0711 /home/containers/storage');
315
+
316
+ // Step 12: Update Podman's storage configuration file.
317
+ // This command uses 'sed' to modify `/etc/containers/storage.conf`,
318
+ // changing the default storage path from `/var/lib/containers/storage`
319
+ // to the customized `/home/containers/storage`.
320
+ shellExec(
321
+ `sudo sed -i -e "s@/var/lib/containers/storage@/home/containers/storage@g" /etc/containers/storage.conf`,
322
+ );
323
+
324
+ // Step 13: Reset Podman system settings.
325
+ // This command resets Podman's system-wide configuration to its default state.
326
+ shellExec(`sudo podman system reset -f`);
327
+
328
+ // Note: The 'sysctl net.bridge.bridge-nf-call-iptables=0' and related commands
329
+ // were previously removed. These sysctl settings (bridge-nf-call-iptables,
330
+ // bridge-nf-call-arptables, bridge-nf-call-ip6tables) are crucial for allowing
331
+ // network traffic through Linux bridges to be processed by iptables.
332
+ // Kubernetes and CNI plugins generally require them to be enabled (set to '1').
333
+ // Re-initializing Kubernetes will typically set these as needed, and leaving them
334
+ // at their system default (or '1' if already configured) is safer for host
335
+ // connectivity during a reset operation.
336
+
337
+ // https://github.com/kubernetes-sigs/kind/issues/2886
338
+ // shellExec(`sysctl net.bridge.bridge-nf-call-iptables=0`);
339
+ // shellExec(`sysctl net.bridge.bridge-nf-call-arptables=0`);
340
+ // shellExec(`sysctl net.bridge.bridge-nf-call-ip6tables=0`);
341
+
342
+ // Step 14: Remove the 'kind' Docker network.
343
+ // This cleans up any network bridges or configurations specifically created by Kind.
344
+ shellExec(`docker network rm kind`);
345
+ },
346
+
347
+ getResourcesCapacity() {
348
+ const resources = {};
349
+ const info = false
350
+ ? `Capacity:
351
+ cpu: 8
352
+ ephemeral-storage: 153131976Ki
353
+ hugepages-1Gi: 0
354
+ hugepages-2Mi: 0
355
+ memory: 11914720Ki
356
+ pods: 110
357
+ Allocatable:
358
+ cpu: 8
359
+ ephemeral-storage: 153131976Ki
360
+ hugepages-1Gi: 0
361
+ hugepages-2Mi: 0
362
+ memory: 11914720Ki
363
+ pods: `
364
+ : shellExec(`kubectl describe node kind-worker | grep -E '(Allocatable:|Capacity:)' -A 6`, {
365
+ stdout: true,
366
+ silent: true,
367
+ });
368
+ info
369
+ .split('Allocatable:')[1]
370
+ .split('\n')
371
+ .filter((row) => row.match('cpu') || row.match('memory'))
372
+ .map((row) => {
373
+ if (row.match('cpu'))
374
+ resources.cpu = {
375
+ value: parseInt(row.split(':')[1].trim()) * 1000,
376
+ unit: 'm',
377
+ };
378
+ if (row.match('memory'))
379
+ resources.memory = {
380
+ value: parseInt(row.split(':')[1].split('Ki')[0].trim()),
381
+ unit: 'Ki',
382
+ };
383
+ });
384
+
385
+ return resources;
386
+ },
387
+ };
388
+ }
389
+ export default UnderpostCluster;
@@ -0,0 +1,121 @@
1
+ /**
2
+ * UnderpostCron CLI index module
3
+ * @module src/cli/cron.js
4
+ * @namespace UnderpostCron
5
+ */
6
+
7
+ import { DataBaseProvider } from '../db/DataBaseProvider.js';
8
+ import BackUp from '../server/backup.js';
9
+ import { Cmd } from '../server/conf.js';
10
+ import Dns from '../server/dns.js';
11
+ import { loggerFactory } from '../server/logger.js';
12
+
13
+ import { shellExec } from '../server/process.js';
14
+ import fs from 'fs-extra';
15
+
16
+ const logger = loggerFactory(import.meta);
17
+
18
+ /**
19
+ * UnderpostCron main module methods
20
+ * @class
21
+ * @memberof UnderpostCron
22
+ */
23
+ class UnderpostCron {
24
+ static NETWORK = [];
25
+ static JOB = {
26
+ /**
27
+ * DNS cli API
28
+ * @static
29
+ * @type {Dns}
30
+ * @memberof UnderpostCron
31
+ */
32
+ dns: Dns,
33
+ /**
34
+ * BackUp cli API
35
+ * @static
36
+ * @type {BackUp}
37
+ * @memberof UnderpostCron
38
+ */
39
+ backup: BackUp,
40
+ };
41
+ static API = {
42
+ /**
43
+ * Run the cron jobs
44
+ * @static
45
+ * @param {String} deployList - Comma separated deploy ids
46
+ * @param {String} jobList - Comma separated job ids
47
+ * @return {void}
48
+ * @memberof UnderpostCron
49
+ */
50
+ callback: async function (
51
+ deployList = 'default',
52
+ jobList = Object.keys(UnderpostCron.JOB),
53
+ options = { itc: false, init: false, git: false, dashboardUpdate: false },
54
+ ) {
55
+ if (options.init === true) {
56
+ UnderpostCron.NETWORK = [];
57
+ const jobDeployId = fs.readFileSync('./engine-private/deploy/dd.cron', 'utf8').trim();
58
+ deployList = fs.readFileSync('./engine-private/deploy/dd.router', 'utf8').trim();
59
+ const confCronConfig = JSON.parse(fs.readFileSync(`./engine-private/conf/${jobDeployId}/conf.cron.json`));
60
+ if (confCronConfig.jobs && Object.keys(confCronConfig.jobs).length > 0) {
61
+ for (const job of Object.keys(confCronConfig.jobs)) {
62
+ const name = `${jobDeployId}-${job}`;
63
+ let deployId;
64
+ if (!options.dashboardUpdate) shellExec(Cmd.delete(name));
65
+ switch (job) {
66
+ case 'dns':
67
+ deployId = jobDeployId;
68
+ break;
69
+
70
+ default:
71
+ deployId = deployList;
72
+ break;
73
+ }
74
+ if (!options.dashboardUpdate)
75
+ shellExec(Cmd.cron(deployId, job, name, confCronConfig.jobs[job].expression, options));
76
+ UnderpostCron.NETWORK.push({
77
+ deployId,
78
+ jobId: job,
79
+ expression: confCronConfig.jobs[job].expression,
80
+ });
81
+ }
82
+ }
83
+ if (options.dashboardUpdate === true) await UnderpostCron.API.updateDashboardData();
84
+ if (fs.existsSync(`./tmp/await-deploy`)) fs.remove(`./tmp/await-deploy`);
85
+ return;
86
+ }
87
+ for (const _jobId of jobList.split(',')) {
88
+ const jobId = _jobId.trim();
89
+ if (UnderpostCron.JOB[jobId]) await UnderpostCron.JOB[jobId].callback(deployList, options);
90
+ }
91
+ },
92
+ async updateDashboardData() {
93
+ try {
94
+ const deployId = process.env.DEFAULT_DEPLOY_ID;
95
+ const host = process.env.DEFAULT_DEPLOY_HOST;
96
+ const path = process.env.DEFAULT_DEPLOY_PATH;
97
+ const confServerPath = `./engine-private/conf/${deployId}/conf.server.json`;
98
+ const confServer = JSON.parse(fs.readFileSync(confServerPath, 'utf8'));
99
+ const { db } = confServer[host][path];
100
+
101
+ await DataBaseProvider.load({ apis: ['cron'], host, path, db });
102
+
103
+ /** @type {import('../api/cron/cron.model.js').CronModel} */
104
+ const Cron = DataBaseProvider.instance[`${host}${path}`].mongoose.models.Cron;
105
+
106
+ await Cron.deleteMany();
107
+
108
+ for (const cronInstance of UnderpostCron.NETWORK) {
109
+ logger.info('save', cronInstance);
110
+ await new Cron(cronInstance).save();
111
+ }
112
+
113
+ await DataBaseProvider.instance[`${host}${path}`].mongoose.close();
114
+ } catch (error) {
115
+ logger.error(error, error.stack);
116
+ }
117
+ },
118
+ };
119
+ }
120
+
121
+ export default UnderpostCron;