Update certificate-related settings

This commit is contained in:
wbsong111
2025-08-19 12:19:14 +09:00
parent 57646ec035
commit e05979cc19
2 changed files with 124 additions and 10 deletions
+30 -9
View File
@@ -35,6 +35,10 @@ env:
# The RAGFlow Docker image to download.
# Defaults to the v0.20.1-slim edition, which is the RAGFlow Docker image without embedding models.
RAGFLOW_IMAGE: infiniflow/ragflow:v0.20.1-slim
# Custom CA certificate bundle path for HTTPS requests
# Uncomment and set the path if using custom certificates
# REQUESTS_CA_BUNDLE: /tmp/ca.crt
#
# To download the RAGFlow Docker image with embedding models, uncomment the following line instead:
# RAGFLOW_IMAGE: infiniflow/ragflow:v0.20.1
@@ -106,17 +110,34 @@ ragflow:
# model_type: chat
# is_tools: false
# Kubernetes configuration
deployment:
strategy:
resources:
# Additional volumes to be mounted in the ragflow container
# Example for custom CA certificates:
# volumes:
# - name: keycloak-tls
# secret:
# secretName: keycloak-tls
volumes: []
# Additional volume mounts for the ragflow container
# Example for custom CA certificates:
# volumeMounts:
# - name: keycloak-tls
# mountPath: /tmp/ca.crt
# subPath: ca.crt
# readOnly: true
volumeMounts: []
# Kubernetes configuration
deployment:
strategy:
resources:
service:
# Use LoadBalancer to expose the web interface externally
type: ClusterIP
api:
service:
# Use LoadBalancer to expose the web interface externally
enabled: true
type: ClusterIP
api:
service:
enabled: true
type: ClusterIP
infinity:
image: