Skip to content

configuration files to deploy tezos on kubernetes

License

Notifications You must be signed in to change notification settings

nicolasochem/tezos-k8s

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tezos-k8s

helper program to deploy tezos on kubernetes

quickstart

python3 -m venv .venv
source .venv/bin/activate
pip install -e ./

private chain

create

$CHAIN_NAME: is your private chain's name

mkchain --create --baker $CHAIN_NAME | kubectl apply -f -

invite

$CHAIN_NAME: is your private chain's name $IP is the ip address your node will serve rpc on.

Output is suitable to copy/paste and share with joiners.

IP=$(kubectl -n tqtezos exec  daemonsets/zerotier-bridge -- zerotier-cli get $ZT_NET ip)
mkchain --invite --bootstrap-peer $IP $CHAIN_NAME > join-$CHAIN_NAME.yaml

join

You will typically receive a yaml file from a private chain creator.

EKS

https://aws.amazon.com/premiumsupport/knowledge-center/eks-persistent-storage/

About

configuration files to deploy tezos on kubernetes

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%