You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| firehoseComponentDefaults.ports | Container level ports configuration | object | `{"fh-metrics":{"containerPort":"{{ with .Pod.fireeth.metrics }}{{ .enabled \| ternary (printf \"%d\" ( .port \| int ) ) nil }}{{ end }}","protocol":"TCP"},"fh-pprof":{"containerPort":"{{ with .Pod.fireeth.pprof }}{{ .enabled \| ternary (printf \"%d\" ( .port \| int ) ) nil }}{{ end }}","protocol":"TCP"}}` |
243
243
| firehoseComponentDefaults.rbac | RBAC role and binding configuration | object | `{"bindingSpec":{"metadata":{"annotations":{},"labels":{}},"roleRef":{}},"enabled":"{{ .Pod.serviceAccount.enabled }}","roleSpec":{"metadata":{"annotations":{},"labels":{}}}}` |
@@ -265,10 +265,10 @@ We do not recommend that you upgrade the application by overriding `image.tag`.
265
265
| firehoseComponentDefaults.serviceP2P.spec | Any other key/values will be merged with the final Service resource `spec.ports` is a key-value map, with the port name as key, and the spec as value | object | `{"ports":{"p2p-tcp":{"nodePort":null,"port":"{{ with .Pod.serviceP2P.spec.ports }}{{ default (30303 \| int) (index . \"p2p-tcp\" \"nodePort\" \| int) }}{{ end }}","protocol":"TCP","targetPort":null},"p2p-udp":{"nodePort":null,"port":"{{ with .Pod.serviceP2P.spec.ports }}{{ default (30303 \| int) (index . \"p2p-tcp\" \"nodePort\" \| int) }}{{ end }}","protocol":"UDP","targetPort":null}}}` |
266
266
| firehoseComponentDefaults.serviceP2P.spec.ports | Service ports configuration | object | `{"p2p-tcp":{"nodePort":null,"port":"{{ with .Pod.serviceP2P.spec.ports }}{{ default (30303 \| int) (index . \"p2p-tcp\" \"nodePort\" \| int) }}{{ end }}","protocol":"TCP","targetPort":null},"p2p-udp":{"nodePort":null,"port":"{{ with .Pod.serviceP2P.spec.ports }}{{ default (30303 \| int) (index . \"p2p-tcp\" \"nodePort\" \| int) }}{{ end }}","protocol":"UDP","targetPort":null}}` |
267
267
| firehoseComponentDefaults.serviceP2P.spec.ports.p2p-tcp.nodePort | nodePort to use, if left null a dynamic one will be atributed | optional | `nil` |
268
-
| firehoseComponentDefaults.serviceP2P.spec.ports.p2p-tcp.port | (mandatory) default is to use nodePort if specified, or 30303 | string | `"{{ with .Pod.serviceP2P.spec.ports }}{{ default (30303 \| int) (index . \"p2p-tcp\" \"nodePort\" \| int) }}{{ end }}"` |
268
+
| firehoseComponentDefaults.serviceP2P.spec.ports.p2p-tcp.port | default is to use nodePort if specified, or 30303 | mandatory | `"{{ with .Pod.serviceP2P.spec.ports }}{{ default (30303 \| int) (index . \"p2p-tcp\" \"nodePort\" \| int) }}{{ end }}"` |
269
269
| firehoseComponentDefaults.serviceP2P.spec.ports.p2p-tcp.targetPort | default is to use the port's name | optional | `nil` |
270
270
| firehoseComponentDefaults.serviceP2P.spec.ports.p2p-udp.nodePort | nodePort to use, if left null a dynamic one will be atributed | optional | `nil` |
271
-
| firehoseComponentDefaults.serviceP2P.spec.ports.p2p-udp.port | (mandatory) default is to use nodePort if specified, or 30303 | string | `"{{ with .Pod.serviceP2P.spec.ports }}{{ default (30303 \| int) (index . \"p2p-tcp\" \"nodePort\" \| int) }}{{ end }}"` |
271
+
| firehoseComponentDefaults.serviceP2P.spec.ports.p2p-udp.port | default is to use nodePort if specified, or 30303 | mandatory | `"{{ with .Pod.serviceP2P.spec.ports }}{{ default (30303 \| int) (index . \"p2p-tcp\" \"nodePort\" \| int) }}{{ end }}"` |
272
272
| firehoseComponentDefaults.serviceP2P.spec.ports.p2p-udp.targetPort | default is to use the port's name | optional | `nil` |
273
273
| firehoseComponentDefaults.terminationGracePeriodSeconds | Amount of time to wait before force-killing the process | int | `10` |
274
274
| firehoseComponentDefaults.tolerations | Tolerations configuration | list | `[]` |
Copy file name to clipboardExpand all lines: charts/graph-network-indexer/README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -123,11 +123,11 @@ We do not recommend that you upgrade the application by overriding `image.tag`.
123
123
| indexerAgent.terminationGracePeriodSeconds | Amount of time to wait before force-killing the process | int | `10` |
124
124
| indexerAgent.tolerations | | list | `[]` |
125
125
| 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"},"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.config."subgraphs.escrow".query_url | (required) 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. | string | `"http://your-graph-node-query:8000/subgraphs/id/TAP_ESCROW_SUBGRAPH"` |
127
-
| indexerDefaults.config."subgraphs.network".query_url | (required) 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. | string | `"http://your-graph-node-query:8000/subgraphs/id/NETWORK_SUBGRAPH"` |
128
-
| indexerDefaults.config.graph_node.query_url | (required) URL for your graph node query endpoint (probably a load balancer address) | string | `"your_graph_node_query_url"` |
129
-
| indexerDefaults.config.graph_node.status_url | (required) URL for your graph node status endpoint (probably a load balancer address) | string | `"your_graph_node_status_endpoint"` |
130
-
| indexerDefaults.config.indexer.indexer_address | (required) Ethereum address of your Indexer | string | `"your_indexer_address"` |
126
+
| 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"` |
127
+
| 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"` |
128
+
| indexerDefaults.config.graph_node.query_url | URL for your graph node query endpoint (probably a load balancer address) | required | `"your_graph_node_query_url"` |
129
+
| indexerDefaults.config.graph_node.status_url | URL for your graph node status endpoint (probably a load balancer address) | required | `"your_graph_node_status_endpoint"` |
130
+
| indexerDefaults.config.indexer.indexer_address | Ethereum address of your Indexer | required | `"your_indexer_address"` |
131
131
| indexerService.affinity | | object | `{}` |
132
132
| indexerService.affinityPresets.antiAffinityByHostname | Configure anti-affinity rules to prevent multiple instances on the same host | bool | `true` |
133
133
| indexerService.command | Entrypoint command to run | string | `"/usr/local/bin/indexer-service-rs"` |
0 commit comments