Skip to content

Commit 201b824

Browse files
[docs] Add minio secrets instructions to install docs
1 parent 3ff49ea commit 201b824

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

docs/self-hosted/install/install-on-kubernetes.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,26 @@ For some cloud providers, we offer [Terraform](https://www.terraform.io/) script
2424

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

27+
1. Create a file `values.custom.yaml` with the following content:
28+
```
29+
minio:
30+
accessKey: your-random-access-key
31+
secretKey: your-random-secret-key
32+
```
33+
You should replace the keys with 2 different random strings unique for your installation.
34+
2735
1. Run the following commands in your local terminal:
2836
```console
2937
helm repo add gitpod.io https://charts.gitpod.io
3038

31-
helm install gitpod gitpod.io/gitpod
39+
helm install -f values.custom.yaml gitpod gitpod.io/gitpod
3240
```
3341

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

36-
3. Configure [domain and https](../configure-ingress/).
44+
1. Configure [domain and https](../configure-ingress/).
3745

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

4048

4149
## Recommended Configuration

docs/self-hosted/install/storage.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ For more complex use case we recommend configuring more permanent means of persi
4242
2. Create a file `values.custom.yaml` with this content:
4343
```yaml
4444
minio:
45+
accessKey: add-a-radom-access-key-here
46+
secretKey: add-a-radom-secret-key-here
4547
# insert custom config here
4648
```
4749
3. Redeploy Gitpod using `helm upgrade --install -f values.custom.yaml gitpod gitpod.io/gitpod` to apply the changes

0 commit comments

Comments
 (0)