English | 简体中文
通过 YAML 声明式管理 Agent Runtime。本命令组只支持容器模式(用户提供 OCI 镜像;
代码 → 镜像构建不在本命令组范围)。Endpoint 嵌入同一份 YAML;用户不写时 CLI 会自动
注入一个名为 default 的 endpoint(targetVersion=LATEST)。
别名:ar rt。
提示: 执行任何命令前,请先完成 Prerequisites 中的 两步一次性设置。角色或策略缺失会以退出码
3暴露。
- apply — 从 YAML create-or-update,附带状态轮询。
- render — 校验 + 渲染为 SDK 输入(不调用服务端)。
- get — 按名字获取单个 runtime。
- list — 列出 runtime;可用
--created-by-cli或--workspace过滤。 - delete — 删除 runtime(默认等待)。
- status — 查看(可选等待)终态状态。
退出码(在全局表的基础上扩展):
| 码 | 含义 |
|---|---|
5 |
Runtime 或 endpoint 进入 CREATE_FAILED、UPDATE_FAILED 或 DELETE_FAILED。 |
6 |
轮询超过 --timeout。 |
ar runtime apply -f FILE [--wait/--no-wait] [--timeout DURATION]
[--prune-endpoints/--no-prune-endpoints]
| Flag | Type | Required | Default | Description |
|---|---|---|---|---|
-f, --file |
path | yes | YAML 文件路径(支持多文档)。 | |
--wait/--no-wait |
flag | no | --wait |
轮询 runtime + endpoints 到终态。--no-wait 时仅提交 runtime 创建/更新,不会 reconcile endpoint —— 后端在 runtime 处于 CREATING/UPDATING 时会拒绝 endpoint create/update。等 runtime 到 READY 后再 apply 一次即可。 |
--timeout |
duration | no | 10m |
轮询超时。支持 Ns / Nm / Nh 或裸秒数。 |
--prune-endpoints/--no-prune-endpoints |
flag | no | --prune-endpoints |
删除远端存在但 YAML 缺失的 endpoint。 |
YAML 中省略 cpu / memory / port 时,CLI 会自动注入合理默认值(2 核 /
4096 MB / 9000)—— 后端对这三个字段的 null 会回复 HTTP 400。
# 最小可用:仅容器,CLI 自动注入默认 endpoint
cat > runtime.yaml <<'EOF'
apiVersion: agentrun/v1
kind: AgentRuntime
metadata: {name: my-agent}
spec:
container:
image: registry.cn-hangzhou.aliyuncs.com/my-ns/my-agent:v1
EOF
ar runtime apply -f runtime.yaml
# CI 场景:异步提交不等待
ar runtime apply -f runtime.yaml --no-wait
# 自定义超时
ar runtime apply -f runtime.yaml --timeout 20m
# 在 YAML 之间迁移时关闭 prune
ar runtime apply -f runtime.yaml --no-prune-endpointsar runtime render -f FILE
| Flag | Type | Required | Default | Description |
|---|---|---|---|---|
-f, --file |
path | yes | YAML 文件路径(支持多文档)。 |
校验 YAML 并应用 CLI 自动注入(system_tags=["x-agentrun-cli"]、
artifact_type=Container、spec.endpoints 缺省时注入默认 endpoint),
以 JSON 形式打印 SDK create-input,不调用服务端。可在 apply 之前用于预览。
ar runtime get NAME
以 JSON 形式展示一个 Agent Runtime。不存在则退出码 1。
ar runtime get my-agent
ar runtime get my-agent --output quiet # 只打印名字ar runtime list [--created-by-cli] [--workspace NAME]
| Flag | Type | Required | Default | Description |
|---|---|---|---|---|
--created-by-cli |
flag | no | false | 只显示带 x-agentrun-cli 系统标签的 runtime。 |
--workspace |
string | no | 按工作空间名过滤。 |
ar runtime list
ar runtime list --created-by-cli
ar runtime list --output tablear runtime delete NAME [--wait/--no-wait] [--timeout DURATION] [--yes]
| Flag | Type | Required | Default | Description |
|---|---|---|---|---|
--wait/--no-wait |
flag | no | --wait |
阻塞直到资源消失(或失败)。 |
--timeout |
duration | no | 5m |
轮询超时。 |
--yes |
flag | no | false | 跳过交互式确认。 |
ar runtime delete my-agent --yes
ar runtime delete my-agent --no-waitar runtime status NAME [--wait] [--timeout DURATION]
| Flag | Type | Required | Default | Description |
|---|---|---|---|---|
--wait |
flag | no | false | 轮询到 READY / *_FAILED。 |
--timeout |
duration | no | 10m |
轮询超时(仅 --wait 有效)。 |
ar runtime status my-agent
ar runtime status my-agent --wait --timeout 20m完整字段参考、CLI 自动注入规则、校验表与可直接复用的示例(最小、生产、自建 registry) 见 runtime-yaml.md。