mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 17:22:18 +00:00
37 lines
979 B
YAML
37 lines
979 B
YAML
kind: Deployment
|
|
apiVersion: apps/v1beta1
|
|
metadata:
|
|
name: beacon-chain
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
component: beacon-chain
|
|
universe: beacon-chain
|
|
template:
|
|
metadata:
|
|
labels:
|
|
component: beacon-chain
|
|
universe: beacon-chain
|
|
spec:
|
|
priorityClassName: production-priority
|
|
containers:
|
|
- name: beacon-chain
|
|
image: gcr.io/prysmaticlabs/prysm/beacon-chain:latest
|
|
args:
|
|
- "--web3provider=ws://$(GETH_NODES_SERVICE_HOST):$(GETH_NODES_SERVICE_PORT_WS)"
|
|
- "--verbosity=debug"
|
|
- "--vrcaddr=0x541AfaC5266c534de039B4A1a53519e76ea82846"
|
|
- "--rpc-port=4000"
|
|
- "--simulator=false"
|
|
resources:
|
|
requests:
|
|
memory: "100Mi"
|
|
cpu: "50m"
|
|
limits:
|
|
memory: "250Mi"
|
|
cpu: "100m"
|
|
ports:
|
|
- containerPort: 4000
|
|
name: grpc
|