mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
c2d4f5b2b8
* Create scripts for k8s and standard runs * Add comment * Create scripts to deploy contract, start beacon chain and validators * Add placeholders * Add more docs and remove uneeded tag
13 lines
531 B
Bash
Executable File
13 lines
531 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# Make sure you set your contract and private key path in the configs
|
|
kubectl apply -f k8s/priority.yaml
|
|
kubectl apply -f k8s/beacon-chain/namespace.yaml
|
|
kubectl apply -f k8s/beacon-chain/beacon-config.config.yaml
|
|
kubectl apply -f k8s/beacon-chain/beacon-chain.deploy.yaml
|
|
kubectl apply -f k8s/beacon-chain/beacon-chain.service.yaml
|
|
|
|
kubectl apply -f k8s/beacon-chain/cluster-manager.encrypted_secret.yaml
|
|
kubectl apply -f k8s/beacon-chain/cluster-manager.yaml
|
|
kubectl apply -f k8s/beacon-chain/validator.deploy.yaml
|