forked from ethpandaops/ethereum-helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
values.yaml
345 lines (299 loc) · 8.34 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
# -- Overrides the chart's name
nameOverride: ""
# -- Overrides the chart's computed fullname
fullnameOverride: ""
# -- Number of replicas
replicas: 1
image:
# -- ethereumjs container image repository
repository: ethpandaops/ethereumjs
# -- ethereumjs container image tag
tag: master
# -- ethereumjs container pull policy
pullPolicy: IfNotPresent
# -- Extra args for the ethereumjs container
extraArgs: []
#- --network=holesky
# -- JWT secret is attached as a secret object. Change this value.
jwt: ecb22bc24e7d4061f7ed690ccd5846d7d73f5d2b9733267e12f56790398d908a
# -- Path within the container to the beacon node binary
defaultBinaryPath: node /usr/app/node_modules/.bin/ethereumjs
# -- Template used for the default command
# @default -- See `values.yaml`
defaultCommandTemplate: |
- sh
- -ac
- >
{{- if .Values.p2pNodePort.enabled }}
. /env/init-nodeport;
{{- end }}
{{ .Values.defaultBinaryPath }}
--dataDir=/data
{{- if .Values.p2pNodePort.enabled }}
{{- if not (contains "--extIP=" (.Values.extraArgs | join ",")) }}
--extIP=extip:$EXTERNAL_IP
{{- end }}
{{- if not (contains "--port=" (.Values.extraArgs | join ",")) }}
--port=$EXTERNAL_PORT
{{- end }}
{{- else }}
{{- if not (contains "--extIP=" (.Values.extraArgs | join ",")) }}
--extIP=extip:$(POD_IP)
{{- end }}
{{- if not (contains "--port=" (.Values.extraArgs | join ",")) }}
--port={{ include "ethereumjs.p2pPort" . }}
{{- end }}
{{- end }}
--rpc
--rpcAddr=0.0.0.0
--rpcPort={{ .Values.rpcPort }}
--rpcCors=*
--ws
--wsAddr=0.0.0.0
--wsPort={{ .Values.wsPort }}
--jwtSecret=/data/jwt.hex
--rpcEngine
--rpcEngineAddr=0.0.0.0
--rpcEnginePort={{ .Values.authPort }}
--wsEngineAddr=0.0.0.0
--wsEnginePort={{ .Values.wsAuthPort }}
{{- range .Values.extraArgs }}
{{ tpl . $ }}
{{- end }}
# -- Legacy way of overwriting the default command. You may prefer to change defaultCommandTemplate instead.
customCommand: []
# When p2pNodePort is enabled, your P2P port will be exposed via service type NodePort.
# This is useful if you want to expose and announce your node to the Internet.
# Limitation: You can only one have one replica when exposing via NodePort.
# Check the chart README.md for more details
p2pNodePort:
# -- Expose P2P port via NodePort
enabled: false
# -- NodePort to be used
port: 31000
initContainer:
image:
# -- Container image to fetch nodeport information
repository: lachlanevenson/k8s-kubectl
# -- Container tag
tag: v1.25.4
# -- Container pull policy
pullPolicy: IfNotPresent
portForwardContainer:
image:
# -- Container image for the port forwarder
repository: alpine/socat
# -- Container tag
tag: latest
# -- Container pull policy
pullPolicy: IfNotPresent
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
# -- Affinity configuration for pods
affinity: {}
# -- Image pull secrets for Docker images
imagePullSecrets: []
# -- Annotations for the StatefulSet
annotations: {}
# -- Liveness probe
# @default -- See `values.yaml`
livenessProbe:
tcpSocket:
port: http-rpc
initialDelaySeconds: 60
periodSeconds: 120
# -- Readiness probe
# @default -- See `values.yaml`
readinessProbe:
tcpSocket:
port: http-rpc
initialDelaySeconds: 10
periodSeconds: 10
# -- P2P Port
p2pPort: 30303
# -- HTTP Port
rpcPort: 8545
# -- WS Port
wsPort: 8546
# -- Engine Port (Auth Port)
authPort: 8551
# -- WS Engine Auth Port
wsAuthPort: 8552
# -- Node selector for pods
nodeSelector: {}
persistence:
# -- Uses an EmptyDir when not enabled
enabled: false
# -- Use an existing PVC when persistence.enabled
existingClaim: null
# -- Access mode for the volume claim template
accessModes:
- ReadWriteOnce
# -- Requested size for volume claim template
size: 20Gi
# -- Use a specific storage class
# E.g 'local-path' for local storage to achieve best performance
# Read more (https://github.com/rancher/local-path-provisioner)
storageClassName: null
# -- Annotations for volume claim template
annotations: {}
# -- Selector for volume claim template
selector: {}
# matchLabels:
# app.kubernetes.io/name: something
# -- Pod labels
podLabels: {}
# -- Pod annotations
podAnnotations: {}
# -- Pod management policy
podManagementPolicy: OrderedReady
# -- Pod priority class
priorityClassName: null
rbac:
# -- Specifies whether RBAC resources are to be created
create: true
# -- Required ClusterRole rules
# @default -- See `values.yaml`
clusterRules:
# Required to obtain the nodes external IP
- apiGroups: [""]
resources:
- nodes
verbs:
- get
- list
- watch
# -- Required ClusterRole rules
# @default -- See `values.yaml`
rules:
# Required to get information about the serices nodePort.
- apiGroups: [""]
resources:
- services
verbs:
- get
- list
- watch
# -- 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: 10001
runAsGroup: 10001
runAsNonRoot: true
runAsUser: 10001
# -- 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: true
# -- 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: 300
# -- 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
# -- Update stategy for the Statefulset
updateStrategy:
# -- Update stategy type
type: RollingUpdate
# -- 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 or extraContainerPorts
extraPorts: []
# -- Additional ports for the main container
extraContainerPorts: []
# -- Additional env variables
extraEnv: []
# -- Additional env variables injected via a created secret
secretEnv: {}
# MY_PASSWORD: supersecret
initChownData:
# -- Init container to set the correct permissions to access data directories
enabled: true
image:
# -- Container repository
repository: busybox
# -- Container tag
tag: 1.34.0
# -- Container pull policy
pullPolicy: IfNotPresent
# -- Resource requests and limits
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
serviceMonitor:
# -- If true, a ServiceMonitor CRD is created for a prometheus operator
# https://github.com/coreos/prometheus-operator
enabled: false
# -- Path to scrape
path: /debug/metrics/prometheus
# -- Alternative namespace for ServiceMonitor
namespace: null
# -- Additional ServiceMonitor labels
labels: {}
# -- Additional ServiceMonitor annotations
annotations: {}
# -- ServiceMonitor scrape interval
interval: 1m
# -- ServiceMonitor scheme
scheme: http
# -- ServiceMonitor TLS configuration
tlsConfig: {}
# -- ServiceMonitor scrape timeout
scrapeTimeout: 30s
# -- ServiceMonitor relabelings
relabelings: []