mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 07:28:06 -05:00
* 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
|