|
| 1 | +--- |
| 2 | +# Helm values examples for deploying PersonaPacks via the Sympozium chart. |
| 3 | +# |
| 4 | +# Install with: |
| 5 | +# helm install sympozium ./charts/sympozium -f personapack-helm-values-examples.yaml |
| 6 | +# |
| 7 | +# These values show different ways to configure persona packs at install time. |
| 8 | + |
| 9 | +# ───────────────────────────────────────────────────────────────────────────── |
| 10 | +# Example 1: Enable built-in packs (deployed from charts/sympozium/files/personas/) |
| 11 | +# ───────────────────────────────────────────────────────────────────────────── |
| 12 | +defaultPersonas: |
| 13 | + enabled: true # Installs developer-team, devops-essentials, platform-team |
| 14 | + |
| 15 | +# ───────────────────────────────────────────────────────────────────────────── |
| 16 | +# Example 2: Override values for an existing pack post-install |
| 17 | +# ───────────────────────────────────────────────────────────────────────────── |
| 18 | +# After helm install, activate and configure the developer-team pack: |
| 19 | +# |
| 20 | +# kubectl patch personapack developer-team --type=merge -p '{ |
| 21 | +# "spec": { |
| 22 | +# "enabled": true, |
| 23 | +# "authRefs": [{"provider": "openai", "secret": "dev-team-openai-key"}], |
| 24 | +# "skillParams": { |
| 25 | +# "github-gitops": {"repo": "myorg/myapp"} |
| 26 | +# }, |
| 27 | +# "taskOverride": "Build the v2 REST API. Focus on backward compatibility." |
| 28 | +# } |
| 29 | +# }' |
| 30 | +# |
| 31 | +# Or via the TUI: sympozium → Personas tab → select pack → Enter |
| 32 | + |
| 33 | +# ───────────────────────────────────────────────────────────────────────────── |
| 34 | +# Example 3: Activate via the Sympozium API server |
| 35 | +# ───────────────────────────────────────────────────────────────────────────── |
| 36 | +# The API server exposes a PATCH endpoint for PersonaPacks: |
| 37 | +# |
| 38 | +# curl -X PATCH http://localhost:19090/api/v1/personapacks/developer-team \ |
| 39 | +# -H "Content-Type: application/json" \ |
| 40 | +# -d '{ |
| 41 | +# "enabled": true, |
| 42 | +# "provider": "anthropic", |
| 43 | +# "secretName": "dev-team-anthropic-key", |
| 44 | +# "model": "claude-sonnet-4-20250514", |
| 45 | +# "skillParams": { |
| 46 | +# "github-gitops": {"repo": "myorg/myapp"} |
| 47 | +# }, |
| 48 | +# "taskOverride": "Migrate the codebase from Express to Fastify." |
| 49 | +# }' |
| 50 | + |
| 51 | +# ───────────────────────────────────────────────────────────────────────────── |
| 52 | +# Example 4: Custom PersonaPack in a Helm post-install hook |
| 53 | +# ───────────────────────────────────────────────────────────────────────────── |
| 54 | +# Place this in charts/sympozium/templates/custom-pack.yaml: |
| 55 | +# |
| 56 | +# apiVersion: sympozium.ai/v1alpha1 |
| 57 | +# kind: PersonaPack |
| 58 | +# metadata: |
| 59 | +# name: my-custom-team |
| 60 | +# annotations: |
| 61 | +# "helm.sh/hook": post-install |
| 62 | +# spec: |
| 63 | +# enabled: true |
| 64 | +# description: "My custom team" |
| 65 | +# category: custom |
| 66 | +# authRefs: |
| 67 | +# - provider: openai |
| 68 | +# secret: my-team-openai-key |
| 69 | +# skillParams: |
| 70 | +# github-gitops: |
| 71 | +# repo: "myorg/myapp" |
| 72 | +# taskOverride: "Ship the MVP by end of sprint." |
| 73 | +# personas: |
| 74 | +# - name: dev |
| 75 | +# displayName: "Developer" |
| 76 | +# systemPrompt: "You are a full-stack developer." |
| 77 | +# model: gpt-4o |
| 78 | +# skills: [github-gitops, code-review, software-dev] |
| 79 | +# schedule: |
| 80 | +# type: sweep |
| 81 | +# interval: "1h" |
| 82 | +# task: "Pick up the top issue and implement it." |
| 83 | + |
| 84 | +# ───────────────────────────────────────────────────────────────────────────── |
| 85 | +# Example 5: Deploying with Ollama (no API key, local models) |
| 86 | +# ───────────────────────────────────────────────────────────────────────────── |
| 87 | +# kubectl patch personapack developer-team --type=merge -p '{ |
| 88 | +# "spec": { |
| 89 | +# "enabled": true, |
| 90 | +# "authRefs": [{"provider": "ollama"}], |
| 91 | +# "skillParams": { |
| 92 | +# "github-gitops": {"repo": "myorg/myapp"} |
| 93 | +# } |
| 94 | +# } |
| 95 | +# }' |
| 96 | +# |
| 97 | +# Each persona will use Ollama's default model. Override per-persona with: |
| 98 | +# spec.personas[].model: "llama3" |
0 commit comments