Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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 v0.15.0-slim edition, which is the RAGFlow Docker image without embedding models.
  25. RAGFLOW_IMAGE: infiniflow/ragflow:v0.15.0-slim
  26. #
  27. # To download the RAGFlow Docker image with embedding models, uncomment the following line instead:
  28. # RAGFLOW_IMAGE=infiniflow/ragflow:v0.15.0
  29. #
  30. # The Docker image of the v0.15.0 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. # After making the change, ensure you update `client_max_body_size` in nginx/nginx.conf correspondingly.
  55. ragflow:
  56. deployment:
  57. strategy:
  58. resources:
  59. service:
  60. # Use LoadBalancer to expose the web interface externally
  61. type: ClusterIP
  62. infinity:
  63. image:
  64. repository: infiniflow/infinity
  65. tag: v0.5.0
  66. storage:
  67. className:
  68. capacity: 5Gi
  69. deployment:
  70. strategy:
  71. resources:
  72. service:
  73. type: ClusterIP
  74. elasticsearch:
  75. storage:
  76. className:
  77. capacity: 20Gi
  78. deployment:
  79. strategy:
  80. resources:
  81. requests:
  82. memory: 8Gi
  83. service:
  84. type: ClusterIP
  85. minio:
  86. image:
  87. repository: quay.io/minio/minio
  88. tag: RELEASE.2023-12-20T01-00-02Z
  89. storage:
  90. className:
  91. capacity: 5Gi
  92. deployment:
  93. strategy:
  94. resources:
  95. service:
  96. type: ClusterIP
  97. mysql:
  98. image:
  99. repository: mysql
  100. tag: 8.0.39
  101. storage:
  102. className:
  103. capacity: 5Gi
  104. deployment:
  105. strategy:
  106. resources:
  107. service:
  108. type: ClusterIP
  109. redis:
  110. image:
  111. repository: valkey/valkey
  112. tag: 8
  113. storage:
  114. className:
  115. capacity: 5Gi
  116. deployment:
  117. strategy:
  118. resources:
  119. service:
  120. type: ClusterIP
  121. # This block is for setting up web service ingress. For more information, see:
  122. # https://kubernetes.io/docs/concepts/services-networking/ingress/
  123. ingress:
  124. enabled: false
  125. className: ""
  126. annotations: {}
  127. # kubernetes.io/ingress.class: nginx
  128. # kubernetes.io/tls-acme: "true"
  129. hosts:
  130. - host: chart-example.local
  131. paths:
  132. - path: /
  133. pathType: ImplementationSpecific
  134. tls: []
  135. # - secretName: chart-example-tls
  136. # hosts:
  137. # - chart-example.local