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

112 lines
3.1 KiB
YAML

# Test values for K8s native pipeline client validation
# Only contains essential overrides for testing
openmetadata:
config:
# Enable debug logging for testing
logLevel: DEBUG
# Database configuration (using local PostgreSQL via host machine)
database:
host: host.docker.internal
port: 5432
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
# K8s Pipeline Client Configuration - Updated structure with common configs
pipelineServiceClientConfig:
type: "k8s" # Use Kubernetes native instead of Airflow
# Common configuration for all pipeline service clients
# Override metadataApiEndpoint for cross-namespace access (default uses service name only)
metadataApiEndpoint: "http://openmetadata.openmetadata-ingestion.svc.cluster.local:8585/api"
k8s:
# K8s-specific configuration
# Use release namespace (empty = defaults to release namespace)
namespace: ""
serviceAccountName: "openmetadata-ingestion"
ttlSecondsAfterFinished: 10
# Local ingestion image
ingestionImage: "openmetadata/collate-base:1.12.0-20260402"
imagePullPolicy: "IfNotPresent"
# Reduced resources for local testing
resources:
limits:
cpu: "1"
memory: "2Gi"
requests:
cpu: "100m"
memory: "512Mi"
# Test tolerations for ingestion pods
tolerations:
- key: "dedicated"
operator: "Equal"
value: "ingestion"
effect: "NoSchedule"
# Enable OMJob operator for guaranteed exit handler execution
useOMJobOperator: true
# Local image configuration
image:
repository: openmetadata/server
tag: "1.12.0"
pullPolicy: IfNotPresent
# Service configuration for local access
service:
type: LoadBalancer # For minikube tunnel access
# OMJob Operator configuration
omjobOperator:
enabled: true
# Use locally built fixed image
image:
repository: docker.getcollate.io/openmetadata/omjob-operator
tag: "1.12.0-SNAPSHOT"
pullPolicy: IfNotPresent
# Adjusted resources for Java application (was OOMKilled at 128Mi)
resources:
requests:
cpu: "500m"
memory: "512Mi"
limits:
cpu: "1"
memory: "1Gi"
# Debug logging for testing
env:
logLevel: "DEBUG"
watchNamespaces: ""
# Enable health checks now that operator implements proper endpoints
healthCheck:
enabled: true
# 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