AgentDrift has been deployed!

1. Get the application URL:
{{- if .Values.ingress.enabled }}
{{- range .Values.ingress.hosts }}
  Dashboard: http{{ if $.Values.ingress.tls }}s{{ end }}://{{ .host }}
  API:       http{{ if $.Values.ingress.tls }}s{{ end }}://{{ .host }}/api
{{- end }}
{{- else }}
  # Port-forward the web dashboard:
  kubectl port-forward svc/{{ include "agentdrift.fullname" . }}-web 3000:{{ .Values.web.service.port }}

  # Port-forward the API (optional):
  kubectl port-forward svc/{{ include "agentdrift.fullname" . }}-api 8888:{{ .Values.api.service.port }}

  Then open http://localhost:3000
{{- end }}

2. Seed demo data (optional):
  kubectl exec -it deploy/{{ include "agentdrift.fullname" . }}-api -- agentdrift --db /data/agentdrift.db seed

NOTE: This deployment uses SQLite with a PersistentVolumeClaim.
      API replicas are limited to 1 due to SQLite's single-writer constraint.
      For production scale, consider migrating to PostgreSQL.
