Skip to content

RUN 27139 CP docs upgrade - keeping redis pubsub #1455

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/admin/runai-setup/self-hosted/k8s/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,16 @@ The Run:ai control-plane installation has been rewritten and is no longer using
--set postgresql.primary.persistence.existingClaim=pvc-postgresql \
--set thanos.receive.persistence.existingClaim=pvc-thanos-receive
```
### Upgrade from version < 2.21 to >= 2.21
In version 2.21 we swapped our redis pubsub system with nats.
In order to prevent loss of pubsub events, we recommend keeping the redis alive for another version, thus, allowing all of the remaning messages to be handled.
During the upgrade, please add the following:

``` bash
--set redisQueue.enabled=true \
--set global.pubsub.additionalSubscriber.enabled=true
```


## Upgrade Cluster

Expand Down