Skip to content

Latest commit

 

History

History

helm-chart

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Cothority Helm Chart

Provides a helm chart for running a conode.

How to use this:

1. Generating the key pair for the conode

docker run -it --rm dedis/conode:latest bash
./conode setup # Use defaults
cat /root/.config/conode/private.toml

Copy the file contents into a fresh values file (e.g. ./your-values.yaml) and edit the Address and Description fields.

2. Deploy the conode

First, make the helm chart:

helm package conode # From this folder

Then deploy it:

helm upgrade --install conode conode-0.1.0.tgz \
    --namespace conode \
    -f your-values.yaml