-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: #36 support deployment from the private registreis
- Loading branch information
1 parent
ee7fda4
commit 6093084
Showing
40 changed files
with
630 additions
and
57 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
app/Events/NodeTasks/CheckRegistryAuth/CheckRegistryAuthCompleted.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
namespace App\Events\NodeTasks\CheckRegistryAuth; | ||
|
||
use App\Events\NodeTasks\BaseTaskEvent; | ||
|
||
class CheckRegistryAuthCompleted extends BaseTaskEvent | ||
{ | ||
} |
9 changes: 9 additions & 0 deletions
9
app/Events/NodeTasks/CheckRegistryAuth/CheckRegistryAuthFailed.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
namespace App\Events\NodeTasks\CheckRegistryAuth; | ||
|
||
use App\Events\NodeTasks\BaseTaskEvent; | ||
|
||
class CheckRegistryAuthFailed extends BaseTaskEvent | ||
{ | ||
} |
9 changes: 9 additions & 0 deletions
9
app/Events/NodeTasks/CreateRegistryAuth/CreateRegistryAuthCompleted.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
namespace App\Events\NodeTasks\CreateRegistryAuth; | ||
|
||
use App\Events\NodeTasks\BaseTaskEvent; | ||
|
||
class CreateRegistryAuthCompleted extends BaseTaskEvent | ||
{ | ||
} |
9 changes: 9 additions & 0 deletions
9
app/Events/NodeTasks/CreateRegistryAuth/CreateRegistryAuthFailed.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
namespace App\Events\NodeTasks\CreateRegistryAuth; | ||
|
||
use App\Events\NodeTasks\BaseTaskEvent; | ||
|
||
class CreateRegistryAuthFailed extends BaseTaskEvent | ||
{ | ||
} |
9 changes: 9 additions & 0 deletions
9
app/Events/NodeTasks/PullDockerImage/PullDockerImageCompleted.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
namespace App\Events\NodeTasks\PullDockerImage; | ||
|
||
use App\Events\NodeTasks\BaseTaskEvent; | ||
|
||
class PullDockerImageCompleted extends BaseTaskEvent | ||
{ | ||
} |
9 changes: 9 additions & 0 deletions
9
app/Events/NodeTasks/PullDockerImage/PullDockerImageFailed.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
namespace App\Events\NodeTasks\PullDockerImage; | ||
|
||
use App\Events\NodeTasks\BaseTaskEvent; | ||
|
||
class PullDockerImageFailed extends BaseTaskEvent | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
|
||
namespace App\Models; | ||
|
||
enum DockerConfigKind: string | ||
{ | ||
case RegistryCredentials = 'registry-credentials'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.