Run your Blobscan instance
Deploy in Kubernetes
A set of Helm charts are provided to run multiple Blobscan components on Kubernetes.
Tip
If you want to try the Helm Charts without setting up a whole Kubernetes clusters, you can create a localy Kind cluster.
kind create cluster
kubectl cluster-info --context kind-kind
Installing helm chart
First you will need to add a new repository:
helm repo add blobscan-helm-charts https://blobscan.github.io/blobscan-helm-charts
Then retrieve the packages in the repository an install:
helm repo update
helm install blobscan blobscan-helm-charts/blobscan
The easiest way is installing blobscan
, which is an umbrella chart which will install blobscan-api
, blobscan-web
and blobscan-indexer
.
List of helm charts available
helm search repo blobscan-helm-charts
Name | Description |
---|---|
blobscan-helm-charts/blobscan | Blobscan meta-chart |
blobscan-helm-charts/blobscan-api | Blobscan API |
blobscan-helm-charts/blobscan-indexer | Blobscan indexer |
blobscan-helm-charts/blobscan-web | Blobscan Web UI |
Uninstalling blobscan
Remove blobscan:
helm ls
helm uninstall blobscan
Tip
If you used a local Kind cluster.
kind delete cluster