A set of Helm charts to run multiple components of the Ethereum Foundations internal stack on Kubernetes.
Helm must be installed to use the charts. Please refer to Helm's documentation to get started.
Once Helm has been set up correctly, add the repo as follows:
helm repo add ethquokkaops-helm-charts https://ethdevops.github.io/ethquokkaops-helm-charts
If you had already added this repo earlier, run helm repo update
to retrieve
the latest versions of the packages. You can then run the following command to see the charts.
helm search repo ethquokkaops-helm-charts
To install the discord-backup-bot chart:
helm install discord-backup-bot ethquokkaops-helm-charts/ethstats
To uninstall the chart:
helm delete discord-backup-bot
discord-backup-bot
- Deploys the Discord backup bot to grab message backups from discord servers
pre-commit
- Used to setup pre-commit git hooksdocker
- Used by many Makefile targets
This repository used pre-commit
to manage and run certain git hooks. Hook definitions can be found within the .pre-commit-config.yaml
file.
Run the following to add the hooks to your local repository:
make init
The README
for every chart is auto generated using helm-docs. This is defined as a pre-commit hook. If you want to run it manually, you can run:
make docs
The CT (Chart Testing) tool is used to lint and validate charts. You can run this via:
make lint