Cognee has been deployed.

1. Access the API:

   kubectl port-forward svc/{{ include "cognee.fullname" . }} -n {{ .Release.Namespace }} 8000:8000

   API available at http://localhost:8000

2. Check pod status:

   kubectl get pods -n {{ .Release.Namespace }} -l app.kubernetes.io/instance={{ .Release.Name }}

3. View logs:

   kubectl logs -n {{ .Release.Namespace }} -l app.kubernetes.io/name={{ include "cognee.name" . }} -f

{{- if not .Values.existingSecret }}

WARNING: No existingSecret is set. A dev Secret with an empty LLM_API_KEY
was created. Patch it before use:

  kubectl patch secret {{ include "cognee.fullname" . }}-secret \
    -n {{ .Release.Namespace }} \
    --type=merge \
    -p '{"data":{"LLM_API_KEY":"'$(echo -n "YOUR_KEY" | base64)'"}}'

For production, set existingSecret to the name of a pre-created Secret
containing LLM_API_KEY and DB_PASSWORD.
{{- end }}

{{- if gt (int .Values.replicaCount) 1 }}

NOTE: replicaCount is {{ .Values.replicaCount }}. The repository contains
process-local locks and caches. Validate distributed coordination before
running multiple replicas in production.
{{- end }}
