Skip to content

Commit 3ff49ea

Browse files
[docs] Add upgrade guide
1 parent e42f7c8 commit 3ff49ea

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

docs/self-hosted/install/upgrade.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
url: /docs/self-hosted/latest/install/upgrade/
3+
---
4+
5+
# Gitpod Self-Hosted Upgrade Notes
6+
7+
## Upgrading Gitpod from v0.6.0 to v0.7.0
8+
9+
With version 0.7.0 there are two major changes that require a user action. Both relate to the remote storage.
10+
11+
### Built-in MinIO is now accessable at minio.your-gitpod-domain.com
12+
13+
When you install Gitpod on your own Kubernetes installation, it brings a built-in MinIO object storage (unless disabled). As of v0.7.0, the built-in MinIO instance is accessable at https://minio.your-gitpod-domain.com. That's the reason that (for security reasons) we do not set a default access and secret key for the built-in MinIO installation anymore. That means, you need to add your own random keys in your values files like this:
14+
```
15+
minio:
16+
accessKey: add-a-radom-access-key-here
17+
secretKey: add-a-radom-secret-key-here
18+
```
19+
20+
If you don't do this, `helm` will fail with the following message:
21+
22+
> minio access key is required, please add a value to your values.yaml
23+
24+
25+
### Remote storage config has been moved to a new component
26+
27+
If you have a custom remote storage config (e.g. you use your own MinIO instance or the Google Cloud Storage), you need to move the config from the component `wsDaemon` to the new component `contentService`. See the [Storage Guide](../storage/) for an example.

0 commit comments

Comments
 (0)