1+ global :
2+ security :
3+ # -- Allow insecure images to use bitnami legacy repository. Can be set to false if secure images are being used (Paid).
4+ allowInsecureImages : true
5+
16features :
27 ollama :
38 enabled : false
@@ -445,44 +450,39 @@ shared:
445450
446451
447452langfuse :
448- # Core Langfuse Configuration
449- langfuse :
450- # Used to hash API keys
451- salt :
452- value : " changeme"
453-
454- # Authentication settings
455- features :
456- telemetryEnabled : true
457- signUpDisabled : false
458-
459- # Image configuration
453+ minio :
460454 image :
461- tag : " 3.88.1"
462- pullPolicy : Always
463-
464- # Web deployment configuration
465- web :
455+ repository : bitnamilegacy/minio
456+ deploy : false
457+ valkey :
458+ image :
459+ repository : bitnamilegacy/valkey
460+ deploy : false # <--- keydb is used instead of valkey
461+ image :
462+ repository : ghcr.io/langfuse/langfuse
463+ pullPolicy : Always
464+ tag : " 3.27.2"
465+ postgresql :
466+ image :
467+ repository : bitnamilegacy/postgresql
468+ deploy : true
469+ auth :
470+ username : postgres
471+ password : postgres
472+ database : langfuse
473+ clickhouse :
474+ image :
475+ repository : bitnamilegacy/clickhouse
476+ zookeeper :
466477 image :
467- repository : langfuse/langfuse
468- tag : " 3.88.1"
469- pullPolicy : Always
478+ repository : bitnamilegacy/zookeeper
470479
471- # Worker deployment configuration
472- worker :
473- image :
474- repository : langfuse/langfuse-worker
475- tag : " 3.88.1"
476- pullPolicy : Always
477- port : 3030
478480
479- # NextAuth configuration
481+ langfuse :
480482 nextauth :
481483 url : http://localhost:3000
482- secret :
483- value : " changeme"
484-
485- # Additional environment variables (only for init values)
484+ secret : changeme
485+ salt : changeme
486486 additionalEnv :
487487 - name : LANGFUSE_INIT_ORG_ID
488488 value : " "
@@ -498,8 +498,33 @@ langfuse:
498498 value : " "
499499 - name : LANGFUSE_INIT_USER_PASSWORD
500500 value : " "
501-
502- # Additional init containers
501+ # REDIS
502+ - name : " REDIS_CONNECTION_STRING"
503+ value : " redis://rag-keydb:6379"
504+ # CLICKHOUSE
505+ - name : " CLICKHOUSE_MIGRATION_URL"
506+ value : " clickhouse://rag-clickhouse:9000"
507+ - name : " CLICKHOUSE_URL"
508+ value : " http://rag-clickhouse:8123"
509+ - name : " CLICKHOUSE_USER"
510+ value : " default"
511+ - name : " CLICKHOUSE_PASSWORD"
512+ value : " changeme"
513+ # S3 / MinIO
514+ - name : " LANGFUSE_S3_EVENT_UPLOAD_ENABLED"
515+ value : " true"
516+ - name : " LANGFUSE_S3_EVENT_UPLOAD_BUCKET"
517+ value : " langfuse"
518+ - name : " LANGFUSE_S3_EVENT_UPLOAD_REGION"
519+ value : " auto"
520+ - name : " LANGFUSE_S3_EVENT_UPLOAD_ACCESS_KEY_ID"
521+ value : " admin"
522+ - name : " LANGFUSE_S3_EVENT_UPLOAD_SECRET_ACCESS_KEY"
523+ value : " adminpassword"
524+ - name : " LANGFUSE_S3_EVENT_UPLOAD_ENDPOINT"
525+ value : " http://rag-minio:9000"
526+ - name : " LANGFUSE_S3_EVENT_UPLOAD_FORCE_PATH_STYLE"
527+ value : " true"
503528 extraInitContainers :
504529 - name : wait-for-postgres
505530 image : busybox
@@ -514,78 +539,9 @@ langfuse:
514539 # Define a reasonable timeout in case PostgreSQL fails to come up
515540 timeoutSeconds : 300
516541
517- # PostgreSQL Configuration (use external PostgreSQL)
518- postgresql :
519- deploy : true
520- host : " rag-postgresql"
521- port : 5432
522- auth :
523- username : postgres
524- password : postgres
525- database : langfuse
526-
527- # Redis Configuration (external KeyDB)
528- redis :
529- deploy : false
530- host : " rag-keydb"
531- port : 6379
532- auth :
533- username : " default"
534- password : " "
535-
536- # ClickHouse Configuration (external ClickHouse)
537- clickhouse :
538- deploy : true
539- host : " rag-clickhouse"
540- httpPort : 8123
541- nativePort : 9000
542- auth :
543- username : " default"
544- password : " changeme"
545- migration :
546- url : " clickhouse://rag-clickhouse:9000"
547- ssl : false
548- autoMigrate : true
549- resources :
550- limits :
551- cpu : " 2"
552- memory : " 8Gi"
553- requests :
554- cpu : " 2"
555- memory : " 4Gi"
556-
557- zookeeper :
558- resources :
559- limits :
560- cpu : " 2"
561- memory : " 2Gi"
562- requests :
563- cpu : " 1"
564- memory : " 1Gi"
565-
566- # S3/MinIO Configuration (external MinIO)
567- minio :
568- deploy : false
569- bucket : " langfuse"
570- region : " auto"
571- endpoint : " http://rag-minio:9000"
572- forcePathStyle : true
573- accessKeyId :
574- value : " admin"
575- secretAccessKey :
576- value : " adminpassword"
577- eventUpload :
578- enabled : true
579- bucket : " langfuse"
580- region : " auto"
581- endpoint : " http://rag-minio:9000"
582- forcePathStyle : true
583- accessKeyId :
584- value : " admin"
585- secretAccessKey :
586- value : " adminpassword"
587-
588542minio :
543+ image :
544+ repository : bitnamilegacy/minio
589545 auth :
590546 # # @param auth.rootUser MinIO® root username
591547 # #
@@ -602,6 +558,10 @@ minio:
602558 enabled : false
603559 mode : standalone
604560
561+
562+
563+
564+
605565ollama :
606566 image :
607567 tag : 0.5.1
@@ -617,8 +577,3 @@ ollama:
617577qdrant :
618578 image :
619579 tag : v1.14.1
620-
621- keydb :
622- multiMaster : " no"
623- activeReplicas : " no"
624- nodes : 1
0 commit comments