1
0
mirror of https://github.com/rancher/types.git synced 2025-09-17 23:38:20 +00:00

Merge pull request #319 from aiwantaozi/node_driver

add installed node driver status
This commit is contained in:
Alena Prokharchyk
2018-03-29 20:21:44 -07:00
committed by GitHub
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",