mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-10 11:28:45 +00:00
close CLOUD-137 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced advanced workspace-scoped search and aggregation capabilities with support for complex queries, highlights, and pagination. - Added pluggable search providers: Elasticsearch and Manticoresearch. - New GraphQL queries, schema types, and resolver support for search and aggregation. - Enhanced configuration options for search providers in self-hosted and cloud deployments. - Added Docker Compose services and environment variables for Elasticsearch and Manticoresearch. - Integrated indexer service into deployment and CI workflows. - **Bug Fixes** - Improved error handling with new user-friendly error messages for search provider and indexer issues. - **Documentation** - Updated configuration examples and environment variable references for indexer and search providers. - **Tests** - Added extensive end-to-end and provider-specific tests covering indexing, searching, aggregation, deletion, and error cases. - Included snapshot tests and test fixtures for search providers. - **Chores** - Updated deployment scripts, Helm charts, and Kubernetes manifests to include indexer-related environment variables and secrets. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
68 lines
1.3 KiB
YAML
68 lines
1.3 KiB
YAML
global:
|
|
app:
|
|
buildType: 'stable'
|
|
ingress:
|
|
enabled: false
|
|
className: ''
|
|
host: affine.pro
|
|
tls: []
|
|
secret:
|
|
secretName: 'server-private-key'
|
|
privateKey: ''
|
|
database:
|
|
user: 'postgres'
|
|
host: 'pg-postgresql'
|
|
port: '5432'
|
|
name: 'affine'
|
|
password: ''
|
|
redis:
|
|
host: 'redis-master'
|
|
port: '6379'
|
|
username: ''
|
|
password: ''
|
|
database: 0
|
|
indexer:
|
|
provider: ''
|
|
endpoint: ''
|
|
username: ''
|
|
password: ''
|
|
docService:
|
|
name: 'affine-doc'
|
|
port: 3020
|
|
deployment:
|
|
# change to 'selfhosted' and 'unknown' if this chart is ready to be used for selfhosted deployment
|
|
type: 'affine'
|
|
platform: 'gcp'
|
|
|
|
graphql:
|
|
service:
|
|
type: ClusterIP
|
|
port: 3000
|
|
annotations:
|
|
cloud.google.com/backend-config: '{"default": "affine-api-backendconfig"}'
|
|
|
|
sync:
|
|
service:
|
|
type: ClusterIP
|
|
port: 3010
|
|
annotations:
|
|
cloud.google.com/backend-config: '{"default": "affine-api-backendconfig"}'
|
|
|
|
renderer:
|
|
service:
|
|
type: ClusterIP
|
|
port: 3000
|
|
annotations:
|
|
cloud.google.com/backend-config: '{"default": "affine-api-backendconfig"}'
|
|
|
|
doc:
|
|
service:
|
|
type: ClusterIP
|
|
annotations:
|
|
cloud.google.com/backend-config: '{"default": "affine-api-backendconfig"}'
|
|
|
|
web:
|
|
service:
|
|
type: ClusterIP
|
|
port: 8080
|