-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostgres-test-pipeline.yaml
More file actions
33 lines (33 loc) · 1014 Bytes
/
postgres-test-pipeline.yaml
File metadata and controls
33 lines (33 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
apiVersion: flowctl/v1
kind: Pipeline
metadata:
description: Process stellar contract events on testnet
name: stellar-pipeline
spec:
driver: process
processors:
- config:
network_passphrase: Test SDF Network ; September 2015
id: contract-events
inputs:
- stellar-source
type: contract-events-processor@v1.0.0
sinks:
- config:
postgres_db: stellar_events
postgres_host: localhost
postgres_password: postgres
postgres_port: "5432"
postgres_user: postgres
id: postgres-sink
inputs:
- contract-events
type: postgres-consumer@v1.0.0
sources:
- config:
backend_type: RPC
network_passphrase: Test SDF Network ; September 2015
rpc_endpoint: https://soroban-testnet.stellar.org
start_ledger: 570914
id: stellar-source
type: stellar-live-source@v1.0.0