You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

values.yaml 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. # Based on docker compose .env file
  2. env:
  3. # The type of doc engine to use.
  4. # Available options:
  5. # - `elasticsearch` (default)
  6. # - `infinity` (https://github.com/infiniflow/infinity)
  7. # DOC_ENGINE: elasticsearch
  8. DOC_ENGINE: infinity
  9. # The version of Elasticsearch.
  10. STACK_VERSION: "8.11.3"
  11. # The password for Elasticsearch
  12. ELASTIC_PASSWORD: infini_rag_flow_helm
  13. # The password for MySQL
  14. MYSQL_PASSWORD: infini_rag_flow_helm
  15. # The database of the MySQL service to use
  16. MYSQL_DBNAME: rag_flow
  17. # The username for MinIO.
  18. MINIO_ROOT_USER: rag_flow
  19. # The password for MinIO
  20. MINIO_PASSWORD: infini_rag_flow_helm
  21. # The password for Redis
  22. REDIS_PASSWORD: infini_rag_flow_helm
  23. # The RAGFlow Docker image to download.
  24. # Defaults to the dev-slim edition, which is the RAGFlow Docker image without embedding models.
  25. RAGFLOW_IMAGE: infiniflow/ragflow:dev-slim
  26. #
  27. # To download the RAGFlow Docker image with embedding models, uncomment the following line instead:
  28. # RAGFLOW_IMAGE=infiniflow/ragflow:dev
  29. #
  30. # The Docker image of the dev edition includes:
  31. # - Built-in embedding models:
  32. # - BAAI/bge-large-zh-v1.5
  33. # - BAAI/bge-reranker-v2-m3
  34. # - maidalun1020/bce-embedding-base_v1
  35. # - maidalun1020/bce-reranker-base_v1
  36. # - Embedding models that will be downloaded once you select them in the RAGFlow UI:
  37. # - BAAI/bge-base-en-v1.5
  38. # - BAAI/bge-large-en-v1.5
  39. # - BAAI/bge-small-en-v1.5
  40. # - BAAI/bge-small-zh-v1.5
  41. # - jinaai/jina-embeddings-v2-base-en
  42. # - jinaai/jina-embeddings-v2-small-en
  43. # - nomic-ai/nomic-embed-text-v1.5
  44. # - sentence-transformers/all-MiniLM-L6-v2
  45. #
  46. #
  47. # The local time zone.
  48. TIMEZONE: "Asia/Shanghai"
  49. # Uncomment the following line if you have limited access to huggingface.co:
  50. # HF_ENDPOINT: https://hf-mirror.com
  51. # The maximum file size for each uploaded file, in bytes.
  52. # You can uncomment this line and update the value if you wish to change 128M file size limit
  53. # MAX_CONTENT_LENGTH: "134217728"
  54. ragflow:
  55. deployment:
  56. strategy:
  57. resources:
  58. service:
  59. # Use LoadBalancer to expose the web interface externally
  60. type: ClusterIP
  61. infinity:
  62. image:
  63. repository: infiniflow/infinity
  64. tag: v0.5.0-dev5
  65. storage:
  66. className:
  67. capacity: 5Gi
  68. deployment:
  69. strategy:
  70. resources:
  71. service:
  72. type: ClusterIP
  73. elasticsearch:
  74. storage:
  75. className:
  76. capacity: 20Gi
  77. deployment:
  78. strategy:
  79. resources:
  80. requests:
  81. memory: 8Gi
  82. service:
  83. type: ClusterIP
  84. minio:
  85. image:
  86. repository: quay.io/minio/minio
  87. tag: RELEASE.2023-12-20T01-00-02Z
  88. storage:
  89. className:
  90. capacity: 5Gi
  91. deployment:
  92. strategy:
  93. resources:
  94. service:
  95. type: ClusterIP
  96. mysql:
  97. image:
  98. repository: mysql
  99. tag: 8.0.39
  100. storage:
  101. className:
  102. capacity: 5Gi
  103. deployment:
  104. strategy:
  105. resources:
  106. service:
  107. type: ClusterIP
  108. redis:
  109. image:
  110. repository: valkey/valkey
  111. tag: 8
  112. storage:
  113. className:
  114. capacity: 5Gi
  115. deployment:
  116. strategy:
  117. resources:
  118. service:
  119. type: ClusterIP
  120. # This block is for setting up web service ingress. For more information, see:
  121. # https://kubernetes.io/docs/concepts/services-networking/ingress/
  122. ingress:
  123. enabled: false
  124. className: ""
  125. annotations: {}
  126. # kubernetes.io/ingress.class: nginx
  127. # kubernetes.io/tls-acme: "true"
  128. hosts:
  129. - host: chart-example.local
  130. paths:
  131. - path: /
  132. pathType: ImplementationSpecific
  133. tls: []
  134. # - secretName: chart-example-tls
  135. # hosts:
  136. # - chart-example.local