Merge pull request #557 from lavalamp/podLocation
Prepare for external scheduler
This commit is contained in:
@@ -208,9 +208,12 @@ type PodStatus string
|
||||
|
||||
// These are the valid statuses of pods.
|
||||
const (
|
||||
// PodWaiting means that we're waiting for the pod to begin running.
|
||||
PodWaiting PodStatus = "Waiting"
|
||||
// PodRunning means that the pod is up and running.
|
||||
PodRunning PodStatus = "Running"
|
||||
PodPending PodStatus = "Pending"
|
||||
PodStopped PodStatus = "Stopped"
|
||||
// PodTerminated means that the pod has stopped.
|
||||
PodTerminated PodStatus = "Terminated"
|
||||
)
|
||||
|
||||
// PodInfo contains one entry for every container with available info.
|
||||
|
@@ -211,9 +211,12 @@ type PodStatus string
|
||||
|
||||
// These are the valid statuses of pods.
|
||||
const (
|
||||
// PodWaiting means that we're waiting for the pod to begin running.
|
||||
PodWaiting PodStatus = "Waiting"
|
||||
// PodRunning means that the pod is up and running.
|
||||
PodRunning PodStatus = "Running"
|
||||
PodPending PodStatus = "Pending"
|
||||
PodStopped PodStatus = "Stopped"
|
||||
// PodTerminated means that the pod has stopped.
|
||||
PodTerminated PodStatus = "Terminated"
|
||||
)
|
||||
|
||||
// PodInfo contains one entry for every container with available info.
|
||||
|
Reference in New Issue
Block a user