mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/1Panel-dev/1Panel.git
synced 2026-09-20 16:13:59 +08:00
38 lines
944 B
Go
38 lines
944 B
Go
package constant
|
|
|
|
const (
|
|
StatusSuccess = "Success"
|
|
StatusFailed = "Failed"
|
|
StatusCanceled = "Canceled"
|
|
|
|
// node
|
|
StatusWaiting = "Waiting"
|
|
StatusHealthy = "Healthy"
|
|
StatusStarting = "Starting"
|
|
StatusUnhealthy = "Unhealthy"
|
|
StatusWaitForUpgrade = "WaitForUpgrade"
|
|
StatusUpgrading = "Upgrading"
|
|
StatusRunning = "Running"
|
|
StatusFree = "Free"
|
|
StatusBound = "Bound"
|
|
StatusExceptional = "Exceptional"
|
|
StatusRetrying = "Retrying"
|
|
StatusLost = "Lost"
|
|
StatusExecuting = "Executing"
|
|
|
|
StatusEnable = "Enable"
|
|
StatusDisable = "Disable"
|
|
StatusMux = "Mux"
|
|
|
|
StatusInstalling = "Installing"
|
|
StatusNormal = "Normal"
|
|
StatusDeleted = "Deleted"
|
|
StatusLoading = "Loading"
|
|
|
|
StatusInactive = "Inactive"
|
|
StatusUnknown = "Unknown"
|
|
StatusBuilding = "Building"
|
|
StatusDegraded = "Degraded"
|
|
StatusInaccessible = "Inaccessible"
|
|
)
|