-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
- [Experimental Langfuse chart](langfuse/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
``` |