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/for-ops/upgrade-notes.md
+59Lines changed: 59 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,65 @@ sidebar_label: Upgrade Notes
8
8
9
9
In some cases between versions upgrades there are issues that can occur, on this page you will find fixes on how to deal with those issues.
10
10
11
+
## v4.7.0
12
+
13
+
### Manual Istio Sidecar Updates Required
14
+
15
+
Due to an issue with automatic Istio sidecar restarts for certain pod types, manual intervention is required after upgrading Istio to ensure all pods have the latest sidecar version.
16
+
17
+
#### Affected Pod Types
18
+
19
+
The following pod types require manual restart after Istio upgrades:
20
+
21
+
1. TTY pods (standalone pods without controllers)
22
+
2. Tekton EventListener pods (managed by Tekton controllers)
23
+
24
+
#### Manual Restart Procedures
25
+
26
+
**For TTY Pods:**
27
+
28
+
TTY pods are standalone and will not be recreated automatically when deleted. Handle with care:
29
+
30
+
```shell
31
+
# Delete all TTY pods (WARNING: This will terminate TTY sessions for any connected users)
32
+
kubectl delete pods -A -l otomi=tty
33
+
```
34
+
35
+
:::warning
36
+
Deleting TTY pods will disconnect any active user sessions and the pods will NOT be recreated automatically. Users will need to create a new TTY session through the UI. Coordinate with users before performing this action.
37
+
:::
38
+
39
+
**For Tekton EventListener Pods:**
40
+
41
+
EventListener pods will be automatically recreated by the Tekton controller:
42
+
43
+
```shell
44
+
# Delete all EventListener pods (safe - will be recreated automatically)
45
+
kubectl delete pods -A -l app.kubernetes.io/managed-by=EventListener
46
+
```
47
+
48
+
:::note
49
+
The Tekton controller will automatically recreate the pod with the new Istio sidecar.
50
+
:::
51
+
52
+
#### Verification
53
+
54
+
After restarting pods, verify they have the correct Istio sidecar version:
0 commit comments