Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

values.yaml 3.7KB

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