╔══════════════════════════════════════════════════════════════╗
║          Thank you for installing AgentArea! 🚀              ║
╚══════════════════════════════════════════════════════════════╝

Release: {{ .Release.Name }}
Namespace: {{ .Release.Namespace }}

Components deployed:
✓ Backend API ({{ include "agentarea.fullname" . }}-backend:8000)
✓ Frontend ({{ include "agentarea.fullname" . }}-frontend:3000)
✓ Temporal Worker ({{ include "agentarea.fullname" . }}-worker)
✓ MCP Manager ({{ include "agentarea.fullname" . }}-mcp-manager:80)
✓ Temporal Server ({{ include "agentarea.fullname" . }}-temporal:7233)
✓ Temporal UI ({{ include "agentarea.fullname" . }}-temporal-ui:8080)
{{- if .Values.postgresql.enabled }}
✓ PostgreSQL ({{ .Release.Name }}-postgresql:5432)
{{- end }}
{{- if .Values.redis.enabled }}
✓ Redis ({{ .Release.Name }}-redis-master:6379)
{{- end }}
{{- if .Values.rustfs.enabled }}
✓ RustFS ({{ .Release.Name }}-rustfs:9000)
{{- end }}
{{- if .Values.kratos.enabled }}
✓ Kratos Public ({{ include "agentarea.fullname" . }}-kratos-public:4433)
✓ Kratos Admin ({{ include "agentarea.fullname" . }}-kratos-admin:4434)
   JWKS Secret: {{ default (printf "%s-kratos-jwks" .Release.Name) .Values.kratos.secretName }} (auto-generated on install)
{{- end }}

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

📋 Getting Started:

1. Check deployment status:
   kubectl get pods -n {{ .Release.Namespace }} -l app.kubernetes.io/instance={{ .Release.Name }}

2. Access the Frontend:
   kubectl port-forward -n {{ .Release.Namespace }} svc/{{ include "agentarea.fullname" . }}-frontend 3000:3000

   Then open: http://localhost:3000

3. Access the Backend API:
   kubectl port-forward -n {{ .Release.Namespace }} svc/{{ include "agentarea.fullname" . }}-backend 8000:8000

   Then open: http://localhost:8000/docs

4. Access Temporal UI:
   kubectl port-forward -n {{ .Release.Namespace }} svc/{{ include "agentarea.fullname" . }}-temporal-ui 8080:8080

   Then open: http://localhost:8080

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

🔍 Troubleshooting:

View logs:
  kubectl logs -n {{ .Release.Namespace }} -l app.kubernetes.io/instance={{ .Release.Name }} --all-containers=true -f

Check specific component:
  kubectl logs -n {{ .Release.Namespace }} -l app.kubernetes.io/component=backend -f

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

📚 Documentation: https://github.com/agentarea/agentarea
