feat: support lite/pro runtime modes and runtime rollout

This commit is contained in:
Qingshan Chen
2026-06-14 14:30:47 +08:00
parent 22b7868b4a
commit aea224426f
197 changed files with 34057 additions and 4456 deletions
+8
View File
@@ -8,6 +8,7 @@ on:
- 'feature/**'
- 'fix/**'
pull_request:
workflow_dispatch:
permissions:
contents: read
@@ -106,6 +107,7 @@ jobs:
uses: helm/kind-action@v1.12.0
with:
cluster_name: clawmanager-ci
ignore_failed_clean: true
- name: Load image into kind
run: kind load docker-image clawmanager:ci --name clawmanager-ci
@@ -157,6 +159,12 @@ jobs:
count=1,
)
text = re.sub(
r"(\n\s+- name: workspaces\s+)nfs:\s+server: workspace-store\.clawmanager-system\.svc\.cluster\.local\s+path: /exports/workspaces",
r"\1emptyDir: {}",
text,
)
path.write_text(text, encoding="utf-8")
PY