feat(falkordb): install FalkorDB

This commit is contained in:
Masaki Yatsu
2025-11-30 16:22:19 +09:00
parent 0032b0c4b4
commit 162d4241cd
15 changed files with 915 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
FalkorDB has been deployed!
Get the connection information:
Host: {{ include "falkordb.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local
Port: {{ .Values.service.port }}
{{- if .Values.auth.enabled }}
Get the password:
kubectl get secret {{ .Values.auth.existingSecret | default (printf "%s-password" (include "falkordb.fullname" .)) }} \
-n {{ .Release.Namespace }} \
-o jsonpath="{.data.{{ .Values.auth.existingSecretPasswordKey }}}" | base64 -d
{{- end }}
Test the connection:
redis-cli -h {{ include "falkordb.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local \
-p {{ .Values.service.port }} \
{{- if .Values.auth.enabled }}
-a <password> \
{{- end }}
PING
Run a Cypher query:
redis-cli -h {{ include "falkordb.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local \
-p {{ .Values.service.port }} \
{{- if .Values.auth.enabled }}
-a <password> \
{{- end }}
GRAPH.QUERY mygraph "CREATE (:Person {name: 'Alice'})"