Skip to content

Commit 2aca5eb

Browse files
fix(graph-network-indexer): indentation bug
1 parent 23ee793 commit 2aca5eb

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

charts/graph-network-indexer/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.6.0
18+
version: 0.6.1
1919

2020
# The appVersion field is intentionally left empty. Component versions are managed separately
2121
# and can be found in the values.yaml file or individual component configurations.

charts/graph-network-indexer/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Deploy and scale the [Graph Network Indexer](https://github.com/graphprotocol/indexer) components inside Kubernetes with ease
44

5-
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 0.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
5+
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 0.6.1](https://img.shields.io/badge/Version-0.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
66

77
## Introduction
88

@@ -123,12 +123,12 @@ We do not recommend that you upgrade the application by overriding `image.tag`.
123123
| indexerAgent.service.type | | string | `"ClusterIP"` |
124124
| indexerAgent.terminationGracePeriodSeconds | Amount of time to wait before force-killing the process | int | `10` |
125125
| indexerAgent.tolerations | | list | `[]` |
126-
| indexerDefaults | Value defaults that apply to both indexer-agent and indexer-service | object | `{"config":{"blockchain":{"chain_id":"valid_blockchain_chain_id","horizon":{"enabled":false},"receipts_verifier_address":"valid_blockchain_receipts_verifier_address"},"graph_node":{"query_url":"your_graph_node_query_url","status_url":"your_graph_node_status_endpoint"},"indexer":{"indexer_address":"your_indexer_address"},"service":{"host_and_port":"0.0.0.0:7600"},"subgraphs.escrow":{"query_url":"http://your-graph-node-query:8000/subgraphs/id/TAP_ESCROW_SUBGRAPH","syncing_interval_secs":60},"subgraphs.network":{"query_url":"http://your-graph-node-query:8000/subgraphs/id/NETWORK_SUBGRAPH","syncing_interval_secs":60},"tap.rav_request":{"trigger_value_divisor":100}},"env":{},"metrics":{"address":"0.0.0.0","enabled":true,"port":7300},"postgresConfig":{"database":"your_database","host":"localhost","port":5432}}` |
126+
| indexerDefaults | Value defaults that apply to both indexer-agent and indexer-service | object | `{"config":{"blockchain":{"chain_id":"valid_blockchain_chain_id","receipts_verifier_address":"valid_blockchain_receipts_verifier_address"},"graph_node":{"query_url":"your_graph_node_query_url","status_url":"your_graph_node_status_endpoint"},"horizon":{"enabled":false},"indexer":{"indexer_address":"your_indexer_address"},"service":{"host_and_port":"0.0.0.0:7600"},"subgraphs.escrow":{"query_url":"http://your-graph-node-query:8000/subgraphs/id/TAP_ESCROW_SUBGRAPH","syncing_interval_secs":60},"subgraphs.network":{"query_url":"http://your-graph-node-query:8000/subgraphs/id/NETWORK_SUBGRAPH","syncing_interval_secs":60},"tap.rav_request":{"trigger_value_divisor":100}},"env":{},"metrics":{"address":"0.0.0.0","enabled":true,"port":7300},"postgresConfig":{"database":"your_database","host":"localhost","port":5432}}` |
127127
| indexerDefaults.config."subgraphs.escrow".query_url | Query URL for the Graph Escrow subgraph. For optimal performance, it's recommended to locally index the subgraph. If locally indexed, use a combination of `deployment_id` and `query_url` pointing to your graph-node-query. If not locally indexed, use the gateway URL. | required | `"http://your-graph-node-query:8000/subgraphs/id/TAP_ESCROW_SUBGRAPH"` |
128128
| indexerDefaults.config."subgraphs.network".query_url | Query URL for the Graph Network subgraph. For optimal performance, it's recommended to locally index the subgraph. If locally indexed, use a combination of `deployment_id` and `query_url` pointing to your graph-node-query. If not locally indexed, use the gateway URL. | required | `"http://your-graph-node-query:8000/subgraphs/id/NETWORK_SUBGRAPH"` |
129-
| indexerDefaults.config.blockchain.horizon | Toggle to enable Horizon | object | `{"enabled":false}` |
130129
| indexerDefaults.config.graph_node.query_url | URL for your graph node query endpoint (probably a load balancer address) | required | `"your_graph_node_query_url"` |
131130
| indexerDefaults.config.graph_node.status_url | URL for your graph node status endpoint (probably a load balancer address) | required | `"your_graph_node_status_endpoint"` |
131+
| indexerDefaults.config.horizon | Toggle to enable Horizon | object | `{"enabled":false}` |
132132
| indexerDefaults.config.indexer.indexer_address | Ethereum address of your Indexer | required | `"your_indexer_address"` |
133133
| indexerService.affinity | | object | `{}` |
134134
| indexerService.affinityPresets.antiAffinityByHostname | Configure anti-affinity rules to prevent multiple instances on the same host | bool | `true` |

charts/graph-network-indexer/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ indexerDefaults:
100100
# receipts_verifier_address_v2: 0x382863e7B662027117449bd2c49285582bbBd21B
101101
# -- Subgraph service address (Horizon)
102102
# subgraph_service_address: 0xc24A3dAC5d06d771f657A48B20cE1a671B78f26b
103-
# -- Toggle to enable Horizon
104-
horizon:
105-
enabled: false
103+
# -- Toggle to enable Horizon
104+
horizon:
105+
enabled: false
106106
tap.rav_request:
107107
trigger_value_divisor: 100
108108

0 commit comments

Comments
 (0)