合并无重叠 scheduler 滚动策略
yaml / yaml (push) Failing after 1m1s

修复 Flux SSA strategy 冲突。
This commit was merged in pull request #112.
This commit is contained in:
2026-09-20 21:05:02 +00:00
2 changed files with 6 additions and 3 deletions
+2 -1
View File
@@ -22,7 +22,8 @@ OpenSandbox chart 所有权边界。
## Canary 安全边界
- Deployment 为单副本 `Recreate`,避免两个 scheduler 共享同一个 Gitea runner 身份。
- Deployment 为单副本,滚动策略固定 `maxSurge: 0`、`maxUnavailable: 1`,避免两个
scheduler 共享同一个 Gitea runner 身份。
- controller 的 single-flight gate 只允许一个已领取 task 运行;Gitea 接受终态
`UpdateTask` 后才领取下一条。`POD_CAPACITY=1` 同时限制 worker 创建并发。
- executor 镜像使用 digest;Pod 以 UID 2000 运行,SPIRE `ClusterStaticEntry` 同时绑定
+4 -2
View File
@@ -6,8 +6,10 @@ metadata:
spec:
replicas: 1
strategy:
type: Recreate
rollingUpdate: null
type: RollingUpdate
rollingUpdate:
maxSurge: 0
maxUnavailable: 1
selector:
matchLabels:
app.kubernetes.io/name: dynamic-runner-controller