Files
wehub-resource-sync bf2343b7e4
Integration Tests - MySQL + Elasticsearch / Detect Changes (push) Waiting to run
Integration Tests - MySQL + Elasticsearch / integration-tests-mysql-elasticsearch (push) Blocked by required conditions
Integration Tests - PostgreSQL + Elasticsearch + Redis / Detect Changes (push) Waiting to run
Integration Tests - PostgreSQL + Elasticsearch + Redis / integration-tests-postgres-elasticsearch-redis (push) Blocked by required conditions
Integration Tests - PostgreSQL + OpenSearch / Detect Changes (push) Waiting to run
Integration Tests - PostgreSQL + OpenSearch / integration-tests-postgres-opensearch (push) Blocked by required conditions
Java Checkstyle / java-checkstyle (push) Waiting to run
Maven Collate Tests / maven-collate-ci (push) Waiting to run
OpenMetadata Service Unit Tests / Detect Changes (push) Waiting to run
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests (push) Blocked by required conditions
OpenMetadata Service Unit Tests / k8s_operator-unit-tests (push) Blocked by required conditions
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests-status (push) Blocked by required conditions
Publish Package to Maven Central Repository / publish-maven-packages (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:35:45 +08:00

67 lines
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