From 027230ee51a290b3066f60d1f811674952cd4f7c Mon Sep 17 00:00:00 2001 From: Ilya Nikokoshev Date: Fri, 5 Jan 2024 14:13:42 +0100 Subject: [PATCH] feat: add README --- README.md | 1 + langfuse/README.md | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 README.md create mode 100644 langfuse/README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d7270ab --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +- [Experimental Langfuse chart](langfuse/) diff --git a/langfuse/README.md b/langfuse/README.md new file mode 100644 index 0000000..8e8588d --- /dev/null +++ b/langfuse/README.md @@ -0,0 +1,28 @@ +# Experimental Langfuse chart + +See [values.yaml](values.yaml) for the chart values. They are subject to change! + +## Installation + +Example installation: + +```shell +helm install langfuse-demo https://github.com/ilyannn/charts/langfuse -f values.yaml +``` + +### Default Installation + +With the default values, Langfuse will be installed with the bundled Postgres. +The password will be generated and saved in a secret (in this case, `langfuse-demo-postgres-secret`) + + +### Connecting existing Postgres instance + +You can pass the exising connection URL. + +```yaml +databaseURL: "postgresql://some-existing-url" + +postgresql: + enabled: false +```