* 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
30 lines
633 B
YAML
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
|