-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cvi): apply new controller design
Signed-off-by: Isteb4k <[email protected]>
- Loading branch information
Showing
53 changed files
with
3,699 additions
and
1,067 deletions.
There are no files selected for viewing
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,25 @@ | ||
{ | ||
"feature": { | ||
"network": { | ||
"incoming": "steal", | ||
"outgoing": true | ||
}, | ||
"fs": { | ||
"mode": "read", | ||
"read_only": "^/tmp/" | ||
}, | ||
"env": true | ||
}, | ||
"agent": { | ||
"communication_timeout": 600, | ||
"startup_timeout": 5600 | ||
}, | ||
"internal_proxy": { | ||
"start_idle_timeout": 1300, | ||
"idle_timeout": 150 | ||
}, | ||
"target": { | ||
"namespace": "d8-virtualization", | ||
"path": "deployment/virtualization-controller/container/virtualization-controller" | ||
} | ||
} |
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,38 @@ | ||
package cvicondition | ||
|
||
type Type = string | ||
|
||
const ( | ||
DatasourceReady Type = "DatasourceReady" | ||
ProvisioningPodStarted Type = "ProvisioningPodStarted" | ||
UserUploadStarted Type = "UserUploadStarted" | ||
Ready Type = "Ready" | ||
) | ||
|
||
type DatasourceReadyReason = string | ||
|
||
const ( | ||
ContainerRegistrySecretNotFound DatasourceReadyReason = "ContainerRegistrySecretNotFound" | ||
ImageNotReady DatasourceReadyReason = "ImageNotReady" | ||
ClusterImageNotReady DatasourceReadyReason = "ClusterImageNotReady" | ||
) | ||
|
||
type ProvisioningPodStartedReason = string | ||
|
||
const ( | ||
PodNotStarted ProvisioningPodStartedReason = "PodNotStarted" | ||
) | ||
|
||
type UserUploadStartedReason = string | ||
|
||
const ( | ||
NonUploadDataSource UserUploadStartedReason = "NonUploadDataSource" | ||
NotStartedYet UserUploadStartedReason = "NotStartedYet" | ||
) | ||
|
||
type ReadyReason = string | ||
|
||
const ( | ||
BadImageChecksum ReadyReason = "BadImageChecksum" | ||
ImportFailed ReadyReason = "ImportFailed" | ||
) |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.