summaryrefslogtreecommitdiff
path: root/docs/source/markdown/podman-container-clone.1.md
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-07-13 14:54:57 +0000
committerGitHub <noreply@github.com>2022-07-13 14:54:57 +0000
commit5f8d08d593d625beaa224c48e7da945c4f90ea48 (patch)
tree4ab29ca377b367c83994c466cb8edb2a65c8799d /docs/source/markdown/podman-container-clone.1.md
parentd2c620e1c4e4b26c506418d68543a88d4c499a31 (diff)
parent1392922d4a0557d3af0a480beef4ac24cd8fd283 (diff)
downloadpodman-5f8d08d593d625beaa224c48e7da945c4f90ea48.tar.gz
podman-5f8d08d593d625beaa224c48e7da945c4f90ea48.tar.bz2
podman-5f8d08d593d625beaa224c48e7da945c4f90ea48.zip
Merge pull request #14915 from eriksjolund/rename_c_to_cpu_shares
[CI:DOCS] man pages: replace -c with --cpu-shares
Diffstat (limited to 'docs/source/markdown/podman-container-clone.1.md')
-rw-r--r--docs/source/markdown/podman-container-clone.1.md17
1 files changed, 9 insertions, 8 deletions
diff --git a/docs/source/markdown/podman-container-clone.1.md b/docs/source/markdown/podman-container-clone.1.md
index c0c8d8631..3b9d79862 100644
--- a/docs/source/markdown/podman-container-clone.1.md
+++ b/docs/source/markdown/podman-container-clone.1.md
@@ -89,14 +89,15 @@ cores. Even if a container is limited to less than 100% of CPU time, it can
use 100% of each individual CPU core.
For example, consider a system with more than three cores.
-container **{C0}** is started with **-c=512** running one process, and another container
-**{C1}** with **-c=1024** running two processes, this can result in the following
-division of CPU shares:
-
-PID container CPU CPU share
-100 {C0} 0 100% of CPU0
-101 {C1} 1 100% of CPU1
-102 {C1} 2 100% of CPU2
+If the container _C0_ is started with **--cpu-shares=512** running one process,
+and another container _C1_ with **--cpu-shares=1024** running two processes,
+this can result in the following division of CPU shares:
+
+| PID | container | CPU | CPU share |
+| ---- | ----------- | ------- | ------------ |
+| 100 | C0 | 0 | 100% of CPU0 |
+| 101 | C1 | 1 | 100% of CPU1 |
+| 102 | C1 | 2 | 100% of CPU2 |
If none are specified, the original container's CPU shares are used.