Kalytera has been deployed!

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  Kalytera v{{ .Chart.AppVersion }} — {{ .Release.Name }}
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

{{- if .Values.ingress.enabled }}
API endpoint:       https://{{ (index .Values.ingress.hosts 0).host }}
Dashboard:          https://{{ (index .Values.ingress.hosts 1).host }}
{{- else }}
Access the API by running:
  kubectl port-forward svc/{{ include "kalytera.fullname" . }}-api 8000:{{ .Values.api.port }}
  → http://localhost:8000

Access the dashboard by running:
  kubectl port-forward svc/{{ include "kalytera.fullname" . }}-dashboard 8501:{{ .Values.dashboard.port }}
  → http://localhost:8501
{{- end }}

Point your SDK at the API endpoint:
  import kalytera
  kalytera.configure(
      api_key="{{ .Values.secrets.kalyteraApiKey | default "your-kalytera-api-key" }}",
      api_endpoint="http://<your-api-host>:{{ .Values.api.port }}",
  )

Load demo data (optional):
  kubectl exec -it deploy/{{ include "kalytera.fullname" . }}-api -- python3 seed_data.py

View logs:
  kubectl logs -l app.kubernetes.io/name={{ include "kalytera.name" . }},app.kubernetes.io/component=api -f

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Need help? priya@kalytera.ai
