Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(webhook): Fix webhook testdrive config #63

Merged
merged 1 commit into from
Jan 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions testdrive/cardano2webhook/k8s/endpoint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,15 @@ spec:
- name: mock-config
configMap:
name: endpoint
---
apiVersion: v1
kind: Service
metadata:
name: endpoint
spec:
selector:
app: endpoint
ports:
- protocol: TCP
port: 5000
targetPort: 5000
4 changes: 2 additions & 2 deletions testdrive/cardano2webhook/k8s/oura.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ data:

[sink]
type = "Webhook"
url = "https://endpoint:5000/events"
url = "http://endpoint:5000/events"
---
apiVersion: apps/v1
kind: Deployment
Expand All @@ -36,7 +36,7 @@ spec:
spec:
containers:
- name: main
image: ghcr.io/txpipe/oura:v0.3.9
image: ghcr.io/txpipe/oura:v1.0.0
env:
- name: "RUST_LOG"
value: "info"
Expand Down