diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2021-08-15 11:02:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-15 11:02:36 +0000 |
commit | 5592ac9e236191da654619d1c8505420187766b4 (patch) | |
tree | 8c912ac25388be644b04082d09ac73f75768c67e /docs/source/markdown | |
parent | 94886d4abad7787cb920614ed26955ca36b13846 (diff) | |
parent | bef26f2582733c23957a863bc0769a618ab773a8 (diff) | |
download | podman-5592ac9e236191da654619d1c8505420187766b4.tar.gz podman-5592ac9e236191da654619d1c8505420187766b4.tar.bz2 podman-5592ac9e236191da654619d1c8505420187766b4.zip |
Merge pull request #11219 from baude/oneshottoonce
rename oneshot initcontainers to once
Diffstat (limited to 'docs/source/markdown')
-rw-r--r-- | docs/source/markdown/podman-create.1.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/source/markdown/podman-create.1.md b/docs/source/markdown/podman-create.1.md index 7655cb8fa..b73f6c05a 100644 --- a/docs/source/markdown/podman-create.1.md +++ b/docs/source/markdown/podman-create.1.md @@ -453,8 +453,8 @@ When using pods, create an init style container, which is run after the infra co but before regular pod containers are started. Init containers are useful for running setup operations for the pod's applications. -Valid values for `init-ctr` type are *always* or *oneshot*. The *always* value -means the container will run with each and every `pod start`, whereas the *oneshot* +Valid values for `init-ctr` type are *always* or *once*. The *always* value +means the container will run with each and every `pod start`, whereas the *once* value means the container will only run once when the pod is started and then the container is removed. Init containers are only run on pod `start`. Restarting a pod will not execute any init |