mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 09:14:28 +00:00
115 lines
3.2 KiB
YAML
115 lines
3.2 KiB
YAML
kind: StatefulSet
|
|
apiVersion: apps/v1
|
|
metadata:
|
|
name: miner
|
|
labels:
|
|
universe: geth
|
|
component: miner
|
|
spec:
|
|
replicas: 1
|
|
serviceName: "miners"
|
|
selector:
|
|
matchLabels:
|
|
universe: geth
|
|
component: miner
|
|
template:
|
|
metadata:
|
|
labels:
|
|
universe: geth
|
|
component: miner
|
|
spec:
|
|
priorityClassName: production-priority
|
|
containers:
|
|
- name: miner
|
|
image: ethereum/client-go:alltools-stable
|
|
ports:
|
|
- containerPort: 8545
|
|
name: rpc
|
|
- containerPort: 8546
|
|
name: ws
|
|
- containerPort: 30303
|
|
name: discovery-tcp
|
|
protocol: TCP
|
|
- containerPort: 30303
|
|
name: discovery-udp
|
|
protocol: UDP
|
|
# Use /bin/sh -c to execute geth so that we have access to HOSTNAME in
|
|
# the command arguments.
|
|
# https://github.com/kubernetes/kubernetes/issues/57726
|
|
command:
|
|
- "/bin/sh"
|
|
- "-c"
|
|
- >
|
|
geth
|
|
--networkid=1337
|
|
--bootnodes=enode://$(BOOTNODE_PUBKEY)@$(GETH_BOOTNODE_SERVICE_HOST):$(GETH_BOOTNODE_SERVICE_PORT_BOOTNODE_UDP)
|
|
--ethstats=$HOSTNAME:$(ETHSTATS_WS_SECRET)@$(GETH_ETHSTATS_SERVICE_HOST):$(GETH_ETHSTATS_SERVICE_PORT)
|
|
--rpc
|
|
--rpcaddr=0.0.0.0
|
|
--rpccorsdomain="*"
|
|
--ws
|
|
--datadir=/ethereum
|
|
--debug
|
|
--verbosity=4
|
|
--mine
|
|
--minerthreads=1
|
|
--etherbase=0x717c3a6e4cbd476c2312612155eb233bf498dd5b
|
|
--extradata=$HOSTNAME
|
|
--ethash.dagsinmem=1
|
|
--ethash.dagsondisk=2
|
|
--ethash.dagdir="/dag"
|
|
--nousb
|
|
--cache=1024
|
|
--gasprice=0
|
|
volumeMounts:
|
|
- name: chaindata
|
|
mountPath: "/ethereum"
|
|
- name: dag
|
|
mountPath: "/dag"
|
|
env:
|
|
- name: ETHSTATS_WS_SECRET
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: ethstats-secrets
|
|
key: ws
|
|
- name: BOOTNODE_PUBKEY
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: geth-bootnode-secret
|
|
key: public_key
|
|
resources:
|
|
requests:
|
|
memory: "2Gi"
|
|
cpu: "500m"
|
|
limits:
|
|
memory: "2.5Gi"
|
|
cpu: "500m"
|
|
initContainers:
|
|
- name: genesis
|
|
image: ethereum/client-go:alltools-stable
|
|
command: ["geth"]
|
|
args: ["--datadir=/ethereum", "init", "/data/genesis.json"]
|
|
volumeMounts:
|
|
- name: genesis
|
|
mountPath: "/data"
|
|
readOnly: true
|
|
- name: chaindata
|
|
mountPath: "/ethereum"
|
|
volumes:
|
|
- name: chaindata
|
|
emptyDir: {}
|
|
- name: genesis
|
|
secret:
|
|
secretName: geth-genesis
|
|
items:
|
|
- key: json
|
|
path: genesis.json
|
|
volumeClaimTemplates:
|
|
- metadata:
|
|
name: dag
|
|
spec:
|
|
accessModes: [ "ReadWriteOnce" ]
|
|
resources:
|
|
requests:
|
|
storage: 2Gi
|