Implement Keystone environment deployments
This commit is contained in:
15
app/Enums/RegistryType.php
Normal file
15
app/Enums/RegistryType.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
use App\Enums\Concerns\Arrayable;
|
||||
|
||||
enum RegistryType: string
|
||||
{
|
||||
use Arrayable;
|
||||
|
||||
case GENERIC = 'generic';
|
||||
case GITEA = 'gitea';
|
||||
case GHCR = 'ghcr';
|
||||
case DOCKER_HUB = 'docker_hub';
|
||||
}
|
||||
Reference in New Issue
Block a user