Split bluejay-tools into 3 ConfigMaps (K8s 262K annotation limit)

This commit is contained in:
Claude Code
2026-04-08 18:09:49 +00:00
parent d16f72f089
commit 0af47f893a

View File

@@ -1,5 +1,6 @@
# Blue Jay Profile ConfigMaps for Agent Zero NUC # Blue Jay Profile ConfigMaps for Agent Zero NUC
# Generated 2026-04-08 — source: scripts/agent-zero/ # Generated 2026-04-08 — source: scripts/agent-zero/
# Tools split into 3 ConfigMaps to stay under K8s annotation limit (262K)
--- ---
apiVersion: v1 apiVersion: v1
@@ -3062,6 +3063,14 @@ data:
The `repo_path` parameter should be relative to `/a0/work/repos/`. The `repo_path` parameter should be relative to `/a0/work/repos/`.
For example: `"FlowerCore/FlowerCore.Notes"` not `"/a0/work/repos/FlowerCore/FlowerCore.Notes"`. For example: `"FlowerCore/FlowerCore.Notes"` not `"/a0/work/repos/FlowerCore/FlowerCore.Notes"`.
""" """
kind: ConfigMap
metadata:
name: bluejay-tools-a
namespace: agent-zero
---
apiVersion: v1
data:
kiwix_search.py: | kiwix_search.py: |
# Kiwix Offline Wikipedia Search Tool # Kiwix Offline Wikipedia Search Tool
# Searches Simple English Wikipedia via the Kiwix server running in the agent-zero K8s namespace. # Searches Simple English Wikipedia via the Kiwix server running in the agent-zero K8s namespace.
@@ -8484,6 +8493,14 @@ data:
If PHP is installed in the container, artisan-based commands will use it for accurate results. If PHP is installed in the container, artisan-based commands will use it for accurate results.
Otherwise, the tool falls back to static file analysis (grep/find) which covers most use cases. Otherwise, the tool falls back to static file analysis (grep/find) which covers most use cases.
""" """
kind: ConfigMap
metadata:
name: bluejay-tools-b
namespace: agent-zero
---
apiVersion: v1
data:
print_web.py: | print_web.py: |
# FlowerCore Print.Web Integration Tool # FlowerCore Print.Web Integration Tool
# Interfaces with the thermal print service at https://print.iamworkin.lan # Interfaces with the thermal print service at https://print.iamworkin.lan
@@ -13135,7 +13152,7 @@ data:
""" """
kind: ConfigMap kind: ConfigMap
metadata: metadata:
name: bluejay-tools name: bluejay-tools-c
namespace: agent-zero namespace: agent-zero
--- ---