1
0
mirror of synced 2025-12-30 03:02:21 -05:00
Files
airbyte/tools/bin/run-harness-process.yaml
Ryan Fu 8849669420 Destination Performance Harness: Adds support for incremental syncs with GLOBAL state message emission (#26443)
* Adds support for incremental syncs with GLOBAL state message emission

* Adds args to Source to not break, future work is to add same features to Source perf-harness and ./gradlew :spotlessJavaApply
2023-05-23 15:13:31 -07:00

30 lines
633 B
YAML

apiVersion: v1
kind: Pod
metadata:
generateName: run-performance-harness
labels:
app: performance-harness
spec:
containers:
- name: main
image: airbyte/$HARNESS:dev
args: ["$CONNECTOR_IMAGE_NAME", "$DATASET", "$STREAM_NUMBER", "$SYNC_MODE"]
volumeMounts:
- name: secrets-volume
mountPath: /airbyte/secrets
resources:
limits:
cpu: "2.5"
memory: "2Gi"
requests:
cpu: "2.5"
memory: "2Gi"
volumes:
- name: secrets-volume
hostPath:
path: /secrets
type: Directory
imagePullSecrets:
- name: regcred
restartPolicy: Never