-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: propagate forcePathStyle correctly through helm chart (#96)
- Loading branch information
1 parent
a338af3
commit ec85946
Showing
5 changed files
with
47 additions
and
17 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 |
---|---|---|
|
@@ -45,6 +45,9 @@ The required configuration options to set are: | |
# langfuse: | ||
# encryptionKey: | ||
# value: "" | ||
langfuse: | ||
salt: | ||
value: secureSalt | ||
|
||
nextauth: | ||
secret: | ||
|
@@ -66,12 +69,17 @@ The required configuration options to set are: | |
They can alternatively set via secret references (the secrets must exist): | ||
```yaml | ||
# Optional, but highly recommended. Generate via `openssl rand -hex 32`. | ||
# langfuse: | ||
# encryptionKey: | ||
# secretKeyRef: | ||
# name: langfuse-encryption-key-secret | ||
# key: encryptionKey | ||
# Optional, but highly recommended. Generate via `openssl rand -hex 32`. | ||
# langfuse: | ||
# encryptionKey: | ||
# secretKeyRef: | ||
# name: langfuse-encryption-key-secret | ||
# key: encryptionKey | ||
langfuse: | ||
salt: | ||
secretKeyRef: | ||
name: langfuse-general | ||
key: salt | ||
|
||
nextauth: | ||
secret: | ||
|
@@ -117,6 +125,28 @@ postgresql: | |
shadowDatabaseUrl: postgres://my-username:[email protected] | ||
``` | ||
#### With an external S3 bucket | ||
```yaml | ||
[...] | ||
s3: | ||
deploy: false | ||
bucket: "langfuse-bucket" | ||
region: "eu-west-1" | ||
endpoint: "https://s3.eu-west-1.amazonaws.com" | ||
forcePathStyle: false | ||
accessKeyId: | ||
value: "mykey" | ||
secretAccessKey: | ||
value: "mysecret" | ||
eventUpload: | ||
prefix: "events/" | ||
batchExport: | ||
prefix: "exports/" | ||
mediaUpload: | ||
prefix: "media/" | ||
``` | ||
##### Enable ingress | ||
```yaml | ||
|
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
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
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
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