Skip to content

Commit

Permalink
add: docs and rename crds
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisMcKenzie committed Sep 27, 2024
1 parent 8c192cd commit e09a0ad
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,30 @@
# helm-charts

The home for public Helm charts for Ditto.

## Self hosting a Big Peer

Ditto offers a Helm chart for deploying a Big Peer on Kubernetes.
To install the chart, add the Ditto Helm repository:

```bash
helm repo add ditto https://getditto.github.io/helm-charts/
```

We will then need to install some CRDs that are required for the Big Peer to run:

```bash
kubectl apply --server-side --force-conflicts -f https://github.com/cert-manager/cert-manager/releases/download/v1.6.1/cert-manager.crds.yaml
kubectl apply --server-side -f https://raw.githubusercontent.com/getditto/helm-charts/main/crds/ditto_v1alpha1_bigpeer_crd.yaml
kubectl apply --server-side -f https://raw.githubusercontent.com/getditto/helm-charts/main/crds/ditto_v1alpha1_ditto_crd.yaml

```

Then using the values file
[values.yaml](https://github.com/getditto/helm-charts/blob/main/charts/big-peer/values.yaml)
which can be modified to suit your needs, install the chart:

```bash
helm install ditto-bp ditto/big-peer -f values.yaml
```

File renamed without changes.
File renamed without changes.

0 comments on commit e09a0ad

Please sign in to comment.