Skip to content
Open
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
8 changes: 8 additions & 0 deletions graph-node/firehose-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ spec:
port: 26657
protocol: TCP
targetPort: 26657
- name: prometheus-node
port: 26660
protocol: TCP
targetPort: 26660
- name: http
port: 8081
protocol: TCP
Expand All @@ -24,6 +28,10 @@ spec:
port: 9030
protocol: TCP
targetPort: 9030
- name: prometheus-firehose
port: 9102
protocol: TCP
targetPort: 9102
selector:
app.kubernetes.io/name: persistencecore-firehose-node
---
Expand Down
8 changes: 8 additions & 0 deletions graph-node/graph-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ spec:
port: 8020
protocol: TCP
targetPort: 8020
- name: health
port: 8030
protocol: TCP
targetPort: 8030
- name: prometheus
port: 8040
protocol: TCP
targetPort: 8040
selector:
app.kubernetes.io/name: persistencecore-graph-node
---
Expand Down
1 change: 1 addition & 0 deletions graph-node/scripts/init-firehose-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ else
sed -i 's/timeout_commit = "5s"/timeout_commit = "1s"/g' $HOME_DIR/config/config.toml
sed -i 's/timeout_propose = "3s"/timeout_propose = "1s"/g' $HOME_DIR/config/config.toml
sed -i 's/index_all_keys = false/index_all_keys = true/g' $HOME_DIR/config/config.toml
sed -i 's/prometheus = false/prometheus = true/g' $HOME_DIR/config/config.toml

# replace seeds if the variable is not empty
if [ ! -z "$SEEDS" ]; then
Expand Down