1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-19 16:29:17 +08:00
1Panel/core/constant/status.go

26 lines
583 B
Go
Raw Normal View History

2024-07-19 19:04:11 +08:00
package constant
const (
2024-12-19 14:30:20 +08:00
StatusSuccess = "Success"
StatusFailed = "Failed"
2024-07-29 14:13:47 +08:00
// node
2024-12-19 14:30:20 +08:00
StatusWaiting = "Waiting"
StatusPacking = "Packing"
StatusSending = "Sending"
StatusStarting = "Starting"
StatusHealthy = "Healthy"
StatusUnhealthy = "Unhealthy"
StatusUpgrading = "Upgrading"
StatusRunning = "Running"
StatusFree = "Free"
StatusBound = "Bound"
StatusExceptional = "Exceptional"
StatusRetrying = "Retrying"
StatusLost = "Lost"
StatusExecuting = "Executing"
2024-12-19 14:30:20 +08:00
StatusEnable = "Enable"
StatusDisable = "Disable"
2024-07-19 19:04:11 +08:00
)