mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 05:38:55 +00:00
5eb5f6afa9
* second pass at faucet, no rate limiting yet * Add authentication support, step 1. This stuff needs to be refactored and tested * move deposit input to keystore pkg, add proof of possession and withdrawal addr * checkpoint on progress with cluster private key manager * checkpoint w/ bootnode config * checkpoint * resolve todo * encrypt the secrets * add note about querying testnet * workspace * checkpoitn * remove limits * update * checkpoint * checkpoint * remove jwt stuff * fix build * lint * lint * remove init * remove jwt * update * checkpoint
40 lines
932 B
YAML
40 lines
932 B
YAML
kind: StatefulSet
|
|
apiVersion: apps/v1
|
|
metadata:
|
|
name: bootnode
|
|
namespace: beacon-chain
|
|
annotations:
|
|
prometheus.io/scrape: 'true'
|
|
spec:
|
|
replicas: 1
|
|
serviceName: bootnode
|
|
selector:
|
|
matchLabels:
|
|
component: bootnode
|
|
template:
|
|
metadata:
|
|
labels:
|
|
component: bootnode
|
|
spec:
|
|
priorityClassName: production-priority
|
|
containers:
|
|
- name: bootnode
|
|
image: gcr.io/prysmaticlabs/prysm/bootnode:latest
|
|
args:
|
|
- "-debug"
|
|
- "-port=4000"
|
|
- "-private=$(PRIVATE_KEY)"
|
|
resources:
|
|
requests:
|
|
memory: "100Mi"
|
|
cpu: "100m"
|
|
ports:
|
|
- containerPort: 4000
|
|
name: bootnodeport
|
|
env:
|
|
- name: PRIVATE_KEY
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: bootnode-secrets
|
|
key: private_key
|