forked from ethpandaops/ethereum-helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvalues.yaml
253 lines (217 loc) · 7.01 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
# -- Overrides the chart's name
nameOverride: ""
# -- Overrides the chart's computed fullname
fullnameOverride: ""
# -- Number of replicas
replicas: 1
image:
# -- blobscan-api container image repository
repository: blossomlabs/blobscan-api
# -- blobscan-api container image tag
tag: latest
# -- blobscan-api container pull policy
pullPolicy: IfNotPresent
# -- Secret env variables injected via a created secret
secretEnv: {}
# -- Ports
httpPort: 3001
# -- Command arguments
args: []
# -- Config file
# @default -- See `values.yaml`
# https://github.com/Blobscan/blobscan/blob/main/.env.example
config:
# -- Ethereum network chain ID (1 for mainnet)
CHAIN_ID: "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"
# -- Redis connection URI for caching and queue management
REDIS_URI: "redis://blobscan-redis-master:6379/1"
# -- Secret key used for session management and encryption
SECRET_KEY: "supersecret"
# -- 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: ""
# -- Google Cloud service account key for authentication (JSON format)
GOOGLE_SERVICE_KEY: ""
# -- Swarm Bee node endpoint for decentralized storage
BEE_ENDPOINT: "http://localhost:1633"
# -- Username for OpenTelemetry authentication
OTLP_AUTH_USERNAME: ""
# -- Password for OpenTelemetry authentication
OTLP_AUTH_PASSWORD: ""
# -- 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: "true"
# -- Enable distributed tracing
TRACES_ENABLED: "false"
# -- API key for WeaveVM integration
WEAVEVM_API_KEY: ""
# -- 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"
# -- RPC endpoint for the chain specified in ETH_PRICE_SYNCER_CHAIN_ID
ETH_PRICE_SYNCER_CHAIN_JSON_RPC_URL: "http://polygon-rpc:8545"
# -- Maximum allowed age (in seconds) of the fetched price before it's considered stale
ETH_PRICE_SYNCER_TIME_TOLERANCE: 3600
# -- Sentry DSN for API
SENTRY_DSN_API: ""
# -- Additional env variables
extraEnv: []
# -- Custom args for the blobscan-api container
customArgs: []
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-api 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
# -- Resource requests and limits
resources: {}
# limits:
# cpu: 500m
# memory: 2Gi
# requests:
# cpu: 300m
# memory: 1Gi
# -- 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: []
# -- 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: []