7be680cbe5
* docs: initial migration to docusaurus * website: add custom font, update blurbs and icons * website: update splash * root: update links to docs * flows: use .pbflow extension so docusaurus doesn't mangle the files * e2e: workaround prospector * Squashed commit of the following: commit1248585dca
Author: Jens Langhammer <jens.langhammer@beryju.org> Date: Sun Nov 15 20:46:53 2020 +0100 e2e: attempt to fix prospector error again commit1319c480c4
Author: Jens Langhammer <jens.langhammer@beryju.org> Date: Sun Nov 15 20:41:35 2020 +0100 ci: install previous python version for upgrade testing * web: update accent colours and format * website: format markdown files * website: fix colours for text * website: switch to temporary accent colour to improve readability * flows: fix path for TestTransferDocs * flows: fix formatting of tests
66 lines
2.2 KiB
Markdown
66 lines
2.2 KiB
Markdown
---
|
|
title: Upgrading to 0.12
|
|
---
|
|
|
|
This update brings these headline features:
|
|
|
|
- Rewrite Outpost state Logic, which now supports multiple concurrent Outpost instances.
|
|
- Add Kubernetes Integration for Outposts, which deploys and maintains Outposts with High Availability in a Kubernetes Cluster
|
|
- Add System Task Overview to see all background tasks, their status, the log output, and retry them
|
|
- Alerts now disappear automatically
|
|
- Audit Logs are now searchable
|
|
- Users can now create their own Tokens to access the API
|
|
- docker-compose deployment now uses traefik 2.3
|
|
|
|
Fixes:
|
|
|
|
- Fix high CPU Usage of the proxy when Websocket connections fail
|
|
|
|
## Upgrading
|
|
|
|
### docker-compose
|
|
|
|
Docker-compose users should download the latest docker-compose file from [here](https://raw.githubusercontent.com/BeryJu/passbook/master/docker-compose.yml). This includes the new traefik 2.3.
|
|
|
|
Afterwards, you can simply run `docker-compose up -d` and then the normal upgrade command of `docker-compose run --rm server migrate`.
|
|
|
|
### Kubernetes
|
|
|
|
For Kubernetes users, there are some changes to the helm values.
|
|
|
|
The values change from
|
|
|
|
```yaml
|
|
config:
|
|
# Optionally specify fixed secret_key, otherwise generated automatically
|
|
# secret_key: _k*@6h2u2@q-dku57hhgzb7tnx*ba9wodcb^s9g0j59@=y(@_o
|
|
# Enable error reporting
|
|
error_reporting:
|
|
enabled: false
|
|
environment: customer
|
|
send_pii: false
|
|
# Log level used by web and worker
|
|
# Can be either debug, info, warning, error
|
|
log_level: warning
|
|
```
|
|
|
|
to
|
|
|
|
```yaml
|
|
config:
|
|
# Optionally specify fixed secret_key, otherwise generated automatically
|
|
# secretKey: _k*@6h2u2@q-dku57hhgzb7tnx*ba9wodcb^s9g0j59@=y(@_o
|
|
# Enable error reporting
|
|
errorReporting:
|
|
enabled: false
|
|
environment: customer
|
|
sendPii: false
|
|
# Log level used by web and worker
|
|
# Can be either debug, info, warning, error
|
|
logLevel: warning
|
|
```
|
|
|
|
in order to be consistent with the rest of the settings.
|
|
|
|
There is also a new setting called `kubernetesIntegration`, which controls the Kubernetes integration for passbook. When enabled (the default), a Service Account is created, which allows passbook to deploy and update Outposts.
|