mirror of
https://github.com/open-metadata/OpenMetadata
synced 2026-05-24 09:39:11 +00:00
* config cleanup * add missing configs * fix auto pilot * fix lifecycle * fix logs and tests * fix test * move integration tests * fix * fix * Address code review feedback - Fix UsageWorkflowConfig to set stageFileLocation instead of queryLogFilePath - Add error handling for parseInt in IngestionLogHandler to catch NumberFormatException * fix * fix lifecycle * prepare cronOMJob * remove PR target * fix * fix * fix * fix * fix * fix tests * fix review * fix review * fix review * fix --------- Co-authored-by: Gitar <gitar@gitar.ai> Co-authored-by: Gitar <noreply@gitar.ai> Co-authored-by: pmbrull <pmbrull@users.noreply.github.com>
67 lines
No EOL
1.8 KiB
YAML
67 lines
No EOL
1.8 KiB
YAML
# Test values for migrated Airflow pipeline client validation
|
|
# Only contains essential overrides for testing the new nested structure
|
|
|
|
openmetadata:
|
|
config:
|
|
# Enable debug logging for testing
|
|
logLevel: DEBUG
|
|
|
|
# Database configuration (using local PostgreSQL via host machine)
|
|
database:
|
|
host: host.docker.internal
|
|
port: 5433
|
|
driverClass: org.postgresql.Driver
|
|
dbScheme: postgresql
|
|
auth:
|
|
password:
|
|
secretRef: postgres-secrets
|
|
secretKey: openmetadata-postgres-password
|
|
|
|
# Search configuration (using local OpenSearch via host machine)
|
|
elasticsearch:
|
|
host: host.docker.internal
|
|
port: 9200
|
|
searchType: opensearch
|
|
scheme: http
|
|
|
|
# Airflow Pipeline Client Configuration (updated structure with common configs)
|
|
pipelineServiceClientConfig:
|
|
type: "airflow" # Use traditional Airflow approach
|
|
# Common configuration for all pipeline service clients
|
|
metadataApiEndpoint: http://openmetadata:8585/api
|
|
airflow:
|
|
# Airflow-specific connection settings
|
|
apiEndpoint: http://openmetadata-dependencies-api-server:8080
|
|
verifySsl: "no-ssl"
|
|
auth:
|
|
username: admin
|
|
password:
|
|
secretRef: airflow-secrets
|
|
secretKey: openmetadata-airflow-password
|
|
|
|
# Local image configuration
|
|
image:
|
|
repository: openmetadata/server
|
|
tag: "20260107"
|
|
pullPolicy: IfNotPresent
|
|
|
|
# Service configuration for local access
|
|
service:
|
|
type: LoadBalancer # For minikube tunnel access
|
|
|
|
# Reduced resources for local testing
|
|
resources:
|
|
limits:
|
|
cpu: 2
|
|
memory: 4Gi
|
|
requests:
|
|
cpu: 500m
|
|
memory: 1Gi
|
|
|
|
# More relaxed health checks for local testing
|
|
livenessProbe:
|
|
initialDelaySeconds: 120
|
|
readinessProbe:
|
|
initialDelaySeconds: 120
|
|
startupProbe:
|
|
failureThreshold: 10 |