Skip to content

Commit 3ec19be

Browse files
Ladasclaude
andcommitted
feat: Add environments ConfigMap for team1 namespace
- Creates environments ConfigMap required by kagenti UI - Contains container registry and environment configuration - Fixes "ConfigMap 'environments' not found" errors in UI logs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent bf18c2e commit 3ec19be

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Environments ConfigMap for kagenti UI
2+
# Required for agent build environment configuration
3+
apiVersion: v1
4+
kind: ConfigMap
5+
metadata:
6+
name: environments
7+
namespace: team1
8+
labels:
9+
app.kubernetes.io/name: environments
10+
app.kubernetes.io/part-of: kagenti
11+
app.kubernetes.io/component: agents
12+
data:
13+
# Container registry configuration for agent builds
14+
CONTAINER_REGISTRY: "localhost:5000"
15+
# Build environment
16+
ENVIRONMENT: "kind-local"

components/03-applications/agents/kustomization.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ namespace: team1
99
resources:
1010
- namespace.yaml
1111
- github-token-secret.yaml
12+
- environments-configmap.yaml
1213
- research-agent.yaml
1314
- code-agent.yaml
1415
- orchestrator-agent.yaml

0 commit comments

Comments
 (0)