summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-05-26 14:15:22 -0400
committerGitHub <noreply@github.com>2022-05-26 14:15:22 -0400
commit5f097c371f6ea13829b70a0a508464e57027bc8b (patch)
treee9aca0a7c4e1a6b9583634ef956286f4b18f7aca
parent2ce31caa1c24406c7d890d43493101b61b11eabe (diff)
parentab0728421babc646619aca9ad8a9c5be89ffc769 (diff)
downloadpodman-5f097c371f6ea13829b70a0a508464e57027bc8b.tar.gz
podman-5f097c371f6ea13829b70a0a508464e57027bc8b.tar.bz2
podman-5f097c371f6ea13829b70a0a508464e57027bc8b.zip
Merge pull request #14355 from flouthoc/server-client-compat-for-bug-fix
[CI:Docs]: note regarding version compatablity between server and client for bug fixes.
-rw-r--r--troubleshooting.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/troubleshooting.md b/troubleshooting.md
index cf554654b..6e7f5cf26 100644
--- a/troubleshooting.md
+++ b/troubleshooting.md
@@ -1217,3 +1217,17 @@ WARN[0000] Can't stat lower layer "/var/lib/containers/storage/overlay/l/7HS76F2
It is the user responsibility to make sure images in an additional
store are not deleted while being used by containers in another
store.
+
+### 36) Syncing bugfixes for podman-remote or setups using Podman API
+
+After upgrading Podman to a newer version an issue with the earlier version of Podman still presents itself while using podman-remote.
+
+#### Symptom
+
+While running podman remote commands with the most updated Podman, issues that were fixed in a prior version of Podman can arise either on the Podman client side or the Podman server side.
+
+#### Solution
+
+When upgrading Podman to a particular version for the required fixes, users often make the mistake of only upgrading the Podman client. However, suppose a setup uses `podman-remote` or uses a client that communicates with the Podman server on a remote machine via the REST API. In that case, it is required to upgrade both the Podman client and the Podman server running on the remote machine. Both the Podman client and server must be upgraded to the same version.
+
+Example: If a particular bug was fixed in `v4.1.0` then The Podman client` must have version `v4.1.0` as well the Podman server must have version `v4.1.0`.