Skip to content

Commit

Permalink
[docs] Add minio secrets instructions to install docs
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliusludmann committed Feb 4, 2021
1 parent 3ff49ea commit 201b824
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
16 changes: 12 additions & 4 deletions docs/self-hosted/install/install-on-kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,26 @@ For some cloud providers, we offer [Terraform](https://www.terraform.io/) script

To install Gitpod in your Kubernetes cluster, follow these steps:

1. Create a file `values.custom.yaml` with the following content:
```
minio:
accessKey: your-random-access-key
secretKey: your-random-secret-key
```
You should replace the keys with 2 different random strings unique for your installation.

1. Run the following commands in your local terminal:
```console
helm repo add gitpod.io https://charts.gitpod.io

helm install gitpod gitpod.io/gitpod
helm install -f values.custom.yaml gitpod gitpod.io/gitpod
```

2. Run `kubectl get pods` and verify that all pods are in state `RUNNING`. If some are not, please see the [Troubleshooting Guide](../troubleshooting/).
1. Run `kubectl get pods` and verify that all pods are in state `RUNNING`. If some are not, please see the [Troubleshooting Guide](../troubleshooting/).

3. Configure [domain and https](../configure-ingress/).
1. Configure [domain and https](../configure-ingress/).

4. Go to [https://\<your-domain.com\>](https://\<your-domain.com\>) and follow the steps to complete the installation.
1. Go to [https://\<your-domain.com\>](https://\<your-domain.com\>) and follow the steps to complete the installation.


## Recommended Configuration
Expand Down
2 changes: 2 additions & 0 deletions docs/self-hosted/install/storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ For more complex use case we recommend configuring more permanent means of persi
2. Create a file `values.custom.yaml` with this content:
```yaml
minio:
accessKey: add-a-radom-access-key-here
secretKey: add-a-radom-secret-key-here
# insert custom config here
```
3. Redeploy Gitpod using `helm upgrade --install -f values.custom.yaml gitpod gitpod.io/gitpod` to apply the changes

0 comments on commit 201b824

Please sign in to comment.