We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb379f4 commit f7a5e2cCopy full SHA for f7a5e2c
app/Models/DeploymentData/Process.php
@@ -235,9 +235,6 @@ public function asNodeTasks(Deployment $deployment): array
235
'Labels' => $labels,
236
]
237
])->toArray(),
238
- 'HealthCheck' => [
239
- 'Test' => ['NONE']
240
- ],
241
'Hosts' => [
242
$internalDomain,
243
],
@@ -320,6 +317,9 @@ public function asNodeTasks(Deployment $deployment): array
320
317
'Hostname' => "dpl-{$deployment->id}.{$worker->name}.{$internalDomain}",
321
318
'Env' => collect($this->envVars)->map(fn(EnvVar $var) => "{$var->name}={$var->value}")->toArray(),
322
319
'Mounts' => [],
+ 'HealthCheck' => [
+ 'Test' => ['NONE']
+ ],
323
324
"{$worker->name}.{$internalDomain}",
325
0 commit comments