fix(acceptance): 允许模拟器调度到专用 Worker

原因:新香港专用 Worker 节点带有 easyai.io/worker-only NoSchedule taint,现有模拟器只有节点选择器,导致线上验收滚动更新长期 Pending。\n\n影响:协议模拟器可在排除数据库与控制面节点的前提下调度到专用 Worker;正式 API、Worker 和流量门禁不变。\n\n验证:生产 API Server server-side dry-run 通过;manual-release-test 通过;git diff --check 通过。
This commit is contained in:
2026-08-01 21:41:07 +08:00
parent 56a5176c92
commit 50a13de70b
@@ -24,6 +24,14 @@ spec:
easyai.io/worker: "true"
easyai.io/database: "false"
easyai.io/workload: "true"
tolerations:
# Dedicated Worker nodes are protected with this taint. The emulator
# deliberately shares their media/CPU path during validation while
# remaining excluded from database and control-plane nodes.
- key: easyai.io/worker-only
operator: Equal
value: "true"
effect: NoSchedule
securityContext:
runAsNonRoot: true
runAsUser: 10001