@certik/skynet 0.16.1 → 0.16.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.16.3
4
+
5
+ - Removed log-shipper job
6
+
7
+ ## 0.16.2
8
+
9
+ - Doubled log-shipper cpu and memory
10
+
3
11
  ## 0.16.1
4
12
 
5
13
  - Removed verbose log from exponentialRetry (@certik/skynet/availablity)
package/deploy.js CHANGED
@@ -111,35 +111,6 @@ const genConfig = ({
111
111
  : ""
112
112
  }
113
113
 
114
- task "log-shipper" {
115
- driver = "raw_exec"
116
-
117
- config {
118
- command = "sh"
119
- args = [
120
- "-c",
121
- "cd \${meta.skynet_code_path}/infra-nomad/log-shipper && if [ -e bun.lockb ]; then bun install --silent; else yarn install --silent; fi && exec bin/shipper --path ${jobName} --opensearch"
122
- ]
123
- }
124
-
125
- env {
126
- SKYNET_ENVIRONMENT="${isProduction ? "prd" : "dev"}"
127
- }
128
-
129
- kill_timeout = "120s"
130
-
131
- resources {
132
- cpu = 100 # MHz
133
- memory = 100 # MB
134
- }
135
-
136
- restart {
137
- attempts = 3
138
- delay = "15s"
139
- mode = "fail"
140
- }
141
- }
142
-
143
114
  task "main" {
144
115
  driver = "raw_exec"
145
116
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@certik/skynet",
3
- "version": "0.16.1",
3
+ "version": "0.16.3",
4
4
  "description": "Skynet Shared JS library",
5
5
  "type": "module",
6
6
  "main": "index.js",