mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-31 19:26:02 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			489 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			489 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package constant
 | |
| 
 | |
| const (
 | |
| 	StatusSuccess = "Success"
 | |
| 	StatusFailed  = "Failed"
 | |
| 
 | |
| 	// node
 | |
| 	StatusWaiting     = "Waiting"
 | |
| 	StatusHealthy     = "Healthy"
 | |
| 	StatusUnhealthy   = "Unhealthy"
 | |
| 	StatusUpgrading   = "Upgrading"
 | |
| 	StatusRunning     = "Running"
 | |
| 	StatusFree        = "Free"
 | |
| 	StatusBound       = "Bound"
 | |
| 	StatusExceptional = "Exceptional"
 | |
| 	StatusRetrying    = "Retrying"
 | |
| 	StatusLost        = "Lost"
 | |
| 	StatusExecuting   = "Executing"
 | |
| 
 | |
| 	StatusEnable  = "Enable"
 | |
| 	StatusDisable = "Disable"
 | |
| )
 |