monorepo lab stuff, init zen
This commit is contained in:
parent
cfc15bba89
commit
645e09f9dd
54 changed files with 67498 additions and 406 deletions
54
clusters/lab/eth/nethermind-release.yaml
Normal file
54
clusters/lab/eth/nethermind-release.yaml
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: nethermind-mainnet-pvc
|
||||
namespace: eth
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
storageClassName: local-path
|
||||
resources:
|
||||
requests:
|
||||
storage: 1200Gi
|
||||
---
|
||||
apiVersion: helm.cattle.io/v1
|
||||
kind: HelmChart
|
||||
metadata:
|
||||
name: nethermind-mainnet
|
||||
namespace: kube-system
|
||||
spec:
|
||||
targetNamespace: eth
|
||||
repo: https://ethpandaops.github.io/ethereum-helm-charts/
|
||||
chart: nethermind
|
||||
valuesContent: |-
|
||||
replicas: 1
|
||||
image:
|
||||
pullPolicy: "Always"
|
||||
tag: 1.31.10
|
||||
extraArgs:
|
||||
- "--Network.MaxActivePeers 20"
|
||||
- "--Pruning.CacheMb 4096"
|
||||
- "--Pruning.FullPruningTrigger VolumeFreeSpace"
|
||||
- "--Pruning.FullPruningCompletionBehavior AlwaysShutdown"
|
||||
- "--Init.MemoryHint 4096000000"
|
||||
p2pNodePort:
|
||||
enabled: true
|
||||
port: 30303
|
||||
persistence:
|
||||
enabled: true
|
||||
existingClaim: nethermind-mainnet-pvc
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: nethermind-http-rpc
|
||||
namespace: eth
|
||||
spec:
|
||||
type: LoadBalancer
|
||||
selector:
|
||||
app.kubernetes.io/instance: nethermind-mainnet
|
||||
ports:
|
||||
- protocol: TCP
|
||||
port: 8545
|
||||
targetPort: 8545
|
||||
Loading…
Add table
Add a link
Reference in a new issue