summaryrefslogtreecommitdiff
path: root/docs/source/markdown/podman-play-kube.1.md
diff options
context:
space:
mode:
authorUrvashi Mohnani <umohnani@redhat.com>2022-07-19 11:58:27 -0400
committerMatthew Heon <matthew.heon@pm.me>2022-07-26 13:39:20 -0400
commitc3c07ed09eb9e5998f2c67f1054850a5b8266aae (patch)
tree8eb27fc68de4f474d4c37e8e13b0c7e893a3f4cc /docs/source/markdown/podman-play-kube.1.md
parent6057db75d81101fcfe2e63debedd8d0029461de4 (diff)
downloadpodman-c3c07ed09eb9e5998f2c67f1054850a5b8266aae.tar.gz
podman-c3c07ed09eb9e5998f2c67f1054850a5b8266aae.tar.bz2
podman-c3c07ed09eb9e5998f2c67f1054850a5b8266aae.zip
Update init ctr default for play kube
Update the init container type default to once instead of always to match k8s behavior. Add a new annotation that can be used to change the init ctr type in the kube yaml. Signed-off-by: Urvashi Mohnani <umohnani@redhat.com>
Diffstat (limited to 'docs/source/markdown/podman-play-kube.1.md')
-rw-r--r--docs/source/markdown/podman-play-kube.1.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-play-kube.1.md b/docs/source/markdown/podman-play-kube.1.md
index 47e438bd6..66341d875 100644
--- a/docs/source/markdown/podman-play-kube.1.md
+++ b/docs/source/markdown/podman-play-kube.1.md
@@ -22,7 +22,7 @@ Currently, the supported Kubernetes kinds are:
Only two volume types are supported by play kube, the *hostPath* and *persistentVolumeClaim* volume types. For the *hostPath* volume type, only the *default (empty)*, *DirectoryOrCreate*, *Directory*, *FileOrCreate*, *File*, *Socket*, *CharDevice* and *BlockDevice* subtypes are supported. Podman interprets the value of *hostPath* *path* as a file path when it contains at least one forward slash, otherwise Podman treats the value as the name of a named volume. When using a *persistentVolumeClaim*, the value for *claimName* is the name for the Podman named volume.
-Note: When playing a kube YAML with init containers, the init container will be created with init type value `always`.
+Note: When playing a kube YAML with init containers, the init container will be created with init type value `once`. To change the default type, use the `io.podman.annotations.init.container.type` annotation to set the type to `always`.
Note: *hostPath* volume types created by play kube will be given an SELinux shared label (z), bind mounts are not relabeled (use `chcon -t container_file_t -R <directory>`).