00-config.sh 572 B

123456789101112131415161718192021
  1. #!/bin/bash
  2. # Get the directory where this script is located
  3. DATABASE_SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
  4. source "$DATABASE_SCRIPT_DIR/scripts/common.sh"
  5. # Namespace configuration
  6. NAMESPACE="rag"
  7. # version
  8. KB_VERSION="1.0.0-beta.48"
  9. ADDON_CLUSTER_CHART_VERSION="1.0.0-alpha.0"
  10. # Helm repository
  11. HELM_REPO="https://apecloud.github.io/helm-charts"
  12. # Set to true to enable the database, false to disable
  13. ENABLE_POSTGRESQL=true
  14. ENABLE_REDIS=false
  15. ENABLE_QDRANT=false
  16. ENABLE_NEO4J=true
  17. ENABLE_ELASTICSEARCH=false
  18. ENABLE_MONGODB=false