1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-02-08 01:20:07 +08:00
1Panel/core/constant/status.go

23 lines
531 B
Go
Raw Normal View History

2024-07-19 19:04:11 +08:00
package constant
const (
StatusSuccess = "success"
StatusFailed = "failed"
2024-07-29 14:13:47 +08:00
// node
StatusWaiting = "waiting"
StatusDownloading = "downloading"
StatusPacking = "packing"
StatusSending = "sending"
StatusStarting = "starting"
StatusHealthy = "healthy"
StatusUnhealthy = "unhealthy"
StatusUpgrading = "upgrading"
StatusRunning = "running"
StatusFree = "free"
StatusBound = "bound"
StatusExceptional = "exceptional"
StatusRetrying = "retrying"
StatusLost = "lost"
2024-07-19 19:04:11 +08:00
)