Agorio Cloud is deploying.

Release:   {{ .Release.Name }}
Namespace: {{ .Release.Namespace }}
Image:     {{ include "agorio-cloud.image" . }}

{{- if .Values.postgresql.enabled }}

Database:  bundled PostgreSQL sub-chart ({{ .Release.Name }}-postgresql).
           For production, prefer a managed Postgres: set postgresql.enabled=false
           and externalDatabase.url.
{{- else }}

Database:  external ({{ .Values.externalDatabase.url | default "<unset!>" }})
{{- end }}

{{- if not .Values.neonAuth.projectId }}

⚠  Neon Auth is not configured — running in anonymous-trace-only mode. The
   /traces explorer works against ingested data, but API-key issuance and
   sign-in are disabled. Set neonAuth.* to enable SSO (see chart README).
{{- end }}

Reach the app:
{{- if .Values.ingress.enabled }}
  Ingress is enabled:
  {{- range .Values.ingress.hosts }}
    http{{ if $.Values.ingress.tls }}s{{ end }}://{{ .host }}
  {{- end }}
{{- else }}
  Port-forward:
    kubectl --namespace {{ .Release.Namespace }} port-forward svc/{{ include "agorio-cloud.fullname" . }} 3001:{{ .Values.service.port }}
  then open http://localhost:3001
{{- end }}

Point your agents' agorioCloud({ apiKey }) at this deployment's /api/ingest.
