|
1234567891011121314151617181920212223242526272829303132333435 |
- /*
-
- Copyright (c) [2023] [pcm]
- [pcm-coordinator] is licensed under Mulan PSL v2.
- You can use this software according to the terms and conditions of the Mulan PSL v2.
- You may obtain a copy of Mulan PSL v2 at:
- http://license.coscl.org.cn/MulanPSL2
- THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
- EITHER EXPaRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
- MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
- See the Mulan PSL v2 for more details.
-
- */
-
- package constants
-
- // 任务状态类型
- const (
- WaitDelete = "WaitDelete"
- Deleted = "Deleted"
- WaitRestart = "WaitRestart"
- WaitPause = "WaitPause"
- WaitStart = "WaitStart"
-
- Completed = "Completed" //已完成
- Succeeded = "Succeeded" //成功
- Failed = "Failed" //失败
- Saved = "Saved" //已保存
- Running = "Running" //运行中
- Pending = "Pending" //挂起
- Stopped = "Stopped" //已停止
- Deploying = "Deploying" //部署中
- Cancelled = "Cancelled" //已取消
- Waiting = "Waiting" //等待中
- )
|