wait for server to connect, then provision

This commit is contained in:
2025-03-30 12:30:34 +00:00
parent 20e0a3995f
commit 435a7ac1e3
6 changed files with 107 additions and 10 deletions

View File

@@ -4,8 +4,11 @@ namespace App\Enums;
enum ServerStatus: string
{
case PENDING = 'pending';
case WAITING_FOR_PROVIDER = 'waiting-for-provider';
case PROVIDER_TIMEOUT = 'provider-timeout';
case UNPROVISIONED = 'unprovisioned';
case PROVISIONING = 'provisioning';
case PROVISIONING_FAILED = 'provisioning-failed';
case UPDATING = 'updating';
case ACTIVE = 'active';
case DELETING = 'deleting';