fixes
This commit is contained in:
parent
63a2e69cc6
commit
2014183e88
@ -10,21 +10,18 @@ use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|||||||
|
|
||||||
class Kernel extends ConsoleKernel
|
class Kernel extends ConsoleKernel
|
||||||
{
|
{
|
||||||
/**
|
|
||||||
* Define the application's command schedule.
|
|
||||||
*/
|
|
||||||
protected function schedule(Schedule $schedule): void
|
protected function schedule(Schedule $schedule): void
|
||||||
{
|
{
|
||||||
$schedule->command('horizon:snapshot')->everyFiveMinutes();
|
if (config('app.env') === 'local') {
|
||||||
|
$schedule->command('horizon:snapshot')->everyMinute();
|
||||||
$schedule->job(new InstanceDockerCleanupJob)->everyFiveMinutes();
|
$schedule->job(new InstanceDockerCleanupJob)->everyMinute();
|
||||||
$schedule->job(new InstanceAutoUpdateJob)->everyFifteenMinutes();
|
$schedule->job(new InstanceAutoUpdateJob(true))->everyMinute();
|
||||||
// $schedule->job(new InstanceProxyCheckJob)->everyMinute();
|
} else {
|
||||||
|
$schedule->command('horizon:snapshot')->everyFiveMinutes();
|
||||||
|
$schedule->job(new InstanceDockerCleanupJob)->everyFiveMinutes();
|
||||||
|
$schedule->job(new InstanceAutoUpdateJob)->everyFifteenMinutes();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Register the commands for the application.
|
|
||||||
*/
|
|
||||||
protected function commands(): void
|
protected function commands(): void
|
||||||
{
|
{
|
||||||
$this->load(__DIR__ . '/Commands');
|
$this->load(__DIR__ . '/Commands');
|
||||||
|
@ -18,6 +18,11 @@ class InstanceAutoUpdateJob implements ShouldQueue, ShouldBeUnique
|
|||||||
|
|
||||||
public $tries = 1;
|
public $tries = 1;
|
||||||
public $timeout = 120;
|
public $timeout = 120;
|
||||||
|
|
||||||
|
public Server $server;
|
||||||
|
public string $latest_version;
|
||||||
|
public string $current_version;
|
||||||
|
|
||||||
public function uniqueId(): int
|
public function uniqueId(): int
|
||||||
{
|
{
|
||||||
return 1;
|
return 1;
|
||||||
@ -25,47 +30,56 @@ class InstanceAutoUpdateJob implements ShouldQueue, ShouldBeUnique
|
|||||||
public function __construct(private bool $force = false)
|
public function __construct(private bool $force = false)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
private function update()
|
||||||
|
{
|
||||||
|
if (config('app.env') === 'local') {
|
||||||
|
ray('Running update on local docker container');
|
||||||
|
instant_remote_process([
|
||||||
|
"sleep 10"
|
||||||
|
], $this->server);
|
||||||
|
ray('Update done');
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
ray('Running update on production server');
|
||||||
|
instant_remote_process([
|
||||||
|
"curl -fsSL https://coolify-cdn.b-cdn.net/files/upgrade.sh -o /data/coolify/source/upgrade.sh",
|
||||||
|
"bash /data/coolify/source/upgrade.sh $this->latest_version"
|
||||||
|
], $this->server);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
public function handle(): void
|
public function handle(): void
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
|
ray('Running InstanceAutoUpdateJob');
|
||||||
$localhost_name = 'localhost';
|
$localhost_name = 'localhost';
|
||||||
if (config('app.env') === 'local') {
|
if (config('app.env') === 'local') {
|
||||||
$localhost_name = 'testing-local-docker-container';
|
$localhost_name = 'testing-local-docker-container';
|
||||||
}
|
}
|
||||||
$server = Server::where('name', $localhost_name)->firstOrFail();
|
$this->server = Server::where('name', $localhost_name)->firstOrFail();
|
||||||
$latest_version = get_latest_version_of_coolify();
|
$this->latest_version = get_latest_version_of_coolify();
|
||||||
$current_version = config('version');
|
$this->current_version = config('version');
|
||||||
|
ray('latest version:' . $this->latest_version . " current version: " . $this->current_version . ' force: ' . $this->force);
|
||||||
if (config('app.env') === 'local') {
|
if ($this->force) {
|
||||||
instant_remote_process([
|
$this->update();
|
||||||
"sleep 10"
|
|
||||||
], $server);
|
|
||||||
return;
|
|
||||||
} else {
|
} else {
|
||||||
if (!$this->force) {
|
$instance_settings = InstanceSettings::get();
|
||||||
$instance_settings = InstanceSettings::get();
|
ray($instance_settings);
|
||||||
if (!$instance_settings->is_auto_update_enabled) {
|
if (!$instance_settings->is_auto_update_enabled) {
|
||||||
$this->fail('Auto update is disabled');
|
throw new \Exception('Auto update is disabled');
|
||||||
return;
|
|
||||||
}
|
|
||||||
if ($latest_version === $current_version) {
|
|
||||||
$this->fail("Already on latest version");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (version_compare($latest_version, $current_version, '<')) {
|
|
||||||
$this->fail("Latest version is lower than current version?!");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
instant_remote_process([
|
if ($this->latest_version === $this->current_version) {
|
||||||
"curl -fsSL https://coolify-cdn.b-cdn.net/files/upgrade.sh -o /data/coolify/source/upgrade.sh",
|
throw new \Exception('Already on latest version');
|
||||||
"bash /data/coolify/source/upgrade.sh $latest_version"
|
}
|
||||||
], $server);
|
if (version_compare($this->latest_version, $this->current_version, '<')) {
|
||||||
return;
|
throw new \Exception('Latest version is lower than current version?!');
|
||||||
|
}
|
||||||
|
$this->update();
|
||||||
}
|
}
|
||||||
|
return;
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
Log::error($e->getMessage());
|
ray('InstanceAutoUpdateJob failed');
|
||||||
|
ray($e->getMessage());
|
||||||
$this->fail($e->getMessage());
|
$this->fail($e->getMessage());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -47,9 +47,6 @@ select {
|
|||||||
@apply w-4 text-warning;
|
@apply w-4 text-warning;
|
||||||
}
|
}
|
||||||
|
|
||||||
button[type="submit"] {
|
|
||||||
@apply hover:bg-coolgray-400 btn h-7 btn-xs border-none bg-coolgray-200 no-animation normal-case text-white rounded;
|
|
||||||
}
|
|
||||||
button[isWarning] {
|
button[isWarning] {
|
||||||
@apply bg-error hover:bg-error;
|
@apply bg-error hover:bg-error;
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,9 @@
|
|||||||
<div class="tooltip tooltip-warning" data-tip="{{ $tooltip }}">
|
<div class="tooltip tooltip-warning" data-tip="{{ $tooltip }}">
|
||||||
@endisset
|
@endisset
|
||||||
@if ($type === 'submit')
|
@if ($type === 'submit')
|
||||||
<button {{ $attributes }} type="submit" @if ($disabled !== null) disabled @endif
|
<button
|
||||||
|
{{ $attributes->class(['btn btn-xs border-none no-animation normal-case text-white rounded', 'hover:bg-coolgray-400 bg-coolgray-200 h-7' => !$attributes->has('class')]) }}
|
||||||
|
type="submit" @if ($disabled !== null) disabled @endif
|
||||||
@isset($confirm)
|
@isset($confirm)
|
||||||
x-on:click="toggleConfirmModal('{{ $confirm }}', '{{ explode('(', $confirmAction)[0] }}')"
|
x-on:click="toggleConfirmModal('{{ $confirm }}', '{{ explode('(', $confirmAction)[0] }}')"
|
||||||
@endisset
|
@endisset
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<div>
|
<div>
|
||||||
@if ($this->activity)
|
@if ($this->activity)
|
||||||
@if ($header)
|
@if ($header)
|
||||||
<div class="flex gap-2">
|
<div class="flex gap-2 pb-2">
|
||||||
<h2>Logs</h2>
|
<h2>Logs</h2>
|
||||||
@if ($isPollingActive)
|
@if ($isPollingActive)
|
||||||
<x-loading />
|
<x-loading />
|
||||||
|
@ -12,9 +12,10 @@
|
|||||||
@endif
|
@endif
|
||||||
@endforeach
|
@endforeach
|
||||||
</x-forms.select>
|
</x-forms.select>
|
||||||
<x-forms.button class="h-8" type="submit">Run</x-forms.button>
|
<x-forms.button type="submit" class="h-8 hover:bg-coolgray-400 bg-coolgray-200">Execute Command
|
||||||
|
</x-forms.button>
|
||||||
</form>
|
</form>
|
||||||
<div class="container w-full pt-10 mx-auto">
|
<div class="container w-full pt-10 mx-auto">
|
||||||
<livewire:activity-monitor />
|
<livewire:activity-monitor :header="true" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user