-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: multiple improvements - Improve markdown style - Rework Kubernetes and Kurtosis sections - Add Storages section - Remove broken link * link env vars * format + background jobs
- Loading branch information
1 parent
a36786f
commit 4875a48
Showing
14 changed files
with
140 additions
and
78 deletions.
There are no files selected for viewing
Binary file not shown.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
--- | ||
title: Deploy in Kubernetes | ||
nextjs: | ||
metadata: | ||
title: Deploy in Kubernetes | ||
description: Run Blobscan using our Helm Charts | ||
--- | ||
|
||
A set of Helm charts are provided to run multiple Blobscan components on Kubernetes. | ||
|
||
{% callout title="Tip" %} | ||
If you want to try the Helm Charts without setting up a whole Kubernetes clusters, you can create a localy [Kind](https://kind.sigs.k8s.io/) cluster. | ||
{% /callout %} | ||
|
||
```bash | ||
kind create cluster | ||
kubectl cluster-info --context kind-kind | ||
``` | ||
|
||
## Installing helm chart | ||
|
||
First you will need to add a new repository: | ||
|
||
```bash | ||
helm repo add blobscan-helm-charts https://blobscan.github.io/blobscan-helm-charts | ||
``` | ||
|
||
Then retrieve the packages in the repository an install: | ||
|
||
```bash | ||
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 | ||
|
||
```bash | ||
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: | ||
|
||
```bash | ||
helm ls | ||
helm uninstall blobscan | ||
``` | ||
|
||
{% callout title="Tip" %} | ||
If you used a local Kind cluster. | ||
{% /callout %} | ||
|
||
```bash | ||
kind delete cluster | ||
``` |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.