forked from ethpandaops/ethereum-helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvalues.yaml
600 lines (558 loc) · 18 KB
/
values.yaml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
# -- Overrides the chart's name
nameOverride: ""
# -- Overrides the chart's computed fullname
fullnameOverride: ""
# -- Values for the blobscan-web subchart
blobscan-web:
# -- Enable or disable the blobscan-web component
enabled: true
# -- Number of blobscan-web replicas
replicas: 1
image:
# -- Docker image repository for blobscan-web
repository: blossomlabs/blobscan-web
# -- Docker image tag for blobscan-web
tag: latest
# -- Docker image pull policy for blobscan-web
pullPolicy: IfNotPresent
resources:
# -- Resource limits for blobscan-web pods
limits:
# -- CPU limit for blobscan-web
cpu: 3
# -- Memory limit for blobscan-web
memory: 512Mi
# -- Resource requests for blobscan-web pods
requests:
# -- CPU request for blobscan-web
cpu: 1
# -- Memory request for blobscan-web
memory: 128Mi
secretEnv:
# -- PostgreSQL connection string for the main database connection
DATABASE_URL: "postgresql://postgres:postgres@blobscan-blobscandb:5432/blobscan?ssl=false"
# -- Direct PostgreSQL connection string, used for Prisma direct database access
DIRECT_URL: ""
# -- Secret key used for session management and encryption
SECRET_KEY: "supersecret"
# -- Google Cloud service account key for authentication (JSON format)
GOOGLE_SERVICE_KEY: ""
# -- Redis connection URI for caching and queue management
REDIS_URI: "redis://redis-master:6379/0"
# -- Username for OpenTelemetry authentication
OTLP_AUTH_USERNAME: ""
# -- Password for OpenTelemetry authentication
OTLP_AUTH_PASSWORD: ""
# -- Discord webhook for feedback form
FEEDBACK_WEBHOOK_URL: ""
httpPort: 3000
customArgs: ["web"]
config:
# -- Swarm Bee node endpoint URL for decentralized storage interaction
BEE_ENDPOINT: "http://bee-0:1633"
# -- Base URL for the Blobscan API service
BLOBSCAN_API_BASE_URL: "http://blobscan-api:3001"
# -- Port on which the Blobscan API service listens
BLOBSCAN_API_PORT: 3001
# -- Ethereum network name (mainnet, holesky, sepolia, gnosis)
NETWORK_NAME: "mainnet"
# -- Enable PostgreSQL storage for blob data
POSTGRES_STORAGE_ENABLED: "true"
# -- Enable Swarm decentralized storage for blob data
SWARM_STORAGE_ENABLED: "false"
# -- Enable Google Cloud Storage for blob data
GOOGLE_STORAGE_ENABLED: "false"
# -- Google Cloud Storage bucket name for blob data storage
GOOGLE_STORAGE_BUCKET_NAME: ""
# -- Google Cloud project ID for blob data storage
GOOGLE_STORAGE_PROJECT_ID: ""
# -- Application logging level (debug, info, warn, error)
LOG_LEVEL: "info"
# -- Protocol used for OpenTelemetry data export
OTEL_EXPORTER_OTLP_PROTOCOL: "http/protobuf"
# -- Endpoint URL for OpenTelemetry data export
OTEL_EXPORTER_OTLP_ENDPOINT: "http://localhost:4318"
# -- Enable metrics collection and reporting
METRICS_ENABLED: "false"
# -- Enable distributed tracing
TRACES_ENABLED: "false"
# -- Values for the blobscan-api subchart
blobscan-api:
# -- Enable or disable the blobscan-api component
enabled: true
# -- Number of blobscan-api replicas
replicas: 1
image:
# -- Docker image repository for blobscan-api
repository: blossomlabs/blobscan-api
# -- Docker image tag for blobscan-api
tag: latest
# -- Docker image pull policy for blobscan-api
pullPolicy: IfNotPresent
resources:
# -- Resource limits for blobscan-api pods
limits:
# -- CPU limit for blobscan-api
cpu: 3
# -- Memory limit for blobscan-api
memory: 1Gi
# -- Resource requests for blobscan-api pods
requests:
# -- CPU request for blobscan-api
cpu: 1
# -- Memory request for blobscan-api
memory: 512Mi
# -- Secret env variables injected via a created secret
secretEnv:
# -- Redis connection URI for caching and queue management
REDIS_URI: "redis://blobscan-redis-master:6379/1"
# -- PostgreSQL connection string for the main database connection
DATABASE_URL: "postgresql://postgres:postgres@blobscan-blobscandb:5432/blobscan?pgbouncer=true&sslmode=require"
# -- Direct PostgreSQL connection string, used for Prisma direct database access
DIRECT_URL: "postgresql://postgres:postgres@blobscan-blobscandb:5432/blobscan?sslmode=require"
# -- Secret key used for session management and encryption
SECRET_KEY: "supersecret"
# -- Google Cloud service account key for authentication (JSON format)
GOOGLE_SERVICE_KEY: ""
# -- Username for OpenTelemetry authentication
OTLP_AUTH_USERNAME: ""
# -- Password for OpenTelemetry authentication
OTLP_AUTH_PASSWORD: ""
# -- API key for WeaveVM integration
WEAVEVM_API_KEY: ""
# -- RPC endpoint for the chain specified in ETH_PRICE_SYNCER_CHAIN_ID
ETH_PRICE_SYNCER_CHAIN_JSON_RPC_URL: "http://polygon-rpc:8545"
# -- Sentry DSN for API
SENTRY_DSN_API: ""
# -- Ports
httpPort: 3001
# -- Command arguments
args: []
# -- Custom args for the blobscan-api container
customArgs: []
# -- Command replacement for the blobscan-api container
customCommand: []
config:
# -- Ethereum network chain ID (1 for mainnet)
CHAIN_ID: "1"
# -- Ethereum network name (mainnet, holesky, sepolia, gnosis)
NETWORK_NAME: "mainnet"
# -- Base URL for the Blobscan API service
BLOBSCAN_API_BASE_URL: "http://blobscan-api:3001"
# -- Port on which the Blobscan API service listens
BLOBSCAN_API_PORT: 3001
# -- Enable PostgreSQL storage for blob data
POSTGRES_STORAGE_ENABLED: "true"
# -- Enable Swarm decentralized storage for blob data
SWARM_STORAGE_ENABLED: "false"
# -- Swarm batch ID for blob data storage in Swarm network
SWARM_BATCH_ID: ""
# -- Enable Google Cloud Storage for blob data
GOOGLE_STORAGE_ENABLED: "false"
# -- Google Cloud Storage bucket name for blob data storage
GOOGLE_STORAGE_BUCKET_NAME: ""
# -- Google Cloud project ID for blob data storage
GOOGLE_STORAGE_PROJECT_ID: ""
# -- Swarm Bee node endpoint for decentralized storage
BEE_ENDPOINT: "http://localhost:1633"
# -- Protocol used for OpenTelemetry data export
OTEL_EXPORTER_OTLP_PROTOCOL: "http/protobuf"
# -- Endpoint URL for OpenTelemetry data export
OTEL_EXPORTER_OTLP_ENDPOINT: "http://localhost:4318"
# -- Enable metrics collection and reporting
METRICS_ENABLED: "false"
# -- Enable distributed tracing
TRACES_ENABLED: "false"
# -- Log level (info, warning, error, debug)
LOG_LEVEL: "info"
# -- Enable the ETH price syncer job
ETH_PRICE_SYNCER_ENABLED: false
# -- Cron pattern for the job that periodically stores ETH price in database
ETH_PRICE_SYNCER_CRON_PATTERN: "* * * * *"
# -- ID of the chain where price feed contract is deployed on
ETH_PRICE_SYNCER_CHAIN_ID: "137"
# -- Contract address for the Chainlink ETH/USD price feed on the specified chain
ETH_PRICE_SYNCER_ETH_USD_PRICE_FEED_CONTRACT_ADDRESS: "0xF9680D99D6C9589e2a93a78A04A279e509205945"
# -- Maximum allowed age (in seconds) of the fetched price before it's considered stale
ETH_PRICE_SYNCER_TIME_TOLERANCE: 3600
# -- Additional env variables
extraEnv: []
ingress:
# -- Ingress resource for the HTTP API
enabled: false
# -- Annotations for Ingress
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
# -- Ingress host
hosts:
- host: chart-example.local
paths: []
# -- Ingress TLS
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
service:
# -- Service type
type: ClusterIP
# -- Affinity configuration for pods
affinity: {}
# -- Image pull secrets for Docker images
imagePullSecrets: []
# -- Annotations for the Deployment
annotations: {}
# -- Liveness probe
livenessProbe:
tcpSocket:
port: http
initialDelaySeconds: 60
periodSeconds: 120
# -- Readiness probe
readinessProbe:
tcpSocket:
port: http
initialDelaySeconds: 10
periodSeconds: 10
# -- Node selector for pods
nodeSelector: {}
# -- Pod labels
podLabels: {}
# -- Pod annotations
podAnnotations: {}
# -- Extra Pod ports
extraPodPorts: []
# -- Pod priority class
priorityClassName: null
# -- The security context for pods
securityContext:
fsGroup: 1000
runAsGroup: 1000
runAsNonRoot: true
runAsUser: 1000
# -- The security context for containers
containerSecurityContext: {}
serviceAccount:
# -- Specifies whether a service account should be created
create: false
# -- Annotations to add to the service account
annotations: {}
# -- The name of the service account to use
name: ""
# -- How long to wait until the pod is forcefully terminated
terminationGracePeriodSeconds: 30
# -- Tolerations for pods
tolerations: []
# -- Define the PodDisruptionBudget spec
podDisruptionBudget: {}
# -- Additional init containers
initContainers: []
# -- Additional containers
extraContainers: []
# -- Additional volumes
extraVolumes: []
# -- Additional volume mounts
extraVolumeMounts: []
# -- Additional ports. Useful when using extraContainers
extraPorts: []
serviceMonitor:
# -- If true, a ServiceMonitor CRD is created for a prometheus operator
enabled: false
# -- Path to scrape
path: /metrics
# -- Alternative namespace for ServiceMonitor
namespace: null
# -- Additional ServiceMonitor labels
labels: {}
# -- Additional ServiceMonitor annotations
annotations: {}
# -- ServiceMonitor scrape interval
interval: 15s
# -- ServiceMonitor scheme
scheme: http
# -- ServiceMonitor TLS configuration
tlsConfig: {}
# -- ServiceMonitor scrape timeout
scrapeTimeout: 30s
# -- ServiceMonitor relabelings
relabelings: []
# -- BullMQ Prometheus exporter configuration
bullmqExporter:
# -- Enable or disable the BullMQ Prometheus exporter sidecar container
enabled: false
# -- Redis database and namespace to monitor, in the format "<db>:<namespace>"
databaseMapping: "0:ethereum-prod"
image:
# -- BullMQ Prometheus exporter image repository
repository: "blossomlabs/bullmq-prometheus"
# -- BullMQ Prometheus exporter image tag
tag: "latest"
# -- BullMQ Prometheus exporter image pull policy
pullPolicy: "IfNotPresent"
# -- ServiceMonitor configuration for BullMQ exporter
serviceMonitor:
# -- Enable or disable the ServiceMonitor for BullMQ exporter
enabled: false
# -- Additional ServiceMonitor labels
labels: {}
# -- Additional ServiceMonitor annotations
annotations: {}
# -- ServiceMonitor scrape interval, defaults to main ServiceMonitor interval if not set
interval: ""
# -- ServiceMonitor path, defaults to /metrics
path: "/metrics"
# -- ServiceMonitor scheme, defaults to main ServiceMonitor scheme if not set
scheme: ""
# -- ServiceMonitor TLS configuration
tlsConfig: {}
# -- ServiceMonitor scrape timeout
scrapeTimeout: ""
# -- ServiceMonitor relabelings
relabelings: []
# -- Values for the blobscan-indexer subchart
blobscan-indexer:
# -- Enable or disable the blobscan-indexer component
enabled: false
# -- Number of blobscan-indexer replicas
replicas: 1
image:
# -- blobscan-indexer container image repository
repository: blossomlabs/blobscan-indexer
# -- blobscan-indexer container image tag
tag: latest
# -- blobscan-indexer container pull policy
pullPolicy: IfNotPresent
resources:
# -- Resource limits for blobscan-indexer pods
limits:
# -- CPU limit for blobscan-indexer
cpu: 1000m
# -- Memory limit for blobscan-indexer
memory: 200Mi
# -- Resource requests for blobscan-indexer pods
requests:
# -- CPU request for blobscan-indexer
cpu: 500m
# -- Memory request for blobscan-indexer
memory: 100Mi
# -- Secret env variables injected via a created secret
secretEnv:
# -- Ethereum consensus layer (beacon chain) node endpoint URL
BEACON_NODE_ENDPOINT: "http://beacon-node:5052"
# -- Ethereum execution layer node endpoint URL
EXECUTION_NODE_ENDPOINT: "http://execution-node:8545"
# -- Secret key used for authentication and encryption
SECRET_KEY: "supersecret"
# -- Sentry DSN for error tracking and monitoring
SENTRY_DSN: ""
# -- Config file
config:
# -- Blobscan API service endpoint URL
BLOBSCAN_API_ENDPOINT: "http://blobscan-api:3001"
# -- Ethereum network name (mainnet, holesky, sepolia, gnosis)
NETWORK_NAME: "mainnet"
# -- Slot number when Dencun fork activated (uncomment and set for testnets)
DENCUN_FORK_SLOT: ""
# -- Rust logging configuration for the blob indexer
RUST_LOG: "blob_indexer=INFO"
# -- Values for the PostgreSQL subchart
blobscandb:
# -- Enable or disable the PostgreSQL database component
enabled: true
image:
# -- PostgreSQL image pull policy
pullPolicy: "IfNotPresent"
# -- PostgreSQL image registry
registry: "docker.io"
# -- PostgreSQL image repository
repository: "bitnami/postgresql"
# -- PostgreSQL image tag
tag: "16-debian-12"
auth:
# -- PostgreSQL username
username: postgres
# -- PostgreSQL password
password: postgres
# -- PostgreSQL database name
database: blobscan
primary:
# -- Enable PostgreSQL primary instance
enabled: true
persistence:
# -- Size of the PostgreSQL persistent volume
size: 8Gi
# Values for the Redis subchart
redis:
# -- If enabled a redis chart will be deployed as a dependency
enabled: true
# Redis architecture configuration
architecture: standalone # Can be "standalone" or "replication"
# Authentication configuration
auth:
enabled: false # Set to true to enable password authentication
password: "" # Password for Redis if auth is enabled
# Redis master configuration
master:
persistence:
enabled: true
size: 8Gi
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 250m
memory: 256Mi
# Redis replica configuration (used when architecture is "replication")
replica:
replicaCount: 1
persistence:
enabled: true
size: 8Gi
resources:
limits:
cpu: 250m
memory: 256Mi
requests:
cpu: 100m
memory: 128Mi
# Service configuration
service:
type: ClusterIP
port: 6379
# Metrics configuration
metrics:
enabled: false
serviceMonitor:
enabled: false
# -- Secret env variables injected via a created secret
secretEnv: {}
# -- Ports
httpPort: 3000
# -- Command arguments
args: []
# -- Additional env variables
extraEnv: []
ingress:
# -- Ingress resource for the HTTP API
enabled: false
# -- Annotations for Ingress
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
# -- Ingress host
hosts:
- host: chart-example.local
paths: []
# -- Ingress TLS
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
# -- Command replacement for the blobscan container
customCommand: [] # Only change this if you need to change the default command
service:
# -- Service type
type: ClusterIP
# -- Affinity configuration for pods
affinity: {}
# -- Image pull secrets for Docker images
imagePullSecrets: []
# -- Annotations for the Deployment
annotations: {}
# -- Liveness probe
# @default -- See `values.yaml`
livenessProbe:
tcpSocket:
port: http
initialDelaySeconds: 60
periodSeconds: 120
# -- Readiness probe
# @default -- See `values.yaml`
readinessProbe:
tcpSocket:
port: http
initialDelaySeconds: 10
periodSeconds: 10
# -- Node selector for pods
nodeSelector: {}
# -- Pod labels
podLabels: {}
# -- Pod annotations
podAnnotations: {}
# -- Extra Pod ports
extraPodPorts: []
# -- Pod priority class
priorityClassName: null
# -- The security context for pods
# @default -- See `values.yaml`
securityContext:
fsGroup: 1000
runAsGroup: 1000
runAsNonRoot: true
runAsUser: 1000
# -- The security context for containers
# @default -- See `values.yaml`
containerSecurityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
serviceAccount:
# -- Specifies whether a service account should be created
create: false
# -- Annotations to add to the service account
annotations: {}
# -- The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
# -- How long to wait until the pod is forcefully terminated
terminationGracePeriodSeconds: 30
# -- Tolerations for pods
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
tolerations: []
# -- Topology Spread Constraints for pods
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/
topologySpreadConstraints: []
# -- Define the PodDisruptionBudget spec
# If not set then a PodDisruptionBudget will not be created
podDisruptionBudget: {}
# minAvailable: 1
# maxUnavailable: 1
# -- Additional init containers
initContainers: []
# - name: my-init-container
# image: busybox:latest
# command: ['sh', '-c', 'echo hello']
# -- Additional containers
extraContainers: []
# -- Additional volumes
extraVolumes: []
# -- Additional volume mounts
extraVolumeMounts: []
# -- Additional ports. Useful when using extraContainers
extraPorts: []
serviceMonitor:
# -- If true, a ServiceMonitor CRD is created for a prometheus operator
# https://github.com/coreos/prometheus-operator
enabled: false
# -- Path to scrape
path: /metrics
# -- Alternative namespace for ServiceMonitor
namespace: null
# -- Additional ServiceMonitor labels
labels: {}
# -- Additional ServiceMonitor annotations
annotations: {}
# -- ServiceMonitor scrape interval
interval: 15s
# -- ServiceMonitor scheme
scheme: http
# -- ServiceMonitor TLS configuration
tlsConfig: {}
# -- ServiceMonitor scrape timeout
scrapeTimeout: 30s
# -- ServiceMonitor relabelings
relabelings: []