mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-08 14:37:29 +08:00
28 lines
644 B
Go
28 lines
644 B
Go
package constant
|
|
|
|
const (
|
|
StatusSuccess = "Success"
|
|
StatusFailed = "Failed"
|
|
|
|
// node
|
|
StatusWaiting = "Waiting"
|
|
StatusHealthy = "Healthy"
|
|
StatusStarting = "Starting"
|
|
StatusUnhealthy = "Unhealthy"
|
|
StatusUpgrading = "Upgrading"
|
|
StatusRunning = "Running"
|
|
StatusFree = "Free"
|
|
StatusBound = "Bound"
|
|
StatusExceptional = "Exceptional"
|
|
StatusRetrying = "Retrying"
|
|
StatusLost = "Lost"
|
|
StatusExecuting = "Executing"
|
|
|
|
StatusEnable = "Enable"
|
|
StatusDisable = "Disable"
|
|
|
|
StatusInstalling = "Installing"
|
|
StatusNormal = "Normal"
|
|
StatusDeleted = "Deleted"
|
|
StatusLoading = "Loading"
|
|
)
|