Allow isolated paths as hostPath volume @ k8s/ocp/container groups

This commit is contained in:
Marcelo Moreira de Mello
2022-01-24 15:44:43 -05:00
parent eb52095670
commit 5e8107621e
7 changed files with 75 additions and 1 deletions

View File

@@ -88,7 +88,8 @@ JOB_FOLDER_PREFIX = 'awx_%s_'
# :z option tells Podman that two containers share the volume content with r/w
# :O option tells Podman to mount the directory from the host as a temporary storage using the overlay file system.
# :ro or :rw option to mount a volume in read-only or read-write mode, respectively. By default, the volumes are mounted read-write.
# see podman-run manpage for further details
# /HOST-DIR:/CONTAINER-DIR:OPTIONS
CONTAINER_VOLUMES_MOUNT_TYPES = ['z', 'O']
CONTAINER_VOLUMES_MOUNT_TYPES = ['z', 'O', 'ro', 'rw']
MAX_ISOLATED_PATH_COLON_DELIMITER = 2