- Add .woodpecker.yml with build steps for api, worker, claudebox - Update K8s manifests to use registry.threesix.ai/rdev/* - Remove ghcr-secret imagePullSecrets (Zot is unauthenticated) Builds will run on Woodpecker using kaniko, pushing to our internal Zot registry. This eliminates the QEMU cross-compilation issues on Apple Silicon. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
90 lines
2.0 KiB
YAML
90 lines
2.0 KiB
YAML
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: claudebox
|
|
namespace: rdev
|
|
labels:
|
|
app.kubernetes.io/name: claudebox
|
|
app.kubernetes.io/part-of: rdev
|
|
spec:
|
|
serviceName: claudebox
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: claudebox
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: claudebox
|
|
app.kubernetes.io/name: claudebox
|
|
app.kubernetes.io/part-of: rdev
|
|
rdev.orchard9.ai/role: worker
|
|
spec:
|
|
containers:
|
|
- name: claudebox
|
|
image: registry.threesix.ai/rdev/claudebox:latest
|
|
imagePullPolicy: Always
|
|
|
|
resources:
|
|
requests:
|
|
cpu: "500m"
|
|
memory: "1Gi"
|
|
limits:
|
|
cpu: "2"
|
|
memory: "4Gi"
|
|
|
|
volumeMounts:
|
|
# Workspace for projects
|
|
- name: workspace
|
|
mountPath: /workspace
|
|
|
|
# Claude config directory (persistent for auth)
|
|
- name: claude-config
|
|
mountPath: /root/.claude
|
|
|
|
# Simple liveness check - container is running
|
|
livenessProbe:
|
|
exec:
|
|
command:
|
|
- cat
|
|
- /healthcheck.sh
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 60
|
|
|
|
# Readiness - claude CLI is available
|
|
readinessProbe:
|
|
exec:
|
|
command:
|
|
- claude
|
|
- --version
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 30
|
|
timeoutSeconds: 10
|
|
|
|
volumes:
|
|
- name: workspace
|
|
persistentVolumeClaim:
|
|
claimName: claudebox-workspace
|
|
|
|
- name: claude-config
|
|
persistentVolumeClaim:
|
|
claimName: claudebox-claude-config
|
|
|
|
---
|
|
# Headless service for StatefulSet
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: claudebox
|
|
namespace: rdev
|
|
labels:
|
|
app.kubernetes.io/name: claudebox
|
|
app.kubernetes.io/part-of: rdev
|
|
spec:
|
|
clusterIP: None
|
|
selector:
|
|
app: claudebox
|
|
ports:
|
|
- port: 8080
|
|
name: http
|