helper program to deploy tezos on kubernetes
python3 -m venv .venv
source .venv/bin/activate
pip install -e ./
$CHAIN_NAME: is your private chain's name
mkchain --create --baker $CHAIN_NAME | kubectl apply -f -
$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
You will typically receive a yaml file from a private chain creator.
https://aws.amazon.com/premiumsupport/knowledge-center/eks-persistent-storage/