You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/upgrades.md
+17-3Lines changed: 17 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,27 @@
1
-
# Upgrading tobs using helm (without tobs CLI)
2
-
3
-
The following steps are necessary if using helm without the tobs CLI. The tobs CLI will handle these upgrade tasks automatically for you.
1
+
# Upgrading tobs
4
2
5
3
Firstly upgrade the helm repo to pull the latest available tobs helm chart. We always recommend upgrading to the [latest](https://github.com/timescale/tobs/releases/latest) tobs stack available.
6
4
7
5
```shell
8
6
helm repo update
9
7
```
10
8
9
+
## Upgrading from 19.x to 20.x
10
+
11
+
Version 20 of tobs is specifying `clusterName` for timescaledb resources. This is required to make seamless connection
12
+
string propagation work out of the box with version 0.27+ of timescaledb helm chart. Since tobs is now specifying
13
+
`clusterName` in values file, we took this opportunity to also change the default `clusterName` to `{{ .Release.Name }}-tsdb`.
14
+
This allows easier operations on the installed cluster as the objects are clearly associated with particular component.
15
+
16
+
Sadly this is a breaking change for users who are using tobs with version 0.26 or lower of timescaledb helm chart.
17
+
If you are using tobs with version 0.26 or lower of timescaledb helm chart and you don't want to manually migrate
18
+
your timescaledb resources, you can specify the following option in your `values.yaml` file.
19
+
20
+
```yaml
21
+
timescaledb-single:
22
+
clusterName: "{{ .Release.Name }}"
23
+
```
24
+
11
25
## Upgrading from 18.x to 19.x
12
26
13
27
There is a breaking change in [kube-prometheus-stack](https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack#from-41x-to-42x).
0 commit comments