The repo contains the scripts to deploy the core TrustBloc components.
- docker (running)
- minikube [IMP: supported version: v1.24.0]
- kubectl [supported version: v1.21]
- GNU bash [minimum version: v5] (for macOS, refer macos setup)
- GNU make
- GNU sed
- HyperKit installed
- Install GNU sed and base64 utils:
brew install gnu-sed coreutils bash
- Create directory with symlinks to the used GNU tools
# mkdir ~/gnu && cd ~/gnu && ln -fs $( which gsed ) sed && ln -fs $( which gbase64 ) base64
- Always prepend the directory with GNU tools to the PATH when using this repo or add this to the bash profile, e.g.:
# PATH=~/gnu:$PATH
curl -LO https://github.com/kubernetes/minikube/releases/download/v1.24.0/minikube-darwin-amd64
sudo install minikube-darwin-amd64 /usr/local/bin/minikube
curl -LO https://github.com/kubernetes/minikube/releases/download/v1.24.0/minikube-linux-amd64
sudo install minikube-linux-amd64 /usr/local/bin/minikube
Re-create any existing minikube cluster and deploy all trustbloc services into the newly created cluster:
make setup-and-deploy
Deploy all components to the existing kubernetes cluster:
make
Deploy specific components to the existing kubernetes cluster:
make deploy-components COMPONENTS="component1 component2 component3"
Minikube cluster setup:
make minikube-setup
Minikube cluster re-create:
make minikube-reset
Open the dashboard in a browser:
minikube dashboard
Thank you for your interest in contributing. Please see our community contribution guidelines for more information.
Apache License, Version 2.0 (Apache-2.0). See the LICENSE file.