1
0
mirror of https://github.com/rancher/types.git synced 2025-08-06 06:53:25 +00:00

add installed node driver status

This commit is contained in:
Aiwantaozi 2018-03-27 16:19:30 +08:00
parent 0e7e7a5fd8
commit fd9b83fc13
2 changed files with 2 additions and 0 deletions

View File

@ -200,6 +200,7 @@ type NodeDriverStatus struct {
var (
NodeDriverConditionDownloaded condition.Cond = "Downloaded"
NodeDriverConditionInstalled condition.Cond = "Installed"
NodeDriverConditionActive condition.Cond = "Active"
NodeDriverConditionInactive condition.Cond = "Inactive"
)

View File

@ -40,6 +40,7 @@ var transitioningMap = map[string]string{
"Downloaded": "downloading",
"Inactive": "deactivating",
"Initialized": "initializing",
"Installed": "installing",
"NodesCreated": "provisioning",
"Pending": "pending",
"PodScheduled": "scheduling",