mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
740a9b76a7
* Add nginx ingress for proof-of-work namespace * connect beacon-chain to pow namespace geth-nodes for websocket connections * Added relay to beacon-chain * Route inbound TCP traffic on port 20000 to beacon-relay * Add bootnode * Add a basic pk * checkpoint * Added flag for p2p port * Register flag with main * Set P2P port specifically * Add beacon chain config * add deployvrc job * Add deployvrc service account * review * gazelle * a cluster is needed, i guess
22 lines
611 B
YAML
22 lines
611 B
YAML
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: deploy-vrc
|
|
namespace: beacon-chain
|
|
spec:
|
|
#ttlSecondsAfterFinished: 7200
|
|
activeDeadlineSeconds: 600
|
|
backoffLimit: 3
|
|
template:
|
|
spec:
|
|
priorityClassName: batch-priority
|
|
serviceAccountName: deployvrc
|
|
containers:
|
|
- name: deployvcr
|
|
image: gcr.io/prysmaticlabs/prysm/deployvrc:latest
|
|
args:
|
|
- "--httpPath=http://geth-nodes.pow.svc.cluster.local:8545"
|
|
- "--privKey=783da8ef5343c3019748506305d400bca8c324a5819f3a7f7fbf0c0a0d799b09"
|
|
- "--k8s-config=beacon-config"
|
|
restartPolicy: OnFailure
|