diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6da76b52..84fa3621 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,24 @@ Ansible Podman modules and plugins Release Notes .. contents:: Topics +v1.13.0 +======= + +Release Summary +--------------- + +Quadlet support for Podman + +Major Changes +------------- + +- Add quadlet support for Podman modules + +Bugfixes +-------- + +- Fix pod info for non-existant pods + v1.12.1 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 5ac60b97..bb58cacf 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -282,6 +282,14 @@ releases: - podman_pod_info - handle return being list in Podman 5 (#713) release_summary: Support for Podman v5 and bugfixes release_date: '2024-04-08' + 1.13.0: + changes: + bugfixes: + - Fix pod info for non-existant pods + major_changes: + - Add quadlet support for Podman modules + release_summary: Quadlet support for Podman + release_date: '2024-04-22' 1.2.0: changes: minor_changes: diff --git a/docs/buildah_connection.html b/docs/buildah_connection.html index 635ba7bc..28b73f8b 100644 --- a/docs/buildah_connection.html +++ b/docs/buildah_connection.html @@ -37,7 +37,7 @@

containers.podman.buildah connection – Interact with an existing buildah container

Note

-

This connection plugin is part of the containers.podman collection (version 1.12.1).

+

This connection plugin is part of the containers.podman collection (version 1.13.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install containers.podman.

diff --git a/docs/index.html b/docs/index.html index f217dfc2..8880530d 100644 --- a/docs/index.html +++ b/docs/index.html @@ -34,7 +34,7 @@

Containers.Podman

-

Collection version 1.12.1

+

Collection version 1.13.0

diff --git a/docs/podman_containers_module.html b/docs/podman_containers_module.html index 4514e64a..adc0dca8 100644 --- a/docs/podman_containers_module.html +++ b/docs/podman_containers_module.html @@ -37,7 +37,7 @@

containers.podman.podman_containers module – Manage podman containers in a batch

Note

-

This module is part of the containers.podman collection (version 1.12.1).

+

This module is part of the containers.podman collection (version 1.13.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_export_module.html b/docs/podman_export_module.html index dc89c2a7..b5e525aa 100644 --- a/docs/podman_export_module.html +++ b/docs/podman_export_module.html @@ -37,7 +37,7 @@

containers.podman.podman_export module – Export a podman container

Note

-

This module is part of the containers.podman collection (version 1.12.1).

+

This module is part of the containers.podman collection (version 1.13.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_generate_systemd_module.html b/docs/podman_generate_systemd_module.html index a89cae5e..daec06e3 100644 --- a/docs/podman_generate_systemd_module.html +++ b/docs/podman_generate_systemd_module.html @@ -37,7 +37,7 @@

containers.podman.podman_generate_systemd module – Generate systemd unit from a pod or a container

Note

-

This module is part of the containers.podman collection (version 1.12.1).

+

This module is part of the containers.podman collection (version 1.13.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_image_info_module.html b/docs/podman_image_info_module.html index 97d97b2f..b6427720 100644 --- a/docs/podman_image_info_module.html +++ b/docs/podman_image_info_module.html @@ -37,7 +37,7 @@

containers.podman.podman_image_info module – Gather info about images using podman

Note

-

This module is part of the containers.podman collection (version 1.12.1).

+

This module is part of the containers.podman collection (version 1.13.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install containers.podman.

diff --git a/docs/podman_image_module.html b/docs/podman_image_module.html index ecd2b511..941b06df 100644 --- a/docs/podman_image_module.html +++ b/docs/podman_image_module.html @@ -37,7 +37,7 @@

containers.podman.podman_image module – Pull images for use by podman

Note

-

This module is part of the containers.podman collection (version 1.12.1).

+

This module is part of the containers.podman collection (version 1.13.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install containers.podman.

@@ -344,6 +344,27 @@

Parameters +

Path to the directory to write quadlet file in. By default, it will be set as /etc/containers/systemd/ for root user, ~/.config/containers/systemd/ for non-root users.

+
+ +
+

quadlet_filename

+

string

+
+

Name of quadlet file to write. By default it takes image name without prefixes and tags.

+
+ +
+

quadlet_options

+

list / elements=string

+
+

Options for the quadlet file. Provide missing in usual network args options as a list of lines to add.

+
+ +

state

string

@@ -353,10 +374,11 @@

Parameters

"present" ← (default)

  • "absent"

  • "build"

  • +
  • "quadlet"

  • -
    +

    tag

    string

    @@ -364,14 +386,14 @@

    ParametersDefault: "latest"

    -
    +

    username

    string

    username to use when authenticating to remote registries.

    - diff --git a/docs/podman_import_module.html b/docs/podman_import_module.html index 76c7e2a8..b7140a6b 100644 --- a/docs/podman_import_module.html +++ b/docs/podman_import_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_import module – Import Podman container from a tar file.

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_load_module.html b/docs/podman_load_module.html index 1fdfaa2e..256597ef 100644 --- a/docs/podman_load_module.html +++ b/docs/podman_load_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_load module – Load image from a tar file.

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_login_info_module.html b/docs/podman_login_info_module.html index e28f5598..9b18049c 100644 --- a/docs/podman_login_info_module.html +++ b/docs/podman_login_info_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_login_info module – Return the logged-in user if any for a given registry

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_login_module.html b/docs/podman_login_module.html index fb39de52..61adafae 100644 --- a/docs/podman_login_module.html +++ b/docs/podman_login_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_login module – Login to a container registry using podman

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_logout_module.html b/docs/podman_logout_module.html index a62353b1..9d0295c5 100644 --- a/docs/podman_logout_module.html +++ b/docs/podman_logout_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_logout module – Log out of a container registry using podman

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_network_info_module.html b/docs/podman_network_info_module.html index 17f35e2d..cb8f9832 100644 --- a/docs/podman_network_info_module.html +++ b/docs/podman_network_info_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_network_info module – Gather info about podman networks

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_network_module.html b/docs/podman_network_module.html index 02bdc166..daaf3bc2 100644 --- a/docs/podman_network_module.html +++ b/docs/podman_network_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_network module – Manage podman networks

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. @@ -242,6 +242,27 @@

    Parameters +

    Path to the directory to write quadlet file in. By default, it will be set as /etc/containers/systemd/ for root user, ~/.config/containers/systemd/ for non-root users.

    +
    + +
    +

    quadlet_filename

    +

    string

    +
    +

    Name of quadlet file to write. By default it takes name value.

    +
    + +
    +

    quadlet_options

    +

    list / elements=string

    +
    +

    Options for the quadlet file. Provide missing in usual network args options as a list of lines to add.

    +
    + +

    recreate

    boolean

    @@ -253,7 +274,7 @@

    Parameters

    - -
    diff --git a/docs/podman_play_module.html b/docs/podman_play_module.html index b40a147d..30a3654c 100644 --- a/docs/podman_play_module.html +++ b/docs/podman_play_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_play module – Play kubernetes YAML file using podman

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. @@ -205,7 +205,7 @@

    Parameters

    tag

    string

    -

    specify a custom log tag for the container. This option is currently supported only by the journald log driver in Podman.

    +

    Specify a custom log tag for the container. This option is currently supported only by the journald log driver in Podman.

    @@ -223,6 +223,27 @@

    Parameters +

    Path to the directory to write quadlet file in. By default, it will be set as /etc/containers/systemd/ for root user, ~/.config/containers/systemd/ for non-root users.

    +
    + +
    +

    quadlet_filename

    +

    string

    +
    +

    Name of quadlet file to write. Must be specified if state is quadlet.

    +
    + +
    +

    quadlet_options

    +

    list / elements=string

    +
    +

    Options for the quadlet file. Provide missing in usual network args options as a list of lines to add.

    +
    + +

    quiet

    boolean

    @@ -234,7 +255,7 @@

    Parameters

    -
    +

    recreate

    boolean

    @@ -246,14 +267,14 @@

    Parameters

    -
    +

    Directory path for seccomp profiles (default is “/var/lib/kubelet/seccomp”). This option is not available with the remote Podman client

    -
    +

    state

    string / required

    @@ -263,10 +284,11 @@

    Parameters

    "created"

  • "started"

  • "absent"

  • +
  • "quadlet"

  • -
    +

    tls_verify

    boolean

    @@ -278,14 +300,14 @@

    Parameters

    -
    diff --git a/docs/podman_pod_info_module.html b/docs/podman_pod_info_module.html index e3c56832..d93a4370 100644 --- a/docs/podman_pod_info_module.html +++ b/docs/podman_pod_info_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_pod_info module – Gather info about podman pods

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_pod_module.html b/docs/podman_pod_module.html index da5a86f4..6cd068f3 100644 --- a/docs/podman_pod_module.html +++ b/docs/podman_pod_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_pod module – Manage Podman pods

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. @@ -486,6 +486,27 @@

    Parameters +

    Path to the directory to write quadlet file in. By default, it will be set as /etc/containers/systemd/ for root user, ~/.config/containers/systemd/ for non-root users.

    +
    + +
    +

    quadlet_filename

    +

    string

    +
    +

    Name of quadlet file to write. By default it takes name value.

    +
    + +
    +

    quadlet_options

    +

    list / elements=string

    +
    +

    Options for the quadlet file. Provide missing in usual container args options as a list of lines to add.

    +
    + +

    recreate

    boolean

    @@ -497,14 +518,14 @@

    Parameters

    -
    +

    share

    string

    A comma delimited list of kernel namespaces to share. If none or “” is specified, no namespaces will be shared. The namespaces to choose from are ipc, net, pid, user, uts.

    -
    +

    state

    string

    @@ -519,38 +540,39 @@

    Parameters

    "stopped"

  • "paused"

  • "unpaused"

  • +
  • "quadlet"

  • -
    +

    Name for GID map from the /etc/subgid file. Using this flag will run the container with user namespace enabled. This flag conflicts with `userns` and `gidmap`.

    -
    +

    subuidname

    string

    Name for UID map from the /etc/subuid file. Using this flag will run the container with user namespace enabled. This flag conflicts with `userns` and `uidmap`.

    -
    +

    uidmap

    list / elements=string

    Run the container in a new user namespace using the supplied mapping. This option conflicts with the `userns` and `subuidname` options. This option provides a way to map host UIDs to container UIDs. It can be passed several times to map different ranges.

    -
    +

    userns

    string

    Set the user namespace mode for all the containers in a pod. It defaults to the PODMAN_USERNS environment variable. An empty value (“”) means user namespaces are disabled.

    -
    diff --git a/docs/podman_prune_module.html b/docs/podman_prune_module.html index 22b4711f..5340e199 100644 --- a/docs/podman_prune_module.html +++ b/docs/podman_prune_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_prune module – Allows to prune various podman objects

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_runlabel_module.html b/docs/podman_runlabel_module.html index 65e100f2..9fa123e9 100644 --- a/docs/podman_runlabel_module.html +++ b/docs/podman_runlabel_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_runlabel module – Run given label from given image

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_save_module.html b/docs/podman_save_module.html index 00c20812..ea7fe01b 100644 --- a/docs/podman_save_module.html +++ b/docs/podman_save_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_save module – Saves podman image to tar file

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_secret_info_module.html b/docs/podman_secret_info_module.html index 3ac98b31..7c8f69c5 100644 --- a/docs/podman_secret_info_module.html +++ b/docs/podman_secret_info_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_secret_info module – Gather info about podman secrets

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_secret_module.html b/docs/podman_secret_module.html index 26bc3f69..11b33f02 100644 --- a/docs/podman_secret_module.html +++ b/docs/podman_secret_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_secret module – Manage podman secrets

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_tag_module.html b/docs/podman_tag_module.html index a2d6e1c9..17687a89 100644 --- a/docs/podman_tag_module.html +++ b/docs/podman_tag_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_tag module – Add an additional name to a local image

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_unshare_become.html b/docs/podman_unshare_become.html index bc28c2b7..ae5b9003 100644 --- a/docs/podman_unshare_become.html +++ b/docs/podman_unshare_become.html @@ -37,7 +37,7 @@

    containers.podman.podman_unshare become – Run tasks using podman unshare

    Note

    -

    This become plugin is part of the containers.podman collection (version 1.12.1).

    +

    This become plugin is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman.

    diff --git a/docs/podman_volume_info_module.html b/docs/podman_volume_info_module.html index b7f7886e..35af76fc 100644 --- a/docs/podman_volume_info_module.html +++ b/docs/podman_volume_info_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_volume_info module – Gather info about podman volumes

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. diff --git a/docs/podman_volume_module.html b/docs/podman_volume_module.html index 28ac0d19..11f57bf9 100644 --- a/docs/podman_volume_module.html +++ b/docs/podman_volume_module.html @@ -37,7 +37,7 @@

    containers.podman.podman_volume module – Manage Podman volumes

    Note

    -

    This module is part of the containers.podman collection (version 1.12.1).

    +

    This module is part of the containers.podman collection (version 1.13.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install containers.podman. @@ -126,6 +126,27 @@

    Parameters +

    Path to the directory to write quadlet file in. By default, it will be set as /etc/containers/systemd/ for root user, ~/.config/containers/systemd/ for non-root users.

    +
    + +
    +

    quadlet_filename

    +

    string

    +
    +

    Name of quadlet file to write. By default it takes name value.

    +
    + +
    +

    quadlet_options

    +

    list / elements=string

    +
    +

    Options for the quadlet file. Provide missing in usual network args options as a list of lines to add.

    +
    + +

    recreate

    boolean

    @@ -137,7 +158,7 @@

    Parameters

    - @@ -155,7 +177,8 @@

    Parameters

    Examples

    diff --git a/docs/searchindex.js b/docs/searchindex.js index c7d6dea5..5048b8eb 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["buildah_connection", "environment_variables", "index", "podman_connection", "podman_container_exec_module", "podman_container_info_module", "podman_container_module", "podman_containers_module", "podman_copy_into_module", "podman_export_module", "podman_generate_systemd_module", "podman_image_info_module", "podman_image_module", "podman_import_module", "podman_load_module", "podman_login_info_module", "podman_login_module", "podman_logout_module", "podman_network_info_module", "podman_network_module", "podman_play_module", "podman_pod_info_module", "podman_pod_module", "podman_prune_module", "podman_runlabel_module", "podman_save_module", "podman_secret_info_module", "podman_secret_module", "podman_tag_module", "podman_unshare_become", "podman_volume_info_module", "podman_volume_module"], "filenames": ["buildah_connection.rst", "environment_variables.rst", "index.rst", "podman_connection.rst", "podman_container_exec_module.rst", "podman_container_info_module.rst", "podman_container_module.rst", "podman_containers_module.rst", "podman_copy_into_module.rst", "podman_export_module.rst", "podman_generate_systemd_module.rst", "podman_image_info_module.rst", "podman_image_module.rst", "podman_import_module.rst", "podman_load_module.rst", "podman_login_info_module.rst", "podman_login_module.rst", "podman_logout_module.rst", "podman_network_info_module.rst", "podman_network_module.rst", "podman_play_module.rst", "podman_pod_info_module.rst", "podman_pod_module.rst", "podman_prune_module.rst", "podman_runlabel_module.rst", "podman_save_module.rst", "podman_secret_info_module.rst", "podman_secret_module.rst", "podman_tag_module.rst", "podman_unshare_become.rst", "podman_volume_info_module.rst", "podman_volume_module.rst"], "titles": ["containers.podman.buildah connection \u2013 Interact with an existing buildah container", "Index of all Collection Environment Variables", "Containers.Podman", "containers.podman.podman connection \u2013 Interact with an existing podman container", "containers.podman.podman_container_exec module \u2013 Executes a command in a running container.", "containers.podman.podman_container_info module \u2013 Gather facts about containers using podman", "containers.podman.podman_container module \u2013 Manage podman containers", "containers.podman.podman_containers module \u2013 Manage podman containers in a batch", "containers.podman.podman_copy_into module \u2013 Copy file to a container", "containers.podman.podman_export module \u2013 Export a podman container", "containers.podman.podman_generate_systemd module \u2013 Generate systemd unit from a pod or a container", "containers.podman.podman_image_info module \u2013 Gather info about images using podman", "containers.podman.podman_image module \u2013 Pull images for use by podman", "containers.podman.podman_import module \u2013 Import Podman container from a tar file.", "containers.podman.podman_load module \u2013 Load image from a tar file.", "containers.podman.podman_login_info module \u2013 Return the logged-in user if any for a given registry", "containers.podman.podman_login module \u2013 Login to a container registry using podman", "containers.podman.podman_logout module \u2013 Log out of a container registry using podman", "containers.podman.podman_network_info module \u2013 Gather info about podman networks", "containers.podman.podman_network module \u2013 Manage podman networks", "containers.podman.podman_play module \u2013 Play kubernetes YAML file using podman", "containers.podman.podman_pod_info module \u2013 Gather info about podman pods", "containers.podman.podman_pod module \u2013 Manage Podman pods", "containers.podman.podman_prune module \u2013 Allows to prune various podman objects", "containers.podman.podman_runlabel module \u2013 Run given label from given image", "containers.podman.podman_save module \u2013 Saves podman image to tar file", "containers.podman.podman_secret_info module \u2013 Gather info about podman secrets", "containers.podman.podman_secret module \u2013 Manage podman secrets", "containers.podman.podman_tag module \u2013 Add an additional name to a local image", "containers.podman.podman_unshare become \u2013 Run tasks using podman unshare", "containers.podman.podman_volume_info module \u2013 Gather info about podman volumes", "containers.podman.podman_volume module \u2013 Manage Podman volumes"], "terms": {"thi": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "plugin": [0, 1, 3, 18, 19, 29], "i": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "part": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "version": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "1": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "12": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "It": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "includ": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "ansibl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "core": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "To": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "check": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "whether": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "instal": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "run": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 30, 31], "galaxi": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "list": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "us": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 13, 14, 15, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31], "playbook": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "specifi": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "command": [0, 1, 2, 3, 6, 7, 10, 15, 16, 17, 18, 19, 21, 22, 26, 27, 29, 30], "put": [0, 3], "fetch": [0, 3], "file": [0, 2, 3, 5, 6, 9, 10, 12, 15, 16, 17, 22, 26, 27, 29], "tool": [0, 3, 17], "comment": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "remote_addr": [0, 3], "string": [0, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "The": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "id": [0, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 21, 22, 23, 26], "you": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "want": [0, 3, 6, 10, 22], "access": [0, 3, 6, 19], "default": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "inventory_hostnam": [0, 3], "configur": [0, 1, 3, 5, 6, 10, 20, 21, 22, 29], "variabl": [0, 3, 4, 6, 10, 15, 16, 17, 20, 22, 29], "ansible_host": [0, 3], "remote_us": [0, 3], "user": [0, 1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 16, 17, 20, 22, 26, 29, 31], "via": [0, 3, 6, 22], "name": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 31], "which": [0, 3, 6, 7, 10, 19, 20, 22, 27, 29, 31], "execut": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "insid": [0, 3, 4, 6], "ini": [0, 3, 29], "entri": [0, 3, 29], "valu": [0, 1, 3, 20, 27, 29], "environ": [0, 3, 4, 6, 10, 15, 16, 17, 20, 22, 29], "ansible_remote_us": [0, 3], "ansible_us": [0, 3], "toma": [0, 3], "tomecek": [0, 3], "tomastomecek": [0, 3], "each": [0, 3, 6, 20, 29], "type": [0, 3, 5, 6, 8, 11, 12, 13, 14, 18, 19, 22, 25, 29, 31], "have": [0, 3, 6, 19, 29], "low": [0, 3, 29], "high": [0, 3, 29], "prioriti": [0, 3, 29], "order": [0, 3, 5, 6, 10, 11, 22, 29], "For": [0, 3, 6, 19, 23, 29, 31], "exampl": [0, 3], "lower": [0, 3, 29], "overrid": [0, 3, 6, 10, 15, 16, 17, 20, 22, 27, 29], "higher": [0, 3, 29], "up": [0, 3, 6, 29], "issu": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "tracker": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "repositori": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "sourc": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "follow": [1, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 18, 19, 21, 22, 23, 26, 30, 31], "document": [1, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 18, 19, 21, 22, 23, 26, 29, 30, 31], "declar": [1, 6, 10, 22], "ar": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31], "ansible_configuration_set": 1, "ansible_become_pass": [1, 29], "password": [1, 12, 16, 20, 29], "pass": [1, 3, 4, 6, 12, 19, 20, 22, 29], "sudo": [1, 29], "contain": 1, "podman": 1, "podman_unshar": [1, 2], "becom": [1, 19], "ansible_podman_execut": [1, 3], "connect": [1, 6, 16, 19, 20, 22], "ansible_podman_extra_arg": [1, 3], "extra": [1, 3, 12], "argument": [1, 3, 6, 12], "line": [1, 3, 6, 22], "ansible_sudo_ex": [1, 29], "ansible_sudo_pass": [1, 29], "ansible_sudo_us": [1, 29], "task": [1, 2, 6], "root": [1, 5, 6, 13, 29], "valid": [1, 6, 12, 29], "here": [1, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 18, 19, 21, 22, 23, 26, 29, 30, 31], "collect": 2, "author": 2, "sagi": [2, 5, 6, 7, 8, 9, 13, 14, 18, 19, 20, 21, 22, 25, 26, 30, 31], "shnaidman": [2, 5, 6, 7, 8, 9, 13, 14, 18, 19, 20, 21, 22, 25, 26, 30, 31], "sshnaidm": [2, 5, 6, 7, 8, 9, 13, 14, 18, 19, 20, 21, 22, 25, 26, 30, 31], "redhat": [2, 4], "com": [2, 11, 12, 14, 31], "team": 2, "support": [2, 6, 10, 19, 20, 22, 25, 31], "2": [2, 5, 6, 11, 12, 14, 22], "8": [2, 5, 6], "newer": 2, "These": 2, "podman_contain": [2, 10, 27, 29], "manag": [2, 5], "podman_container_exec": 2, "podman_container_info": 2, "gather": [2, 29], "fact": [2, 6, 18, 19, 21, 26, 30], "about": 2, "batch": 2, "podman_copy_into": [], "copi": [6, 10], "podman_export": 2, "export": [2, 6, 10, 15, 16, 17, 20], "podman_generate_systemd": 2, "gener": [2, 6, 14, 22], "systemd": [2, 5, 6, 22], "unit": [2, 6, 22], "from": [2, 5, 6, 8, 11, 12, 16, 17, 18, 19, 20, 21, 22, 26, 30], "pod": [2, 5, 6, 20, 23, 31], "podman_imag": 2, "pull": [2, 6, 20], "imag": [2, 5, 6, 7, 8, 10, 13, 20, 22, 23, 27, 29], "podman_image_info": 2, "info": [2, 6, 8, 12, 13, 14, 20], "podman_import": 2, "import": [2, 8], "tar": [2, 9], "podman_load": 2, "load": [2, 6, 8, 12, 13], "podman_login": 2, "login": [2, 15, 17, 20, 29], "registri": [2, 6, 12, 20], "podman_login_info": 2, "return": [2, 7], "log": [2, 5, 6, 20], "ani": [2, 6, 10, 12, 17, 23], "given": [2, 5, 6, 10, 11, 22], "podman_logout": 2, "out": 2, "podman_network": 2, "network": [2, 6, 20, 22, 23], "podman_network_info": 2, "podman_plai": 2, "plai": 2, "kubernet": [2, 5, 6], "yaml": 2, "podman_pod": 2, "podman_pod_info": 2, "podman_prun": 2, "allow": [2, 6, 22, 25, 29], "prune": 2, "variou": 2, "object": 2, "podman_runlabel": 2, "label": [2, 5, 6, 8, 11, 12, 13, 14, 21, 22, 26, 27, 30, 31], "podman_sav": 2, "save": [2, 9, 13, 14], "podman_secret": 2, "secret": [2, 6], "podman_secret_info": 2, "podman_tag": 2, "add": [2, 6, 8, 10, 12, 13, 19, 20, 22, 31], "an": [2, 6, 10, 12, 14, 16, 20, 22, 25, 27, 29], "addit": [2, 6, 7, 19, 22, 25, 31], "local": [2, 5, 6, 9, 11, 12, 14, 18, 19, 20, 25, 26, 30, 31], "podman_volum": 2, "volum": [2, 5, 6, 8, 9, 12, 13, 22, 23, 29], "podman_volume_info": 2, "unshar": 2, "buildah": 2, "interact": [2, 6], "exist": [2, 6, 9, 10, 12, 17, 19, 20, 22, 25, 27, 31], "podman_execut": 3, "podman_extra_arg": 3, "ansible_podman_host": 3, "uid": [3, 4, 6, 11, 22, 29, 31], "If": [3, 4, 5, 6, 10, 11, 12, 16, 17, 19, 20, 22, 27, 29], "must": [3, 6, 10, 19, 22], "set": [3, 4, 6, 8, 10, 12, 13, 15, 16, 17, 19, 20, 22, 27, 29, 31], "ansible_remote_tmp": 3, "path": [3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31], "exit": [3, 4, 6], "writabl": 3, "need": [4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31], "further": [4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31], "abl": [4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31], "see": [4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "detail": [4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31], "below": [4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31], "host": [4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "argv": 4, "element": [4, 5, 6, 7, 8, 10, 11, 12, 13, 18, 19, 20, 21, 22, 23, 25, 26, 28, 30, 31], "rather": [4, 6], "than": [4, 6, 10, 22, 23, 25], "One": 4, "arg": [4, 5, 6, 12], "detach": [4, 6, 27], "boolean": [4, 6, 7, 9, 10, 12, 16, 17, 19, 20, 22, 23, 25, 26, 27, 31], "true": [4, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 31], "background": 4, "exec": 4, "session": 4, "automat": [4, 6], "remov": [4, 6, 10, 12, 17, 19, 27], "when": [4, 6, 10, 12, 16, 20, 22, 23, 25, 27, 29], "complet": [4, 6], "choic": [4, 6, 7, 9, 10, 12, 16, 17, 19, 20, 22, 23, 25, 26, 27, 31], "fals": [4, 5, 6, 7, 9, 10, 11, 12, 14, 16, 17, 19, 20, 22, 23, 25, 26, 27, 29, 31], "env": [4, 5, 6, 10, 11, 12, 14], "dictionari": [4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 19, 20, 22, 23, 27, 31], "where": [4, 6, 12, 22], "privileg": [4, 5, 6, 11], "give": [4, 6], "extend": [4, 6], "tty": [4, 5, 6], "alloc": [4, 6, 19], "pseudo": [4, 6], "usernam": [4, 6, 12, 15, 16, 20], "option": [4, 6, 10, 12, 17, 19, 20, 22, 26, 27, 30, 31], "groupnam": [4, 6], "gid": [4, 6, 22, 31], "both": 4, "group": [4, 6, 7], "mai": [4, 5, 6, 10, 11, 12], "symbol": 4, "numer": 4, "workdir": [4, 6, 8, 11, 12, 13, 14], "work": [4, 6, 8, 10, 11, 12, 13, 14, 22], "directori": [4, 6, 12, 16, 20, 22, 25], "ubi8": 4, "cat": [4, 27], "releas": [4, 6], "etc": [4, 6, 10, 12, 16, 20, 22], "test_contain": 4, "bin": [4, 5, 6, 8, 11, 12, 13, 14], "sh": [4, 6, 8, 11, 12, 13, 14], "c": [4, 8, 12, 13], "echo": [4, 6], "hello": [4, 20], "bye": 4, "world": [4, 20], "goodby": 4, "detach_contain": 4, "common": [4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 18, 19, 21, 22, 23, 26, 30, 31], "field": [4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 18, 19, 21, 22, 23, 26, 30, 31], "uniqu": [4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 18, 19, 21, 22, 23, 26, 30, 31], "kei": [4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 26, 27, 30, 31], "descript": [4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 18, 19, 21, 22, 23, 26, 30, 31], "exec_id": 4, "success": [4, 6, 10, 12, 22], "sampl": [4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 18, 19, 21, 22, 23, 26, 30, 31], "f99002e34c1087fd1aa08d5027e455bf7c2d6b74f019069acf6462a96ddf2a47": 4, "rc": 4, "integ": [4, 6, 10, 19, 22], "code": [4, 6], "0": [4, 5, 6, 7, 10, 11, 12, 14, 15, 18, 19, 21, 22, 23, 27, 29, 31], "stderr": [4, 6], "standard": 4, "output": [4, 6, 20, 27, 29], "stdout": [4, 6, 27], "takuya": 4, "nishimura": 4, "nishipi": 4, "machin": [5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 24, 25, 26, 27, 28, 30, 31], "all": [5, 6, 10, 11, 17, 18, 19, 20, 21, 22, 23, 26, 30], "elev": [5, 11], "properli": [5, 11], "specif": [5, 6, 11, 12, 18, 20, 21, 22, 26, 27, 30, 31], "web1": 5, "sever": [5, 11, 22], "redi": [5, 6, 11, 12], "alwai": [5, 6, 8, 10, 11, 12, 13, 14, 15, 18, 19, 21, 22, 26, 30, 31], "apparmorprofil": [5, 6], "singl": [5, 6], "child": 5, "kolla_start": 5, "boundingcap": [5, 6], "cap_chown": [5, 6], "cap_dac_overrid": 5, "cap_fsetid": 5, "cap_fown": 5, "cap_mknod": 5, "cap_net_raw": 5, "cap_setgid": 5, "cap_setuid": 5, "cap_setfcap": 5, "cap_setpcap": 5, "cap_net_bind_servic": 5, "cap_sys_chroot": 5, "cap_kil": 5, "cap_audit_writ": 5, "config": [5, 6, 8, 10, 13, 17, 20, 21, 22], "annot": [5, 6, 8, 11, 12, 13, 14, 20], "io": [5, 6, 10, 11, 12, 14, 15, 16, 17, 22, 24, 27, 28, 29], "cri": [5, 6], "o": [5, 6, 8, 11, 12, 13, 14], "containertyp": [5, 6], "sandbox": [5, 6], "autoremov": 5, "init": [5, 6, 22], "publish": [5, 6, 22], "attachstderr": [5, 6], "attachstdin": [5, 6], "attachstdout": [5, 6], "cmd": [5, 6, 11, 12, 13, 14], "domainnam": [5, 6], "entrypoint": [5, 6, 11, 12, 14], "dumb": 5, "usr": [5, 6, 11, 12, 14], "sbin": [5, 6, 11, 12, 14], "term": [5, 6], "xterm": [5, 6], "hostnam": [5, 6, 21, 22], "oci": [5, 6, 8, 12, 13, 14, 25], "kolla_install_metatyp": 5, "rdo": 5, "kolla_base_distro": 5, "cento": 5, "kolla_install_typ": 5, "binari": [5, 6, 23], "kolla_distro_python_vers": 5, "7": [5, 27], "kolla_base_arch": 5, "x86_64": 5, "c5c39e813703": 5, "docker": [5, 6, 10, 11, 12, 14, 15, 17, 20, 24, 25, 27, 28], "tripleomast": 5, "haproxi": 5, "latest": [5, 6, 10, 11, 12, 14, 29], "build": [5, 12, 20], "date": 5, "20190919": 5, "kolla_vers": 5, "org": [5, 31], "schema": 5, "20190801": 5, "licens": 5, "gplv2": 5, "base": [5, 6, 19], "vendor": 5, "onbuild": 5, "null": [5, 6, 8, 13, 22], "openstdin": [5, 6], "stdinonc": [5, 6], "stopsign": [5, 6], "15": [5, 6], "workingdir": [5, 6], "creat": [5, 6, 8, 10, 11, 12, 13, 14, 16, 17, 19, 20, 21, 22, 23, 25, 27, 29], "2019": [5, 6, 12], "10": [5, 6, 7, 11, 12, 14, 18, 19, 22, 23], "01t12": 5, "51": 5, "00": [5, 6, 8, 13, 21, 22, 26, 31], "233106443z": 5, "depend": [5, 6, 10, 22], "driver": [5, 6, 19, 20, 26, 27, 30, 31], "overlai": [5, 6, 8, 11, 12, 13, 14], "effectivecap": [5, 6], "execid": [5, 6], "exitcommand": [5, 6], "var": [5, 6, 11, 12, 14, 20, 29], "lib": [5, 6, 11, 12, 14, 20], "storag": [5, 11, 12, 14, 20, 26, 31], "runroot": 5, "level": [5, 6, 20], "error": [5, 6, 20], "cgroup": [5, 6, 22], "tmpdir": 5, "libpod": 5, "runtim": [5, 6], "runc": 5, "event": 5, "backend": [5, 18, 19], "journald": [5, 6, 20], "cleanup": 5, "c9e813703f9b80a6ea2ad665aa9946435934e478a0c5322da835f3883872f": 5, "graphdriv": [5, 6, 8, 11, 12, 13, 14], "hostconfig": [5, 6], "bind": [5, 6, 22], "blkiodevicereadbp": 5, "blkiodevicereadiop": 5, "blkiodevicewritebp": 5, "blkiodevicewriteiop": 5, "blkioweight": 5, "blkioweightdevic": 5, "capadd": 5, "capdrop": 5, "cgrouppar": [5, 21, 22], "consoles": 5, "containeridfil": 5, "cpucount": 5, "cpuperc": 5, "cpuperiod": 5, "cpuquota": 5, "cpurealtimeperiod": 5, "cpurealtimeruntim": 5, "cpushar": 5, "cpusetcpu": 5, "cpusetmem": 5, "devic": [5, 6, 19, 22, 31], "diskquota": 5, "dn": [5, 6, 19, 22], "dnsoption": 5, "dnssearch": 5, "extrahost": 5, "groupadd": 5, "iomaximumbandwidth": 5, "iomaximumiop": 5, "ipcmod": 5, "isol": [5, 19], "kernelmemori": 5, "logconfig": 5, "k8": [5, 6, 22], "memori": [5, 6, 22], "memoryreserv": 5, "memoryswap": 5, "memoryswappi": 5, "nanocpu": 5, "networkmod": 5, "oomkilldis": 5, "oomscoreadj": 5, "pidmod": 5, "pidslimit": 5, "portbind": 5, "publishallport": 5, "readonlyrootf": 5, "restartpolici": 5, "maximumretrycount": 5, "securityopt": 5, "shmsize": 5, "65536000": 5, "tmpf": [5, 6, 31], "utsmod": 5, "ulimit": [5, 6], "hard": 5, "1048576": 5, "rlimit_nofil": 5, "soft": [5, 6], "rlimit_nproc": 5, "usernsmod": 5, "volumedriv": 5, "volumesfrom": 5, "hostnamepath": [5, 6], "hostspath": [5, 6], "c5c39f9b80a6ea2ad665aa9946435934e478a0c5322da835f3883872f": 5, "0e267acda67d0ebd643e900d820a91b961d859743039e620191ca1": 5, "imagenam": [5, 6], "isinfra": [5, 6], "mountlabel": [5, 6], "system_u": [5, 6], "object_r": [5, 6], "svirt_sandbox_file_t": 5, "s0": [5, 6], "c78": 5, "c866": 5, "mount": [5, 6, 12, 22, 29], "namespac": [5, 6, 20, 22, 29], "networkset": [5, 6], "bridg": [5, 6, 18, 19, 22], "endpointid": 5, "gatewai": [5, 18, 19], "globalipv6address": 5, "globalipv6prefixlen": 5, "hairpinmod": 5, "ipaddress": 5, "ipprefixlen": 5, "ipv6gatewai": 5, "linklocalipv6address": 5, "linklocalipv6prefixlen": 5, "macaddress": 5, "port": [5, 6, 22], "sandboxid": 5, "sandboxkei": 5, "secondaryipaddress": 5, "secondaryipv6address": 5, "ociruntim": 5, "processlabel": [5, 6], "system_r": [5, 6], "svirt_lxc_net_t": 5, "c785": 5, "resolvconfpath": [5, 6], "restartcount": [5, 6], "rootf": [5, 6, 8, 11, 12, 13, 14], "state": [5, 6, 10, 12, 19, 20, 21, 22, 27, 29, 31], "dead": [5, 6], "exitcod": [5, 6], "finishedat": [5, 6], "0001": 5, "01": [5, 26], "01t00": 5, "00z": 5, "healthcheck": [5, 6], "failingstreak": [5, 6], "statu": [5, 6, 21, 22], "oomkil": [5, 6], "ocivers": [5, 6], "dev": [5, 6, 22, 31], "paus": [5, 6, 22], "pid": [5, 6, 22], "restart": [5, 6, 10, 22], "startedat": [5, 6], "emilien": 5, "macchi": 5, "emilienm": 5, "new": [6, 7, 10, 12, 15, 18, 19, 20, 21, 22, 23, 27, 29, 31], "start": [6, 10, 11, 14, 20, 22], "stop": [6, 10, 19, 22], "format": [6, 12, 19, 22, 25], "multipl": [6, 12, 20, 22], "time": [6, 10, 20, 22], "attach": 6, "stdin": 6, "authfil": [6, 12, 15, 16, 17, 20], "authent": [6, 12, 15, 16, 17, 20], "xdg_runtime_dir": [6, 15, 16, 17, 20], "auth": [6, 12, 15, 16, 17, 20], "json": [6, 8, 12, 13, 15, 16, 17, 20], "Not": [6, 15], "avail": [6, 15, 20], "remot": [6, 12, 15, 20, 29], "can": [6, 7, 10, 15, 16, 17, 19, 20, 22, 23, 29, 31], "also": [6, 12, 15, 16, 17, 20, 23], "registry_auth_fil": [6, 15, 16, 17, 20], "blkio_weight": [6, 22], "block": [6, 19, 22], "weight": [6, 22], "rel": [6, 22], "accept": 6, "between": [6, 10, 19, 22], "1000": [6, 22, 29], "blkio_weight_devic": [6, 22], "device_nam": 6, "cap_add": 6, "alias": [6, 12, 14, 20, 22, 25], "capabl": [6, 18, 19], "cap_drop": 6, "drop": 6, "cgroup_par": [6, 22], "under": [6, 16, 17, 22], "absolut": [6, 22], "consid": [6, 22, 23], "process": [6, 22], "thei": [6, 17, 20, 22, 23], "do": [6, 10, 22], "alreadi": [6, 10, 12, 20, 22, 27], "cgroupn": 6, "determin": 6, "enabl": [6, 10, 19, 20, 22, 27], "disabl": [6, 19, 20, 22], "being": 6, "forc": [6, 9, 10, 12, 19, 22, 25, 27], "thu": 6, "conflict": [6, 22], "parent": [6, 8, 11, 12, 13, 14, 19], "cidfil": 6, "write": [6, 10, 22, 25], "cmd_arg": 6, "itself": 6, "debug": [6, 7, 19, 20, 22, 27, 29, 31], "syslog": 6, "NOT": [6, 27], "pleas": 6, "conmon_pidfil": 6, "conmon": [6, 22], "separ": [6, 10, 12, 22], "so": 6, "necessari": [6, 12, 22], "cpu_period": 6, "limit": [6, 22], "cpu": [6, 12, 22], "cf": 6, "fair": 6, "schedul": 6, "period": 6, "cpu_quota": 6, "quota": 6, "cpu_rt_period": 6, "real": 6, "microsecond": 6, "": [6, 10, 12, 22, 29], "usag": 6, "flag": [6, 16, 17, 22], "tell": 6, "kernel": [6, 22], "restrict": [6, 19], "cpu_rt_runtim": 6, "amount": 6, "consum": 6, "cpu_shar": [6, 22], "share": [6, 22, 26, 30, 31], "number": [6, 22], "mean": [6, 20, 22], "cpuset_cpu": [6, 22], "3": [6, 7, 10, 12, 22, 27], "cpuset_mem": [6, 22], "node": [6, 22], "mem": 6, "onli": [6, 10, 12, 17, 19, 20, 22, 23, 25], "effect": [6, 22], "numa": [6, 22], "system": [6, 10, 22, 23], "inform": [6, 7, 10, 19, 22, 23, 31], "help": [6, 7, 19, 22, 31], "investig": [6, 7, 19, 22, 31], "delete_depend": 6, "select": [6, 23, 24], "recurs": 6, "appli": 6, "delet": [6, 12, 17, 20, 23], "delete_tim": 6, "second": [6, 10, 22], "wait": 6, "befor": [6, 10, 22], "forcibli": 6, "infinit": 6, "delete_volum": 6, "anonym": 6, "associ": [6, 22], "doe": [6, 8, 9, 10, 12, 13, 14, 22, 24, 25, 28, 31], "mode": [6, 10, 19, 20, 22, 27], "detach_kei": 6, "sequenc": 6, "charact": 6, "ctrl": 6, "permiss": [6, 22], "e": [6, 10, 17, 20, 22, 31], "g": [6, 10, 12, 17, 20, 22, 31], "sdc": 6, "xvdc": 6, "rwm": 6, "device_read_bp": [6, 22], "read": [6, 20, 22], "rate": [6, 22], "byte": [6, 22], "per": [6, 10, 22], "bp": [6, 22], "sda": [6, 22], "1mb": [6, 22], "device_read_iop": 6, "iop": 6, "device_write_bp": [6, 22], "device_write_iop": 6, "dns_server": 6, "custom": [6, 20, 22], "server": [6, 15, 16, 17, 22], "dns_option": 6, "dns_opt": [6, 22], "dns_search": [6, 22], "dns_search_domain": 6, "search": [6, 16, 17, 22], "domain": [6, 22], "don": 6, "t": [6, 22], "wish": 6, "overwrit": 6, "arbitrari": 6, "launch": 6, "env_fil": 6, "delimit": [6, 22], "doesn": [6, 22], "idempot": [6, 10, 12, 31], "chang": [6, 8, 13, 17, 31], "them": [6, 10, 22], "recreat": [6, 19, 20, 22, 27, 31], "present": [6, 12, 18, 19, 21, 22, 26, 27, 30, 31], "actual": 6, "control": [6, 12], "slurp": 6, "env_host": 6, "current": [6, 19, 20, 23, 27], "etc_host": 6, "add_host": [6, 22], "dict": 6, "ip": [6, 19, 22], "map": [6, 22, 29], "ad": 6, "expos": 6, "exposed_port": 6, "rang": [6, 18, 19, 22], "3300": 6, "3310": 6, "redirect": 6, "force_delet": 6, "force_restart": 6, "generate_systemd": [6, 22], "after": [6, 10, 12, 20, 22], "servic": [6, 10, 22], "container_prefix": [6, 10, 22], "prefix": [6, 10, 22], "instead": [6, 10, 22, 25], "expect": [6, 22], "refer": [6, 10, 22], "more": [6, 10, 12, 22, 23, 25, 28], "no_head": [6, 10, 22], "header": [6, 10, 22], "meta": [6, 10, 22], "data": [6, 7, 8, 10, 11, 12, 13, 14, 22, 23, 26, 27], "timestamp": [6, 10, 22], "pod_prefix": [6, 10, 22], "similar": [6, 10, 22], "stronger": [6, 10, 22], "restart_polici": [6, 10, 22], "polici": [6, 10, 22], "one": [6, 12, 20, 22, 25, 28], "failur": [6, 10, 22], "abnorm": [6, 10, 22], "watchdog": [6, 10, 22], "abort": [6, 10, 22], "restart_sec": [6, 10, 22], "restartsec": [6, 22], "dash": [6, 22], "start_timeout": [6, 10, 22], "timeout": [6, 10, 22], "stop_timeout": [6, 10, 22], "call": [6, 20, 22], "4": [6, 7, 10, 12, 18, 19, 22], "weak": [6, 10, 22], "gidmap": [6, 22], "suppli": [6, 22], "group_add": 6, "alter": 6, "healthcheck_failure_act": 6, "action": 6, "taken": 6, "unhealthi": 6, "none": [6, 22], "kill": [6, 22], "healthcheck_interv": 6, "interv": 6, "result": [6, 12, 22, 31], "timer": 6, "setup": 6, "30": 6, "healthcheck_retri": 6, "retri": 6, "healthcheck_start_period": 6, "initi": 6, "bootstrap": 6, "express": 6, "like": [6, 29], "2m3": 6, "healthcheck_timeout": 6, "maximum": 6, "fail": [6, 17], "1m22": 6, "hooks_dir": 6, "hook": 6, "syntax": 6, "semant": 6, "inject": 6, "5": [6, 25], "http_proxi": 6, "By": [6, 29], "proxi": [6, 12], "https_proxi": 6, "ftp_proxi": 6, "no_proxi": 6, "upper": 6, "case": [6, 17, 19], "those": [6, 19], "tag": [6, 11, 12, 19, 20, 25, 28], "found": [6, 17, 20], "assum": 6, "image_strict": 6, "compar": 6, "take": [6, 10], "account": 6, "full": [6, 10], "image_volum": 6, "how": 6, "handl": 6, "builtin": [6, 10, 29], "ignor": [6, 12, 17], "forward": 6, "signal": 6, "reap": 6, "init_path": 6, "keep": 6, "open": 6, "even": [6, 9, 10, 12, 19, 20, 23, 25, 31], "static": [6, 22], "address": [6, 22], "88": [6, 18, 19], "64": 6, "128": [6, 19], "cni": [6, 18, 19, 20, 22], "join": [6, 19, 20, 22], "were": 6, "anoth": 6, "within": [6, 20], "pool": [6, 11, 12, 14], "16": [6, 12, 18, 19, 22], "ipc": [6, 22], "ipc_mod": 6, "privat": [6, 22], "posix": 6, "sysv": 6, "kernel_memori": 6, "b": [6, 22], "k": [6, 22], "m": [6, 22], "note": [6, 20], "metadata": [6, 22, 31], "label_fil": [6, 22], "log_driv": [6, 20], "log_level": [6, 20], "messag": [6, 8, 13, 20], "abov": [6, 10, 20], "warn": [6, 17, 20], "fatal": [6, 20], "panic": [6, 20], "log_opt": [6, 20], "max_siz": [6, 20], "max": [6, 20], "size": [6, 8, 11, 12, 13, 14, 19, 20], "10mb": [6, 20], "mycontain": [6, 20], "mac_address": [6, 22], "mac": [6, 22], "92": 6, "d0": 6, "c6": 6, "0a": 6, "29": [6, 21], "33": 6, "forget": 6, "ethernet": 6, "10k": 6, "memory_reserv": 6, "100m": 6, "memory_swap": [6, 22], "A": [6, 10, 22, 23], "equal": [6, 22], "plu": [6, 22], "swap": [6, 22], "should": [6, 12, 19, 20], "larger": 6, "doubl": 6, "memory_swappi": 6, "tune": 6, "swappi": 6, "behavior": 6, "100": 6, "filesystem": [6, 9, 13], "destin": [6, 10, 12, 25], "net": [6, 11, 12, 14, 22], "network_mod": 6, "stack": [6, 19], "reus": 6, "defin": [6, 10], "n": 6, "slirp4netn": 6, "rootless": [6, 22], "network_alias": [6, 22], "scope": [6, 10, 22, 30, 31], "alia": [6, 22], "first": [6, 16, 17, 22], "later": 6, "no_host": [6, 22], "oom_kill_dis": 6, "oom": 6, "killer": 6, "oom_score_adj": 6, "prefer": 6, "pid_mod": 6, "pids_limit": 6, "unlimit": 6, "make": 6, "published_port": 6, "hostport": [6, 21], "containerport": [6, 21], "In": 6, "chosen": 6, "randomli": 6, "publish_al": 6, "random": [6, 22], "interfac": [6, 19], "read_onli": 6, "read_only_tmpf": 6, "tmp": [6, 20, 25], "re": [6, 22], "creation": [6, 22], "max_retri": 6, "non": [6, 23], "indefinit": 6, "until": [6, 23], "count": 6, "hit": 6, "regardless": 6, "restart_tim": 6, "rm": [6, 10, 12, 29], "auto_remov": 6, "explod": 6, "sdnotifi": 6, "notify_socket": 6, "notifi": 6, "opt": [6, 11, 12, 14, 19, 29], "security_opt": 6, "secur": 6, "seccomp": [6, 20], "unconfin": 6, "shm_size": 6, "shm": 6, "greater": 6, "kilobyt": 6, "megabyt": 6, "gigabyt": 6, "omit": 6, "entir": 6, "64m": 6, "sig_proxi": 6, "sent": 6, "sigchld": 6, "sigstop": 6, "sigkil": 6, "absent": [6, 12, 19, 20, 22, 27, 31], "match": [6, 20], "assert": 6, "provid": [6, 20, 22], "updat": [6, 19], "cannot": [6, 8, 13, 17], "request": 6, "move": 6, "leav": [6, 20], "stop_sign": 6, "sigterm": 6, "stop_tim": 6, "subgidnam": [6, 22], "subgid": [6, 22], "subuidnam": [6, 22], "subuid": [6, 22], "sysctl": 6, "timezon": 6, "area": 6, "gmt": 6, "well": 6, "zoneinfo": 6, "conf": [6, 16, 17, 20, 22], "rw": 6, "787448k": 6, "1777": 6, "uidmap": [6, 22], "usern": [6, 20, 22], "userns_mod": 6, "podman_usern": [6, 20, 22], "empti": [6, 20, 22], "ut": [6, 22], "dir": [6, 12, 25], "volumes_from": 6, "working_dir": 6, "quai": [6, 11, 12, 14, 15, 16, 17], "bitnami": [6, 11, 12, 14], "wildfli": [6, 11, 12, 14], "mydata": 6, "busybox": 6, "myredi": 6, "appendonli": 6, "ye": 6, "6379": 6, "120": 6, "ainer": 6, "myapplic": 6, "other": [6, 17], "127": [6, 22], "xvda": 6, "8080": [6, 11, 12, 14], "9000": 6, "8081": 6, "9001": 6, "udp": 6, "secret_kei": 6, "ssssh": 6, "boolean_kei": 6, "ubuntu": [6, 11, 14], "14": [6, 11, 14, 27], "04": [6, 12], "sleep": [6, 7, 10], "1d": [6, 7], "balanc": [6, 12], "item": [6, 12], "someus": 6, "anotherappimag": 6, "with_sequ": 6, "ohno": 6, "myservic": 6, "complex": 6, "quot": 6, "certbot": 6, "renew": 6, "deploi": 6, "letsencrypt": 6, "repres": 6, "inspect": [6, 12, 18, 21, 22, 26, 30, 31], "regist": [6, 10, 27, 29], "sinc": [6, 17], "compat": 6, "reason": 6, "directli": 6, "librari": [6, 10], "conmonpidfil": 6, "06": [6, 11, 14, 22, 31], "17t19": 6, "13": [6, 11, 12, 14], "09": [6, 8, 11, 12, 13, 14], "873858307": 6, "03": [6, 8, 12, 13, 21, 22, 31], "logpath": 6, "container_file_t": 6, "c282": 6, "c782": 6, "container_t": 6, "157518963": 6, "4083": 6, "152479729": 6, "staticdir": 6, "three": 7, "onc": [7, 10], "alpin": [7, 27, 29], "web": 7, "nginx": [7, 11, 12, 25], "test": [7, 29, 31], "python": 7, "v": 7, "pair": [8, 12, 13], "commit_messag": [8, 13], "commit": [8, 13], "src": [8, 13], "what": [8, 9, 13, 14, 22, 24, 25, 28, 31], "architectur": [8, 11, 12, 13, 14], "amd64": [8, 11, 12, 13, 14], "tarbal": [8, 9, 12, 13, 25], "2021": [8, 13], "07t04": [8, 13], "45": [8, 11, 13, 14], "38": [8, 12, 13, 31], "749977105": [8, 13], "digest": [8, 11, 12, 13, 14], "sha256": [8, 11, 12, 13, 14], "8730c75be86a718929a658db4663d487e562d66762": [8, 13], "upperdir": [8, 11, 12, 13, 14], "home": [8, 11, 12, 13, 14, 17, 20, 26, 30, 31], "34": [8, 13], "diff": [8, 11, 12, 13, 14], "histori": [8, 12, 13], "created_bi": [8, 12, 13], "nop": [8, 12, 13], "091": [8, 13], "cbc6d73c4d232db6e8441df96af81855f62c74157b5db80a1d5": [8, 13], "manifesttyp": [8, 11, 12, 13, 14], "applic": [8, 11, 12, 13, 14], "vnd": [8, 11, 12, 13, 14], "manifest": [8, 11, 12, 13, 14, 25], "v1": [8, 11, 12, 13, 14, 22], "nameshistori": [8, 13], "linux": [8, 11, 12, 13, 14], "repodigest": [8, 11, 12, 13, 14], "repotag": [8, 11, 12, 13, 14], "layer": [8, 11, 12, 13, 14, 25], "5882449": [8, 13], "virtuals": [8, 11, 12, 13, 14], "dest": [9, 10, 12, 25], "target": [10, 12, 16, 20], "append": 10, "But": 10, "onlin": 10, "overridden": [10, 16, 17], "man": 10, "page": 10, "wide": 10, "instanc": 10, "replac": 10, "use_nam": 10, "influenc": 10, "indic": [10, 22], "its": [10, 29], "your": [10, 29], "systemctl": 10, "daemon": [10, 12], "reload": 10, "my_contain": 10, "postgr": 10, "ensur": 10, "daemon_reload": 10, "integr": 10, "postgres_loc": 10, "store": [10, 14, 17, 28], "postgres_local_systemd_unit": 10, "postgres_us": 10, "my_app": 10, "postgres_password": 10, "podman_command": 10, "my_webapp": 10, "systemd_unit": 10, "content": [10, 27], "servec": 10, "s\u00e9bastien": 10, "gendr": 10, "cyberfox001": 10, "requir": [11, 12], "love": [11, 12, 14], "containerconfig": [11, 12, 14], "nami": [11, 12, 14], "foreground": [11, 14], "app": [11, 12, 14], "java": [11, 12, 14], "image_o": [11, 12, 14], "debian": [11, 12, 14], "9": [11, 12, 14, 29], "nami_vers": [11, 12, 14], "gpg_key_servers_list": [11, 12, 14], "ha": [11, 12, 14], "sk": [11, 12, 14], "keyserv": [11, 12, 14], "hkp": [11, 14], "p80": [11, 14], "80": [11, 14, 22], "pgp": [11, 14], "mit": [11, 14], "edu": [11, 14], "tini_vers": [11, 12, 14], "v0": [11, 12, 14], "tini_gpg_kei": [11, 12, 14], "595e85a6b1b4779ea4daaec70b588dff0527a9b7": [11, 12, 14], "gosu_vers": [11, 12, 14], "gosu_gpg_kei": [11, 12, 14], "b42f6819007f00f88e364fd4036a9c25bf357dd4": [11, 12, 14], "bitnami_image_vers": [11, 12, 14], "r12": [11, 14], "bitnami_app_nam": [11, 12, 14], "wildfly_java_hom": [11, 12, 14], "wildfly_java_opt": [11, 12, 14], "wildfly_management_http_port_numb": [11, 12, 14], "9990": [11, 12, 14], "wildfly_password": [11, 12, 14], "wildfly_public_consol": [11, 12, 14], "wildfly_server_ajp_port_numb": [11, 12, 14], "8009": [11, 12, 14], "wildfly_server_http_port_numb": [11, 12, 14], "wildfly_server_interfac": [11, 12, 14], "wildfly_usernam": [11, 12, 14], "wildfly_wildfly_hom": [11, 12, 14], "wildfly_wildfly_opt": [11, 12, 14], "dwildfli": [11, 12, 14], "deploy": [11, 12, 14], "ondemand": [11, 12, 14], "exposedport": [11, 12, 14], "tcp": [11, 12, 14, 21], "maintain": [11, 12, 14], "2018": [11, 14], "25t04": [11, 14], "07": [11, 14, 21], "934395523z": [11, 14], "5c7d8e2dd66dcf4a152a4032a1d3c5a33458c67e1c1335edd8d18d738892356b": [11, 14], "lowerdir": [11, 12, 14], "a9dbf5616cc16919a8ac0dfc60aff87a72b5be52994c4649fcc91a089a12931f": [11, 14], "67129bd46022122a7d8b7acb490092af6c7ce244ce4fbd7d9e2d2b7f5979e090": [11, 14], "7c51242c4c5db5c74afda76d7fdbeab6965d8b21804bb3fc597dee09c770b0ca": [11, 14], "f97315dc58a9c002ba0cabccb9933d4b0d2113733d204188c88d72f75569b57b": [11, 14], "1dbde2dd497ddde2b467727125b900958a051a72561e58d29abe3d660dcaa9a7": [11, 14], "4aad9d80f30c3f0608f58173558b7554d84dee4dc4479672926eca29f75e6e33": [11, 14], "6751fc9b6868254870c062d75a511543fc8cfda2ce6262f4945f107449219632": [11, 14], "a27034d79081347421dd24d7e9e776c18271cd9a6e51053cb39af4d3d9c400e8": [11, 14], "537cf0045ed9cd7989f7944e7393019c81b16c1799a2198d8348cd182665397f": [11, 14], "27578615c5ae352af4e8449862d61aaf5c11b105a7d5905af55bd01b0c656d6": [11, 14], "566542742840fe3034b3596f7cb9e62a6274c95a69f368f9e713746f8712c0b6": [11, 14], "mergeddir": [11, 12, 14], "72bb96d6c53ad57a0b1e44cab226a6251598accbead40b23fac89c19ad8c25ca": [11, 14], "merg": [11, 12, 14], "bcacbdf7a119c0fa934661ca8af839e625ce6540d9ceb6827cdd389f823d49e0": [11, 14], "distribut": [11, 12, 14], "prettyjw": [11, 12, 14], "75391df2c87e076b0c2f72d20c95c57dc8be7ee684cc07273416cce622b43367": [11, 14], "7dd303f041039bfe8f0833092673ac35f93137d10e0fbc4302021ea65ad57731": [11, 14], "720d9edf0cd2a9bb56b88b80be9070dbfaad359514c70094c65066963fed485d": [11, 14], "6a567ecbf97725501a634fcb486271999aa4591b633b4ae9932a46b40f5aaf47": [11, 14], "59e9a6db8f178f3da868614564faabb2820cdfb69be32e63a4405d6f7772f68c": [11, 14], "310a82ccb092cd650215ab375da8943d235a263af9a029b8ac26a281446c04db": [11, 14], "36cb91cf4513543a8f0953fed785747ea18b675bc2677f3839889cfca0aac79": [11, 14], "569919342": [11, 14], "17": [11, 14], "ce": [11, 14], "sam": [11, 12], "doran": [11, 12], "samdoran": [11, 12], "push": [12, 25], "arch": 12, "auth_fil": 12, "credenti": [12, 17], "build_arg": 12, "buildarg": 12, "cach": [12, 17], "extra_arg": 12, "containerfil": 12, "context": [12, 20], "force_rm": 12, "intermedi": 12, "unsuccess": 12, "built": [12, 22], "stage": 12, "ca_cert_dir": 12, "tl": [12, 16, 20], "certif": [12, 16, 20], "push_arg": 12, "compress": [12, 25], "transport": [12, 25], "url": 12, "v2s1": 12, "v2s2": [12, 25], "remove_signatur": 12, "discard": 12, "pre": 12, "signatur": 12, "sign_bi": 12, "sign": 12, "attempt": 12, "archiv": [12, 14, 25], "ostre": 12, "validate_cert": 12, "tlsverifi": [12, 16], "tls_verifi": [12, 20], "http": [12, 16, 20, 29], "dure": 12, "0e901e68141f": 12, "basic": 12, "advanc": 12, "function": 12, "my": [12, 20, 27], "cool": 12, "acm": 12, "bug": 12, "vault_registry_password": 12, "loop": 12, "wa": 12, "r27": 12, "bitnami_pkg_chmod": 12, "r": [12, 22], "rwx": 12, "bitnami_pkg_extra_dir": 12, "nami_prefix": 12, "wildfly_hom": 12, "1001": 12, "10t05": 12, "48": 12, "553887623z": 12, "5a8ab28e314c2222de3feaf6dac94a0436a37fc08979d2722c99d2bef2619a9b": 12, "142c1beadf1bb09fbd929465ec98c9dca3256638220450efb4214727d0d0680": 12, "9aa10191f5bddb59e28508e721fdeb43505e5b395845fa99723ed787878dbfea": 12, "09t22": 12, "27": 12, "40": 12, "659377677z": 12, "53": 12, "86336555z": 12, "empty_lay": 12, "54": 12, "022778765z": 12, "ace34da54e4af2145e1ad277005adb235a214e4dfe1114c2db9ab460b840f785": 12, "466180019": 12, "18": 12, "gz": 13, "tgz": 13, "bzip": 13, "xz": 13, "txz": 13, "bash": 13, "myvolum": 13, "either": [14, 25], "input": 14, "hub": 15, "logged_in": 15, "clelang": [15, 16, 17], "clemen": [15, 16, 17], "lang": [15, 16, 17], "certdir": 16, "crt": [16, 20], "cert": [16, 20], "d": [16, 20], "verifi": [16, 20], "contact": [16, 20], "explicitli": [16, 17, 20], "verif": [16, 20], "unless": [16, 17, 20], "insecur": [16, 20], "p4ssw0rd": 16, "jason": 16, "hiatt": 16, "jthiatt": 16, "michael": 16, "fox": 16, "spmfox": 16, "logout": 17, "howev": 17, "ignore_docker_credenti": 17, "correspond": 17, "kept": 17, "togeth": 17, "cnivers": [18, 19], "podman0": [18, 19], "ipmasq": [18, 19], "ipam": [18, 19], "subnet": [18, 19], "rout": [18, 19], "dst": [18, 19], "isgatewai": [18, 19], "portmap": [18, 19], "iptabl": [18, 19], "firewal": [18, 19], "disable_dn": 19, "ipv4": 19, "ipv6": 19, "interface_nam": 19, "macvlan": 19, "same": [19, 25, 27], "intern": 19, "extern": [19, 23], "ip_rang": 19, "dual": 19, "vlan": 19, "mtu": 19, "traffic": 19, "metric": 19, "everi": 19, "netavark": 19, "vlan_filt": 19, "cidr": 19, "podman_intern": 19, "192": 19, "168": 19, "22": 19, "25": 19, "24": [19, 23], "structur": 20, "describ": [20, 22], "subdirectori": 20, "cert_dir": 20, "client": 20, "configmap": 20, "context_dir": 20, "kube_fil": 20, "quiet": 20, "hide": 20, "seccomp_profile_root": 20, "profil": 20, "kubelet": 20, "kube": 20, "greet": 20, "greet_to": 20, "special_pod": 21, "libpod_par": [21, 22], "2020": [21, 22, 31], "13t20": 21, "572282186": 21, "pod1host": 21, "d9cb6dbb0": 21, "infraconfig": [21, 22], "infraportbind": [21, 22], "7111": 21, "hostip": 21, "7777": 21, "protocol": 21, "makeinfracontain": [21, 22], "lockid": [21, 22], "682": 21, "pod1": [21, 22], "sharescgroup": [21, 22], "sharesipc": [21, 22], "sharesnet": [21, 22], "sharesut": [21, 22], "ad46737bf": 21, "cgrouppath": [21, 22], "infracontainerid": [21, 22], "he": 22, "total": [22, 23], "deleg": 22, "000": 22, "comput": 22, "power": 22, "unlik": 22, "pars": 22, "combin": 22, "w": 22, "mknod": 22, "resolv": 22, "special": 22, "infra": 22, "lightweight": 22, "coordin": 22, "infra_command": 22, "infra_conmon_pidfil": 22, "As": 22, "infra_imag": 22, "gcr": 22, "infra_nam": 22, "kibibyt": 22, "mebibyt": 22, "gibibyt": 22, "assign": 22, "network_alia": 22, "pod_id_fil": 22, "comma": 22, "choos": 22, "unpaus": 22, "wai": 22, "differ": [22, 29], "4444": 22, "5555": 22, "localhost": 22, "pod2": 22, "14t15": 22, "230818767": 22, "newpod": 22, "a5a5c6cdf8c72272fc5c33f787e8d7501e2fa0c1e92b2b602860defdafeeec58": 22, "515": 22, "dc70a947c7ae15198ec38b3c817587584085dee3919cbeb9969e3ab77ba10fd2": 22, "container_filt": 23, "filter": 23, "24h": 23, "possibl": 23, "image_filt": 23, "dangling_onli": 23, "dangl": 23, "network_filt": 23, "unus": 23, "system_al": 23, "system_volum": 23, "volume_filt": 23, "older": 23, "containers_filt": 23, "hour": 23, "ago": 23, "everyth": 23, "reclaim": 23, "space": 23, "roberto": 23, "alfieri": 23, "rebtoor": 23, "runlabel": 24, "get": 24, "continuumio": [24, 28], "miniconda3": [24, 28], "pavel": 24, "dostal": 24, "pdostal": 24, "uncompress": 25, "multi_image_arch": 25, "interpret": 25, "file123": 25, "fedora": 25, "file456": 25, "showsecret": 26, "show": [26, 29], "specific_secret": 26, "createdat": [26, 31], "2024": 26, "28t20": 26, "32": 26, "08": 26, "31857841": 26, "02": 26, "06068c676e9a7f1c7dc0da8dd": 26, "spec": 26, "filedriv": 26, "secret_nam": 26, "updatedat": 26, "unencrypt": 27, "driver_opt": 27, "skip_exist": 27, "remain": 27, "mysecret": 27, "super": 27, "showmysecret": 27, "msg": 27, "aliaksandr": 27, "mianzhynski": 27, "amenzhinski": 27, "target_nam": 28, "miniconda": 28, "christian": 28, "bourqu": 28, "ocafebab": 28, "offici": 29, "doc": 29, "en": 29, "markdown": 29, "html": 29, "become_ex": 29, "privilege_escal": 29, "sudo_become_plugin": 29, "ansible_become_ex": 29, "become_pass": 29, "ansible_become_password": 29, "become_us": 29, "ansible_become_us": 29, "foo": 29, "stat": 29, "test_dir": 29, "own": 29, "ok": 29, "test_host": 29, "1003": 29, "unprivileg": 29, "modifi": 29, "owner": 29, "chmod_foo": 29, "z": 29, "chown": 29, "now": 29, "someth": 29, "completali": 29, "situat": 29, "unaccess": 29, "again": 29, "328679": 29, "become_method": 29, "podman_ushar": 29, "we": 29, "reset": 29, "ownership": 29, "our": 29, "jano": 29, "gerzson": 29, "grz": 29, "specific_volum": 30, "mountpoint": [30, 31], "testvolum": 30, "_data": [30, 31], "tpmf": 31, "due": 31, "volume1": 31, "key2": 31, "value2": 31, "loop1": 31, "ext4": 31, "05t16": 31, "55": 31, "277628769": 31}, "objects": {"": [[1, 0, 1, "-", "ANSIBLE_BECOME_PASS"], [1, 0, 1, "-", "ANSIBLE_PODMAN_EXECUTABLE"], [1, 0, 1, "-", "ANSIBLE_PODMAN_EXTRA_ARGS"], [1, 0, 1, "-", "ANSIBLE_SUDO_EXE"], [1, 0, 1, "-", "ANSIBLE_SUDO_PASS"], [1, 0, 1, "-", "ANSIBLE_SUDO_USER"]]}, "objtypes": {"0": "std:envvar"}, "objnames": {"0": ["std", "envvar", "environment variable"]}, "titleterms": {"contain": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "podman": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "buildah": 0, "connect": [0, 2, 3], "interact": [0, 3], "an": [0, 3, 28], "exist": [0, 3], "synopsi": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "paramet": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "author": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "collect": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "link": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "index": [1, 2], "all": 1, "environ": 1, "variabl": 1, "descript": 2, "plugin": 2, "modul": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31], "becom": [2, 29], "podman_container_exec": 4, "execut": 4, "command": 4, "run": [4, 24, 29], "requir": [4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31], "note": [4, 5, 10, 11], "exampl": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "return": [4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 18, 19, 21, 22, 23, 26, 30, 31], "valu": [4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 18, 19, 21, 22, 23, 26, 30, 31], "podman_container_info": 5, "gather": [5, 11, 18, 21, 26, 30], "fact": 5, "about": [5, 11, 18, 21, 26, 30], "us": [5, 11, 12, 16, 17, 20, 29], "podman_contain": [6, 7], "manag": [6, 7, 19, 22, 27, 31], "batch": 7, "podman_copy_into": 8, "copi": 8, "file": [8, 13, 14, 20, 25], "podman_export": 9, "export": 9, "podman_generate_systemd": 10, "gener": 10, "systemd": 10, "unit": 10, "from": [10, 13, 14, 24], "pod": [10, 21, 22], "podman_image_info": 11, "info": [11, 18, 21, 26, 30], "imag": [11, 12, 14, 24, 25, 28], "podman_imag": 12, "pull": 12, "podman_import": 13, "import": 13, "tar": [13, 14, 25], "podman_load": 14, "load": 14, "podman_login_info": 15, "log": [15, 17], "user": 15, "ani": 15, "given": [15, 24], "registri": [15, 16, 17], "podman_login": 16, "login": 16, "podman_logout": 17, "out": 17, "podman_network_info": 18, "network": [18, 19], "podman_network": 19, "podman_plai": 20, "plai": 20, "kubernet": 20, "yaml": 20, "podman_pod_info": 21, "podman_pod": 22, "podman_prun": 23, "allow": 23, "prune": 23, "variou": 23, "object": 23, "podman_runlabel": 24, "label": 24, "podman_sav": 25, "save": 25, "podman_secret_info": 26, "secret": [26, 27], "podman_secret": 27, "podman_tag": 28, "add": 28, "addit": 28, "name": 28, "local": 28, "podman_unshar": 29, "task": 29, "unshar": 29, "podman_volume_info": 30, "volum": [30, 31], "podman_volum": 31}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 57}, "alltitles": {"containers.podman.buildah connection \u2013 Interact with an existing buildah container": [[0, "containers-podman-buildah-connection-interact-with-an-existing-buildah-container"]], "Synopsis": [[0, "synopsis"], [3, "synopsis"], [4, "synopsis"], [5, "synopsis"], [6, "synopsis"], [7, "synopsis"], [8, "synopsis"], [9, "synopsis"], [10, "synopsis"], [11, "synopsis"], [12, "synopsis"], [13, "synopsis"], [14, "synopsis"], [15, "synopsis"], [16, "synopsis"], [17, "synopsis"], [18, "synopsis"], [19, "synopsis"], [20, "synopsis"], [21, "synopsis"], [22, "synopsis"], [23, "synopsis"], [24, "synopsis"], [25, "synopsis"], [26, "synopsis"], [27, "synopsis"], [28, "synopsis"], [29, "synopsis"], [30, "synopsis"], [31, "synopsis"]], "Parameters": [[0, "parameters"], [3, "parameters"], [4, "parameters"], [5, "parameters"], [6, "parameters"], [7, "parameters"], [8, "parameters"], [9, "parameters"], [10, "parameters"], [11, "parameters"], [12, "parameters"], [13, "parameters"], [14, "parameters"], [15, "parameters"], [16, "parameters"], [17, "parameters"], [18, "parameters"], [19, "parameters"], [20, "parameters"], [21, "parameters"], [22, "parameters"], [23, "parameters"], [24, "parameters"], [25, "parameters"], [26, "parameters"], [27, "parameters"], [28, "parameters"], [29, "parameters"], [30, "parameters"], [31, "parameters"]], "Authors": [[0, "authors"], [3, "authors"], [4, "authors"], [5, "authors"], [6, "authors"], [7, "authors"], [8, "authors"], [9, "authors"], [10, "authors"], [11, "authors"], [12, "authors"], [13, "authors"], [14, "authors"], [15, "authors"], [16, "authors"], [17, "authors"], [18, "authors"], [19, "authors"], [20, "authors"], [21, "authors"], [22, "authors"], [23, "authors"], [24, "authors"], [25, "authors"], [26, "authors"], [27, "authors"], [28, "authors"], [29, "authors"], [30, "authors"], [31, "authors"]], "Collection links": [[0, "collection-links"], [3, "collection-links"], [4, "collection-links"], [5, "collection-links"], [6, "collection-links"], [7, "collection-links"], [8, "collection-links"], [9, "collection-links"], [10, "collection-links"], [11, "collection-links"], [12, "collection-links"], [13, "collection-links"], [14, "collection-links"], [15, "collection-links"], [16, "collection-links"], [17, "collection-links"], [18, "collection-links"], [19, "collection-links"], [20, "collection-links"], [21, "collection-links"], [22, "collection-links"], [23, "collection-links"], [24, "collection-links"], [25, "collection-links"], [26, "collection-links"], [27, "collection-links"], [28, "collection-links"], [29, "collection-links"], [30, "collection-links"], [31, "collection-links"]], "Index of all Collection Environment Variables": [[1, "index-of-all-collection-environment-variables"]], "Containers.Podman": [[2, "containers-podman"]], "Description": [[2, "description"]], "Plugin Index": [[2, "plugin-index"]], "Modules": [[2, "modules"]], "Become Plugins": [[2, "become-plugins"]], "Connection Plugins": [[2, "connection-plugins"]], "containers.podman.podman connection \u2013 Interact with an existing podman container": [[3, "containers-podman-podman-connection-interact-with-an-existing-podman-container"]], "containers.podman.podman_container_exec module \u2013 Executes a command in a running container.": [[4, "containers-podman-podman-container-exec-module-executes-a-command-in-a-running-container"]], "Requirements": [[4, "requirements"], [5, "requirements"], [6, "requirements"], [7, "requirements"], [8, "requirements"], [9, "requirements"], [10, "requirements"], [13, "requirements"], [14, "requirements"], [15, "requirements"], [16, "requirements"], [17, "requirements"], [18, "requirements"], [19, "requirements"], [20, "requirements"], [21, "requirements"], [22, "requirements"], [23, "requirements"], [24, "requirements"], [25, "requirements"], [26, "requirements"], [27, "requirements"], [28, "requirements"], [30, "requirements"], [31, "requirements"]], "Notes": [[4, "notes"], [5, "notes"], [10, "notes"], [11, "notes"]], "Examples": [[4, "examples"], [5, "examples"], [6, "examples"], [7, "examples"], [8, "examples"], [9, "examples"], [10, "examples"], [11, "examples"], [12, "examples"], [13, "examples"], [14, "examples"], [15, "examples"], [16, "examples"], [17, "examples"], [18, "examples"], [19, "examples"], [20, "examples"], [21, "examples"], [22, "examples"], [23, "examples"], [24, "examples"], [25, "examples"], [26, "examples"], [27, "examples"], [28, "examples"], [29, "examples"], [30, "examples"], [31, "examples"]], "Return Values": [[4, "return-values"], [5, "return-values"], [6, "return-values"], [8, "return-values"], [10, "return-values"], [11, "return-values"], [12, "return-values"], [13, "return-values"], [14, "return-values"], [15, "return-values"], [18, "return-values"], [19, "return-values"], [21, "return-values"], [22, "return-values"], [23, "return-values"], [26, "return-values"], [30, "return-values"], [31, "return-values"]], "containers.podman.podman_container_info module \u2013 Gather facts about containers using podman": [[5, "containers-podman-podman-container-info-module-gather-facts-about-containers-using-podman"]], "containers.podman.podman_container module \u2013 Manage podman containers": [[6, "containers-podman-podman-container-module-manage-podman-containers"]], "containers.podman.podman_containers module \u2013 Manage podman containers in a batch": [[7, "containers-podman-podman-containers-module-manage-podman-containers-in-a-batch"]], "containers.podman.podman_copy_into module \u2013 Copy file to a container": [[8, "containers-podman-podman-copy-into-module-copy-file-to-a-container"]], "containers.podman.podman_export module \u2013 Export a podman container": [[9, "containers-podman-podman-export-module-export-a-podman-container"]], "containers.podman.podman_generate_systemd module \u2013 Generate systemd unit from a pod or a container": [[10, "containers-podman-podman-generate-systemd-module-generate-systemd-unit-from-a-pod-or-a-container"]], "containers.podman.podman_image_info module \u2013 Gather info about images using podman": [[11, "containers-podman-podman-image-info-module-gather-info-about-images-using-podman"]], "containers.podman.podman_image module \u2013 Pull images for use by podman": [[12, "containers-podman-podman-image-module-pull-images-for-use-by-podman"]], "containers.podman.podman_import module \u2013 Import Podman container from a tar file.": [[13, "containers-podman-podman-import-module-import-podman-container-from-a-tar-file"]], "containers.podman.podman_load module \u2013 Load image from a tar file.": [[14, "containers-podman-podman-load-module-load-image-from-a-tar-file"]], "containers.podman.podman_login_info module \u2013 Return the logged-in user if any for a given registry": [[15, "containers-podman-podman-login-info-module-return-the-logged-in-user-if-any-for-a-given-registry"]], "containers.podman.podman_login module \u2013 Login to a container registry using podman": [[16, "containers-podman-podman-login-module-login-to-a-container-registry-using-podman"]], "containers.podman.podman_logout module \u2013 Log out of a container registry using podman": [[17, "containers-podman-podman-logout-module-log-out-of-a-container-registry-using-podman"]], "containers.podman.podman_network_info module \u2013 Gather info about podman networks": [[18, "containers-podman-podman-network-info-module-gather-info-about-podman-networks"]], "containers.podman.podman_network module \u2013 Manage podman networks": [[19, "containers-podman-podman-network-module-manage-podman-networks"]], "containers.podman.podman_play module \u2013 Play kubernetes YAML file using podman": [[20, "containers-podman-podman-play-module-play-kubernetes-yaml-file-using-podman"]], "containers.podman.podman_pod_info module \u2013 Gather info about podman pods": [[21, "containers-podman-podman-pod-info-module-gather-info-about-podman-pods"]], "containers.podman.podman_pod module \u2013 Manage Podman pods": [[22, "containers-podman-podman-pod-module-manage-podman-pods"]], "containers.podman.podman_prune module \u2013 Allows to prune various podman objects": [[23, "containers-podman-podman-prune-module-allows-to-prune-various-podman-objects"]], "containers.podman.podman_runlabel module \u2013 Run given label from given image": [[24, "containers-podman-podman-runlabel-module-run-given-label-from-given-image"]], "containers.podman.podman_save module \u2013 Saves podman image to tar file": [[25, "containers-podman-podman-save-module-saves-podman-image-to-tar-file"]], "containers.podman.podman_secret_info module \u2013 Gather info about podman secrets": [[26, "containers-podman-podman-secret-info-module-gather-info-about-podman-secrets"]], "containers.podman.podman_secret module \u2013 Manage podman secrets": [[27, "containers-podman-podman-secret-module-manage-podman-secrets"]], "containers.podman.podman_tag module \u2013 Add an additional name to a local image": [[28, "containers-podman-podman-tag-module-add-an-additional-name-to-a-local-image"]], "containers.podman.podman_unshare become \u2013 Run tasks using podman unshare": [[29, "containers-podman-podman-unshare-become-run-tasks-using-podman-unshare"]], "containers.podman.podman_volume_info module \u2013 Gather info about podman volumes": [[30, "containers-podman-podman-volume-info-module-gather-info-about-podman-volumes"]], "containers.podman.podman_volume module \u2013 Manage Podman volumes": [[31, "containers-podman-podman-volume-module-manage-podman-volumes"]]}, "indexentries": {"ansible_remote_user": [[0, "index-0"], [3, "index-2"]], "environment variable": [[0, "index-0"], [1, "envvar-ANSIBLE_BECOME_PASS"], [1, "envvar-ANSIBLE_PODMAN_EXECUTABLE"], [1, "envvar-ANSIBLE_PODMAN_EXTRA_ARGS"], [1, "envvar-ANSIBLE_SUDO_EXE"], [1, "envvar-ANSIBLE_SUDO_PASS"], [1, "envvar-ANSIBLE_SUDO_USER"], [3, "index-0"], [3, "index-1"], [3, "index-2"], [29, "index-0"], [29, "index-1"], [29, "index-2"], [29, "index-3"], [29, "index-4"], [29, "index-5"]], "ansible_become_pass": [[1, "envvar-ANSIBLE_BECOME_PASS"], [29, "index-2"]], "ansible_podman_executable": [[1, "envvar-ANSIBLE_PODMAN_EXECUTABLE"], [3, "index-0"]], "ansible_podman_extra_args": [[1, "envvar-ANSIBLE_PODMAN_EXTRA_ARGS"], [3, "index-1"]], "ansible_sudo_exe": [[1, "envvar-ANSIBLE_SUDO_EXE"], [29, "index-1"]], "ansible_sudo_pass": [[1, "envvar-ANSIBLE_SUDO_PASS"], [29, "index-3"]], "ansible_sudo_user": [[1, "envvar-ANSIBLE_SUDO_USER"], [29, "index-5"]], "ansible_become_exe": [[29, "index-0"]], "ansible_become_user": [[29, "index-4"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["buildah_connection", "environment_variables", "index", "podman_connection", "podman_container_exec_module", "podman_container_info_module", "podman_container_module", "podman_containers_module", "podman_export_module", "podman_generate_systemd_module", "podman_image_info_module", "podman_image_module", "podman_import_module", "podman_load_module", "podman_login_info_module", "podman_login_module", "podman_logout_module", "podman_network_info_module", "podman_network_module", "podman_play_module", "podman_pod_info_module", "podman_pod_module", "podman_prune_module", "podman_runlabel_module", "podman_save_module", "podman_secret_info_module", "podman_secret_module", "podman_tag_module", "podman_unshare_become", "podman_volume_info_module", "podman_volume_module"], "filenames": ["buildah_connection.rst", "environment_variables.rst", "index.rst", "podman_connection.rst", "podman_container_exec_module.rst", "podman_container_info_module.rst", "podman_container_module.rst", "podman_containers_module.rst", "podman_export_module.rst", "podman_generate_systemd_module.rst", "podman_image_info_module.rst", "podman_image_module.rst", "podman_import_module.rst", "podman_load_module.rst", "podman_login_info_module.rst", "podman_login_module.rst", "podman_logout_module.rst", "podman_network_info_module.rst", "podman_network_module.rst", "podman_play_module.rst", "podman_pod_info_module.rst", "podman_pod_module.rst", "podman_prune_module.rst", "podman_runlabel_module.rst", "podman_save_module.rst", "podman_secret_info_module.rst", "podman_secret_module.rst", "podman_tag_module.rst", "podman_unshare_become.rst", "podman_volume_info_module.rst", "podman_volume_module.rst"], "titles": ["containers.podman.buildah connection \u2013 Interact with an existing buildah container", "Index of all Collection Environment Variables", "Containers.Podman", "containers.podman.podman connection \u2013 Interact with an existing podman container", "containers.podman.podman_container_exec module \u2013 Executes a command in a running container.", "containers.podman.podman_container_info module \u2013 Gather facts about containers using podman", "containers.podman.podman_container module \u2013 Manage podman containers", "containers.podman.podman_containers module \u2013 Manage podman containers in a batch", "containers.podman.podman_export module \u2013 Export a podman container", "containers.podman.podman_generate_systemd module \u2013 Generate systemd unit from a pod or a container", "containers.podman.podman_image_info module \u2013 Gather info about images using podman", "containers.podman.podman_image module \u2013 Pull images for use by podman", "containers.podman.podman_import module \u2013 Import Podman container from a tar file.", "containers.podman.podman_load module \u2013 Load image from a tar file.", "containers.podman.podman_login_info module \u2013 Return the logged-in user if any for a given registry", "containers.podman.podman_login module \u2013 Login to a container registry using podman", "containers.podman.podman_logout module \u2013 Log out of a container registry using podman", "containers.podman.podman_network_info module \u2013 Gather info about podman networks", "containers.podman.podman_network module \u2013 Manage podman networks", "containers.podman.podman_play module \u2013 Play kubernetes YAML file using podman", "containers.podman.podman_pod_info module \u2013 Gather info about podman pods", "containers.podman.podman_pod module \u2013 Manage Podman pods", "containers.podman.podman_prune module \u2013 Allows to prune various podman objects", "containers.podman.podman_runlabel module \u2013 Run given label from given image", "containers.podman.podman_save module \u2013 Saves podman image to tar file", "containers.podman.podman_secret_info module \u2013 Gather info about podman secrets", "containers.podman.podman_secret module \u2013 Manage podman secrets", "containers.podman.podman_tag module \u2013 Add an additional name to a local image", "containers.podman.podman_unshare become \u2013 Run tasks using podman unshare", "containers.podman.podman_volume_info module \u2013 Gather info about podman volumes", "containers.podman.podman_volume module \u2013 Manage Podman volumes"], "terms": {"thi": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "plugin": [0, 1, 3, 17, 18, 28], "i": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "part": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "version": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "1": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "12": [6, 20, 21], "It": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "includ": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "ansibl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "core": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "To": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "check": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "whether": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "instal": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "run": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 29, 30], "galaxi": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "list": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "us": [0, 1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 14, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30], "playbook": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "specifi": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "command": [0, 1, 2, 3, 6, 7, 9, 14, 15, 16, 17, 18, 20, 21, 25, 26, 28, 29], "put": [0, 3], "fetch": [0, 3], "file": [0, 2, 3, 5, 6, 8, 9, 11, 14, 15, 16, 18, 21, 25, 26, 28, 30], "tool": [0, 3, 16], "comment": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "remote_addr": [0, 3], "string": [0, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "The": [0, 1, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "id": [0, 3, 4, 5, 6, 9, 10, 11, 12, 13, 20, 21, 22, 25], "you": [0, 1, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "want": [0, 3, 6, 9, 21], "access": [0, 3, 6, 18], "default": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "inventory_hostnam": [0, 3], "configur": [0, 1, 3, 5, 6, 9, 19, 20, 21, 28], "variabl": [0, 3, 4, 6, 9, 14, 15, 16, 19, 21, 28], "ansible_host": [0, 3], "remote_us": [0, 3], "user": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 15, 16, 18, 19, 21, 25, 28, 30], "via": [0, 3, 6, 21], "name": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 28, 29, 30], "which": [0, 3, 6, 7, 9, 18, 19, 21, 26, 28, 30], "execut": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "insid": [0, 3, 4, 6], "ini": [0, 3, 28], "entri": [0, 3, 28], "valu": [0, 1, 3, 19, 26, 28], "environ": [0, 3, 4, 6, 9, 14, 15, 16, 19, 21, 28], "ansible_remote_us": [0, 3], "ansible_us": [0, 3], "toma": [0, 3], "tomecek": [0, 3], "tomastomecek": [0, 3], "each": [0, 3, 6, 19, 28], "type": [0, 3, 5, 6, 10, 11, 12, 13, 17, 18, 21, 24, 28, 30], "have": [0, 3, 6, 18, 28], "low": [0, 3, 28], "high": [0, 3, 28], "prioriti": [0, 3, 28], "order": [0, 3, 5, 6, 9, 10, 21, 28], "For": [0, 3, 6, 18, 22, 28, 30], "exampl": [0, 3], "lower": [0, 3, 28], "overrid": [0, 3, 6, 9, 14, 15, 16, 19, 21, 26, 28], "higher": [0, 3, 28], "up": [0, 3, 6, 28], "issu": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "tracker": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "repositori": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "sourc": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "follow": [1, 4, 5, 6, 9, 10, 11, 12, 13, 14, 17, 18, 20, 21, 22, 25, 29, 30], "document": [1, 4, 5, 6, 9, 10, 11, 12, 13, 14, 17, 18, 20, 21, 22, 25, 28, 29, 30], "declar": [1, 6, 9, 21], "ar": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30], "ansible_configuration_set": 1, "ansible_become_pass": [1, 28], "password": [1, 11, 15, 19, 28], "pass": [1, 3, 4, 6, 11, 18, 19, 21, 28], "sudo": [1, 28], "contain": 1, "podman": 1, "podman_unshar": [1, 2], "becom": [1, 18], "ansible_podman_execut": [1, 3], "connect": [1, 6, 15, 18, 19, 21], "ansible_podman_extra_arg": [1, 3], "extra": [1, 3, 11], "argument": [1, 3, 6, 11], "line": [1, 3, 6, 11, 18, 19, 21, 30], "ansible_sudo_ex": [1, 28], "ansible_sudo_pass": [1, 28], "ansible_sudo_us": [1, 28], "task": [1, 2, 6], "root": [1, 5, 6, 11, 12, 18, 19, 21, 28, 30], "valid": [1, 6, 11, 28], "here": [1, 4, 5, 6, 9, 10, 11, 12, 13, 14, 17, 18, 20, 21, 22, 25, 28, 29, 30], "collect": 2, "author": 2, "sagi": [2, 5, 6, 7, 8, 12, 13, 17, 18, 19, 20, 21, 24, 25, 29, 30], "shnaidman": [2, 5, 6, 7, 8, 12, 13, 17, 18, 19, 20, 21, 24, 25, 29, 30], "sshnaidm": [2, 5, 6, 7, 8, 12, 13, 17, 18, 19, 20, 21, 24, 25, 29, 30], "redhat": [2, 4], "com": [2, 10, 11, 13, 30], "team": 2, "support": [2, 6, 9, 18, 19, 21, 24, 30], "2": [2, 5, 6, 10, 11, 13, 21], "8": [2, 5, 6], "newer": 2, "These": 2, "podman_contain": [2, 9, 26, 28], "manag": [2, 5], "podman_container_exec": 2, "podman_container_info": 2, "gather": [2, 28], "fact": [2, 6, 17, 18, 20, 25, 29], "about": 2, "batch": 2, "podman_export": 2, "export": [2, 6, 9, 14, 15, 16, 19], "podman_generate_systemd": 2, "gener": [2, 6, 13, 21], "systemd": [2, 5, 6, 11, 18, 19, 21, 30], "unit": [2, 6, 21], "from": [2, 5, 6, 10, 11, 15, 16, 17, 18, 19, 20, 21, 25, 29], "pod": [2, 5, 6, 19, 22, 30], "podman_imag": 2, "pull": [2, 6, 19], "imag": [2, 5, 6, 7, 9, 12, 19, 21, 22, 26, 28, 30], "podman_image_info": 2, "info": [2, 6, 11, 12, 13, 19], "podman_import": 2, "import": 2, "tar": [2, 8], "podman_load": 2, "load": [2, 6, 11, 12], "podman_login": 2, "login": [2, 14, 16, 19, 28], "registri": [2, 6, 11, 19], "podman_login_info": 2, "return": [2, 7], "log": [2, 5, 6, 19], "ani": [2, 6, 9, 11, 16, 19, 22], "given": [2, 5, 6, 9, 10, 21], "podman_logout": 2, "out": 2, "podman_network": 2, "network": [2, 6, 11, 19, 21, 22, 30], "podman_network_info": 2, "podman_plai": 2, "plai": 2, "kubernet": [2, 5, 6], "yaml": 2, "podman_pod": 2, "podman_pod_info": 2, "podman_prun": 2, "allow": [2, 6, 21, 24, 28], "prune": 2, "variou": 2, "object": 2, "podman_runlabel": 2, "label": [2, 5, 6, 10, 11, 12, 13, 18, 20, 21, 25, 26, 29, 30], "podman_sav": 2, "save": [2, 8, 12, 13], "podman_secret": 2, "secret": [2, 6], "podman_secret_info": 2, "podman_tag": 2, "add": [2, 6, 9, 11, 12, 18, 19, 21, 30], "an": [2, 6, 9, 11, 13, 15, 19, 21, 24, 26, 28], "addit": [2, 6, 7, 18, 21, 24, 30], "local": [2, 5, 6, 8, 10, 11, 13, 17, 18, 19, 24, 25, 29, 30], "podman_volum": 2, "volum": [2, 5, 6, 8, 11, 12, 21, 22, 28], "podman_volume_info": 2, "unshar": 2, "buildah": 2, "interact": [2, 6], "exist": [2, 6, 8, 9, 11, 16, 18, 19, 21, 24, 26, 30], "podman_execut": 3, "podman_extra_arg": 3, "ansible_podman_host": 3, "uid": [3, 4, 6, 10, 21, 28, 30], "If": [3, 4, 5, 6, 9, 10, 11, 15, 16, 18, 19, 21, 26, 28], "must": [3, 6, 9, 18, 19, 21], "set": [3, 4, 6, 9, 11, 12, 14, 15, 16, 18, 19, 21, 26, 28, 30], "ansible_remote_tmp": 3, "path": [3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30], "exit": [3, 4, 6], "writabl": 3, "need": [4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30], "further": [4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30], "abl": [4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30], "see": [4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "detail": [4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30], "below": [4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30], "host": [4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "argv": 4, "element": [4, 5, 6, 7, 9, 10, 11, 12, 17, 18, 19, 20, 21, 22, 24, 25, 27, 29, 30], "rather": [4, 6], "than": [4, 6, 9, 21, 22, 24], "One": 4, "arg": [4, 5, 6, 11, 18, 19, 21, 30], "detach": [4, 6, 26], "boolean": [4, 6, 7, 8, 9, 11, 15, 16, 18, 19, 21, 22, 24, 25, 26, 30], "true": [4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 28, 30], "background": 4, "exec": 4, "session": 4, "automat": [4, 6], "remov": [4, 6, 9, 11, 16, 18, 26], "when": [4, 6, 9, 11, 15, 19, 21, 22, 24, 26, 28], "complet": [4, 6], "choic": [4, 6, 7, 8, 9, 11, 15, 16, 18, 19, 21, 22, 24, 25, 26, 30], "fals": [4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 18, 19, 21, 22, 24, 25, 26, 28, 30], "env": [4, 5, 6, 9, 10, 11, 13], "dictionari": [4, 5, 6, 7, 9, 11, 12, 13, 14, 18, 19, 21, 22, 26, 30], "where": [4, 6, 11, 21], "privileg": [4, 5, 6, 10], "give": [4, 6], "extend": [4, 6], "tty": [4, 5, 6], "alloc": [4, 6, 18], "pseudo": [4, 6], "usernam": [4, 6, 11, 14, 15, 19], "option": [4, 6, 9, 11, 16, 18, 19, 21, 25, 26, 29, 30], "groupnam": [4, 6], "gid": [4, 6, 21, 30], "both": 4, "group": [4, 6, 7, 30], "mai": [4, 5, 6, 9, 10, 11], "symbol": 4, "numer": 4, "workdir": [4, 6, 10, 11, 12, 13], "work": [4, 6, 9, 10, 11, 12, 13, 21], "directori": [4, 6, 11, 15, 18, 19, 21, 24, 30], "ubi8": 4, "cat": [4, 26], "releas": [4, 6], "etc": [4, 6, 9, 11, 15, 18, 19, 21, 30], "test_contain": 4, "bin": [4, 5, 6, 10, 11, 12, 13], "sh": [4, 6, 10, 11, 12, 13], "c": [4, 11, 12], "echo": [4, 6], "hello": [4, 19], "bye": 4, "world": [4, 19], "goodby": 4, "detach_contain": 4, "common": [4, 5, 6, 9, 10, 11, 12, 13, 14, 17, 18, 20, 21, 22, 25, 29, 30], "field": [4, 5, 6, 9, 10, 11, 12, 13, 14, 17, 18, 20, 21, 22, 25, 29, 30], "uniqu": [4, 5, 6, 9, 10, 11, 12, 13, 14, 17, 18, 20, 21, 22, 25, 29, 30], "kei": [4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 25, 26, 29, 30], "descript": [4, 5, 6, 9, 10, 11, 12, 13, 14, 17, 18, 20, 21, 22, 25, 29, 30], "exec_id": 4, "success": [4, 6, 9, 11, 21], "sampl": [4, 5, 6, 9, 10, 11, 12, 13, 14, 17, 18, 20, 21, 22, 25, 29, 30], "f99002e34c1087fd1aa08d5027e455bf7c2d6b74f019069acf6462a96ddf2a47": 4, "rc": 4, "integ": [4, 6, 9, 18, 21], "code": [4, 6], "0": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "stderr": [4, 6], "standard": 4, "output": [4, 6, 19, 26, 28], "stdout": [4, 6, 26], "takuya": 4, "nishimura": 4, "nishipi": 4, "machin": [5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 23, 24, 25, 26, 27, 29, 30], "all": [5, 6, 9, 10, 16, 17, 18, 19, 20, 21, 22, 25, 29], "elev": [5, 10], "properli": [5, 10], "specif": [5, 6, 10, 11, 17, 19, 20, 21, 25, 26, 29, 30], "web1": 5, "sever": [5, 10, 21], "redi": [5, 6, 10, 11], "alwai": [5, 6, 9, 10, 11, 12, 13, 14, 17, 18, 20, 21, 25, 29, 30], "apparmorprofil": [5, 6], "singl": [5, 6], "child": 5, "kolla_start": 5, "boundingcap": [5, 6], "cap_chown": [5, 6], "cap_dac_overrid": 5, "cap_fsetid": 5, "cap_fown": 5, "cap_mknod": 5, "cap_net_raw": 5, "cap_setgid": 5, "cap_setuid": 5, "cap_setfcap": 5, "cap_setpcap": 5, "cap_net_bind_servic": 5, "cap_sys_chroot": 5, "cap_kil": 5, "cap_audit_writ": 5, "config": [5, 6, 9, 11, 12, 16, 18, 19, 20, 21, 30], "annot": [5, 6, 10, 11, 12, 13, 19], "io": [5, 6, 9, 10, 11, 13, 14, 15, 16, 21, 23, 26, 27, 28, 30], "cri": [5, 6], "o": [5, 6, 10, 11, 12, 13], "containertyp": [5, 6], "sandbox": [5, 6], "autoremov": 5, "init": [5, 6, 21], "publish": [5, 6, 21], "attachstderr": [5, 6], "attachstdin": [5, 6], "attachstdout": [5, 6], "cmd": [5, 6, 10, 11, 12, 13], "domainnam": [5, 6], "entrypoint": [5, 6, 10, 11, 13], "dumb": 5, "usr": [5, 6, 10, 11, 13], "sbin": [5, 6, 10, 11, 13], "term": [5, 6], "xterm": [5, 6], "hostnam": [5, 6, 20, 21], "oci": [5, 6, 11, 12, 13, 24], "kolla_install_metatyp": 5, "rdo": 5, "kolla_base_distro": 5, "cento": [5, 30], "kolla_install_typ": 5, "binari": [5, 6, 22], "kolla_distro_python_vers": 5, "7": [5, 26], "kolla_base_arch": 5, "x86_64": 5, "c5c39e813703": 5, "docker": [5, 6, 9, 10, 11, 13, 14, 16, 19, 21, 23, 24, 26, 27], "tripleomast": 5, "haproxi": 5, "latest": [5, 6, 9, 10, 11, 13, 28, 30], "build": [5, 11, 19], "date": 5, "20190919": 5, "kolla_vers": 5, "org": [5, 30], "schema": 5, "20190801": 5, "licens": 5, "gplv2": 5, "base": [5, 6, 18], "vendor": 5, "onbuild": 5, "null": [5, 6, 12, 21], "openstdin": [5, 6], "stdinonc": [5, 6], "stopsign": [5, 6], "15": [5, 6], "workingdir": [5, 6], "creat": [5, 6, 9, 10, 11, 12, 13, 15, 16, 18, 19, 20, 21, 22, 24, 26, 28, 30], "2019": [5, 6, 11], "10": [5, 6, 7, 10, 11, 13, 17, 18, 21, 22], "01t12": 5, "51": 5, "00": [5, 6, 12, 20, 21, 25, 30], "233106443z": 5, "depend": [5, 6, 9, 21], "driver": [5, 6, 18, 19, 25, 26, 29, 30], "overlai": [5, 6, 10, 11, 12, 13], "effectivecap": [5, 6], "execid": [5, 6], "exitcommand": [5, 6], "var": [5, 6, 10, 11, 13, 19, 21, 28], "lib": [5, 6, 10, 11, 13, 19], "storag": [5, 10, 11, 13, 19, 25, 30], "runroot": 5, "level": [5, 6, 19], "error": [5, 6, 19], "cgroup": [5, 6, 21], "tmpdir": 5, "libpod": 5, "runtim": [5, 6], "runc": 5, "event": 5, "backend": [5, 17, 18], "journald": [5, 6, 19], "cleanup": 5, "c9e813703f9b80a6ea2ad665aa9946435934e478a0c5322da835f3883872f": 5, "graphdriv": [5, 6, 10, 11, 12, 13], "hostconfig": [5, 6], "bind": [5, 6, 21], "blkiodevicereadbp": 5, "blkiodevicereadiop": 5, "blkiodevicewritebp": 5, "blkiodevicewriteiop": 5, "blkioweight": 5, "blkioweightdevic": 5, "capadd": 5, "capdrop": 5, "cgrouppar": [5, 20, 21], "consoles": 5, "containeridfil": 5, "cpucount": 5, "cpuperc": 5, "cpuperiod": 5, "cpuquota": 5, "cpurealtimeperiod": 5, "cpurealtimeruntim": 5, "cpushar": 5, "cpusetcpu": 5, "cpusetmem": 5, "devic": [5, 6, 18, 21, 30], "diskquota": 5, "dn": [5, 6, 18, 21], "dnsoption": 5, "dnssearch": 5, "extrahost": 5, "groupadd": 5, "iomaximumbandwidth": 5, "iomaximumiop": 5, "ipcmod": 5, "isol": [5, 18], "kernelmemori": 5, "logconfig": 5, "k8": [5, 6, 21], "memori": [5, 6, 21], "memoryreserv": 5, "memoryswap": 5, "memoryswappi": 5, "nanocpu": 5, "networkmod": 5, "oomkilldis": 5, "oomscoreadj": 5, "pidmod": 5, "pidslimit": 5, "portbind": 5, "publishallport": 5, "readonlyrootf": 5, "restartpolici": 5, "maximumretrycount": 5, "securityopt": 5, "shmsize": 5, "65536000": 5, "tmpf": [5, 6, 30], "utsmod": 5, "ulimit": [5, 6], "hard": 5, "1048576": 5, "rlimit_nofil": 5, "soft": [5, 6], "rlimit_nproc": 5, "usernsmod": 5, "volumedriv": 5, "volumesfrom": 5, "hostnamepath": [5, 6], "hostspath": [5, 6], "c5c39f9b80a6ea2ad665aa9946435934e478a0c5322da835f3883872f": 5, "0e267acda67d0ebd643e900d820a91b961d859743039e620191ca1": 5, "imagenam": [5, 6], "isinfra": [5, 6], "mountlabel": [5, 6], "system_u": [5, 6], "object_r": [5, 6], "svirt_sandbox_file_t": 5, "s0": [5, 6], "c78": 5, "c866": 5, "mount": [5, 6, 11, 21, 28], "namespac": [5, 6, 19, 21, 28], "networkset": [5, 6], "bridg": [5, 6, 17, 18, 21], "endpointid": 5, "gatewai": [5, 17, 18], "globalipv6address": 5, "globalipv6prefixlen": 5, "hairpinmod": 5, "ipaddress": 5, "ipprefixlen": 5, "ipv6gatewai": 5, "linklocalipv6address": 5, "linklocalipv6prefixlen": 5, "macaddress": 5, "port": [5, 6, 21], "sandboxid": 5, "sandboxkei": 5, "secondaryipaddress": 5, "secondaryipv6address": 5, "ociruntim": 5, "processlabel": [5, 6], "system_r": [5, 6], "svirt_lxc_net_t": 5, "c785": 5, "resolvconfpath": [5, 6], "restartcount": [5, 6], "rootf": [5, 6, 10, 11, 12, 13], "state": [5, 6, 9, 11, 18, 19, 20, 21, 26, 28, 30], "dead": [5, 6], "exitcod": [5, 6], "finishedat": [5, 6], "0001": 5, "01": [5, 25], "01t00": 5, "00z": 5, "healthcheck": [5, 6], "failingstreak": [5, 6], "statu": [5, 6, 20, 21], "oomkil": [5, 6], "ocivers": [5, 6], "dev": [5, 6, 21, 30], "paus": [5, 6, 21], "pid": [5, 6, 21], "restart": [5, 6, 9, 21], "startedat": [5, 6], "emilien": 5, "macchi": 5, "emilienm": 5, "new": [6, 7, 9, 11, 14, 17, 18, 19, 20, 21, 22, 26, 28, 30], "start": [6, 9, 10, 13, 19, 21], "stop": [6, 9, 18, 21], "format": [6, 11, 18, 21, 24], "multipl": [6, 11, 19, 21], "time": [6, 9, 19, 21], "attach": 6, "stdin": 6, "authfil": [6, 11, 14, 15, 16, 19], "authent": [6, 11, 14, 15, 16, 19], "xdg_runtime_dir": [6, 14, 15, 16, 19], "auth": [6, 11, 14, 15, 16, 19], "json": [6, 11, 12, 14, 15, 16, 19], "Not": [6, 14], "avail": [6, 14, 19], "remot": [6, 11, 14, 19, 28], "can": [6, 7, 9, 14, 15, 16, 18, 19, 21, 22, 28, 30], "also": [6, 11, 14, 15, 16, 19, 22], "registry_auth_fil": [6, 14, 15, 16, 19], "blkio_weight": [6, 21], "block": [6, 18, 21], "weight": [6, 21], "rel": [6, 21], "accept": 6, "between": [6, 9, 18, 21], "1000": [6, 21, 28], "blkio_weight_devic": [6, 21], "device_nam": 6, "cap_add": 6, "alias": [6, 11, 13, 19, 21, 24], "capabl": [6, 17, 18], "cap_drop": 6, "drop": 6, "cgroup_par": [6, 21], "under": [6, 15, 16, 21], "absolut": [6, 21], "consid": [6, 21, 22], "process": [6, 21], "thei": [6, 16, 19, 21, 22], "do": [6, 9, 21], "alreadi": [6, 9, 11, 19, 21, 26], "cgroupn": 6, "determin": 6, "enabl": [6, 9, 18, 19, 21, 26], "disabl": [6, 18, 19, 21], "being": 6, "forc": [6, 8, 9, 11, 18, 21, 24, 26], "thu": 6, "conflict": [6, 21], "parent": [6, 10, 11, 12, 13, 18], "cidfil": 6, "write": [6, 9, 11, 18, 19, 21, 24, 30], "cmd_arg": 6, "itself": 6, "debug": [6, 7, 18, 19, 21, 26, 28, 30], "syslog": 6, "NOT": [6, 26], "pleas": 6, "conmon_pidfil": 6, "conmon": [6, 21], "separ": [6, 9, 11, 21], "so": 6, "necessari": [6, 11, 21], "cpu_period": 6, "limit": [6, 21], "cpu": [6, 11, 21], "cf": 6, "fair": 6, "schedul": 6, "period": 6, "cpu_quota": 6, "quota": 6, "cpu_rt_period": 6, "real": 6, "microsecond": 6, "": [6, 9, 11, 21, 28], "usag": 6, "flag": [6, 15, 16, 21], "tell": 6, "kernel": [6, 21], "restrict": [6, 18], "cpu_rt_runtim": 6, "amount": 6, "consum": 6, "cpu_shar": [6, 21], "share": [6, 21, 25, 29, 30], "number": [6, 21], "mean": [6, 19, 21], "cpuset_cpu": [6, 21], "3": [6, 7, 9, 11, 21, 26], "cpuset_mem": [6, 21], "node": [6, 21], "mem": 6, "onli": [6, 9, 11, 16, 18, 19, 21, 22, 24], "effect": [6, 21], "numa": [6, 21], "system": [6, 9, 21, 22], "inform": [6, 7, 9, 18, 21, 22, 30], "help": [6, 7, 18, 21, 30], "investig": [6, 7, 18, 21, 30], "delete_depend": 6, "select": [6, 22, 23], "recurs": 6, "appli": 6, "delet": [6, 11, 16, 19, 22], "delete_tim": 6, "second": [6, 9, 21], "wait": 6, "befor": [6, 9, 21], "forcibli": 6, "infinit": 6, "delete_volum": 6, "anonym": 6, "associ": [6, 21], "doe": [6, 8, 9, 11, 12, 13, 21, 23, 24, 27, 30], "mode": [6, 9, 18, 19, 21, 26], "detach_kei": 6, "sequenc": 6, "charact": 6, "ctrl": 6, "permiss": [6, 21], "e": [6, 9, 16, 19, 21, 30], "g": [6, 9, 11, 16, 19, 21, 30], "sdc": 6, "xvdc": 6, "rwm": 6, "device_read_bp": [6, 21], "read": [6, 19, 21], "rate": [6, 21], "byte": [6, 21], "per": [6, 9, 21], "bp": [6, 21], "sda": [6, 21], "1mb": [6, 21], "device_read_iop": 6, "iop": 6, "device_write_bp": [6, 21], "device_write_iop": 6, "dns_server": 6, "custom": [6, 19, 21, 30], "server": [6, 14, 15, 16, 21], "dns_option": 6, "dns_opt": [6, 21], "dns_search": [6, 21], "dns_search_domain": 6, "search": [6, 15, 16, 21], "domain": [6, 21], "don": 6, "t": [6, 21], "wish": 6, "overwrit": 6, "arbitrari": 6, "launch": 6, "env_fil": 6, "delimit": [6, 21], "doesn": [6, 21], "idempot": [6, 9, 11, 30], "chang": [6, 12, 16, 30], "them": [6, 9, 21], "recreat": [6, 18, 19, 21, 26, 30], "present": [6, 11, 17, 18, 20, 21, 25, 26, 29, 30], "actual": 6, "control": [6, 11], "copi": [6, 9, 30], "slurp": 6, "env_host": 6, "current": [6, 18, 19, 22, 26], "etc_host": 6, "add_host": [6, 21], "dict": 6, "ip": [6, 18, 21], "map": [6, 21, 28], "ad": 6, "expos": 6, "exposed_port": 6, "rang": [6, 17, 18, 21], "3300": 6, "3310": 6, "redirect": 6, "force_delet": 6, "force_restart": 6, "generate_systemd": [6, 21], "after": [6, 9, 11, 19, 21], "servic": [6, 9, 21], "container_prefix": [6, 9, 21], "prefix": [6, 9, 11, 21], "instead": [6, 9, 21, 24], "expect": [6, 21], "refer": [6, 9, 21], "more": [6, 9, 11, 21, 22, 24, 27], "no_head": [6, 9, 21], "header": [6, 9, 21], "meta": [6, 9, 21], "data": [6, 7, 9, 10, 11, 12, 13, 21, 22, 25, 26], "timestamp": [6, 9, 21], "pod_prefix": [6, 9, 21], "similar": [6, 9, 21], "stronger": [6, 9, 21], "restart_polici": [6, 9, 21], "polici": [6, 9, 21], "one": [6, 11, 19, 21, 24, 27], "failur": [6, 9, 21], "abnorm": [6, 9, 21], "watchdog": [6, 9, 21], "abort": [6, 9, 21], "restart_sec": [6, 9, 21], "restartsec": [6, 21], "dash": [6, 21], "start_timeout": [6, 9, 21], "timeout": [6, 9, 21], "stop_timeout": [6, 9, 21], "call": [6, 19, 21], "4": [6, 7, 9, 11, 17, 18, 21], "weak": [6, 9, 21], "gidmap": [6, 21], "suppli": [6, 21], "group_add": 6, "alter": 6, "healthcheck_failure_act": 6, "action": 6, "taken": 6, "unhealthi": 6, "none": [6, 21], "kill": [6, 21], "healthcheck_interv": 6, "interv": 6, "result": [6, 11, 21, 30], "timer": 6, "setup": 6, "30": 6, "healthcheck_retri": 6, "retri": 6, "healthcheck_start_period": 6, "initi": 6, "bootstrap": 6, "express": 6, "like": [6, 28], "2m3": 6, "healthcheck_timeout": 6, "maximum": 6, "fail": [6, 16], "1m22": 6, "hooks_dir": 6, "hook": 6, "syntax": 6, "semant": 6, "inject": 6, "5": [6, 24], "http_proxi": 6, "By": [6, 11, 18, 19, 21, 28, 30], "proxi": [6, 11], "https_proxi": 6, "ftp_proxi": 6, "no_proxi": 6, "upper": 6, "case": [6, 16, 18], "those": [6, 18], "tag": [6, 10, 11, 18, 19, 24, 27], "found": [6, 16, 19], "assum": 6, "image_strict": 6, "compar": 6, "take": [6, 9, 11, 18, 21, 30], "account": 6, "full": [6, 9], "image_volum": 6, "how": 6, "handl": 6, "builtin": [6, 9, 28], "ignor": [6, 11, 16], "forward": 6, "signal": 6, "reap": 6, "init_path": 6, "keep": 6, "open": 6, "even": [6, 8, 9, 11, 18, 19, 22, 24, 30], "static": [6, 21], "address": [6, 21], "88": [6, 17, 18], "64": 6, "128": [6, 18], "cni": [6, 17, 18, 19, 21], "join": [6, 18, 19, 21], "were": 6, "anoth": 6, "within": [6, 19], "pool": [6, 10, 11, 13], "16": [6, 11, 17, 18, 21], "ipc": [6, 21], "ipc_mod": 6, "privat": [6, 21], "posix": 6, "sysv": 6, "kernel_memori": 6, "b": [6, 21], "k": [6, 21], "m": [6, 21], "note": [6, 19], "metadata": [6, 21, 30], "label_fil": [6, 21], "log_driv": [6, 19], "log_level": [6, 19], "messag": [6, 12, 19], "abov": [6, 9, 19], "warn": [6, 16, 19], "fatal": [6, 19], "panic": [6, 19], "log_opt": [6, 19], "max_siz": [6, 19], "max": [6, 19], "size": [6, 10, 11, 12, 13, 18, 19], "10mb": [6, 19], "mycontain": [6, 19], "mac_address": [6, 21], "mac": [6, 21], "92": 6, "d0": 6, "c6": 6, "0a": 6, "29": [6, 20], "33": 6, "forget": 6, "ethernet": 6, "10k": 6, "memory_reserv": 6, "100m": 6, "memory_swap": [6, 21], "A": [6, 9, 21, 22], "equal": [6, 21], "plu": [6, 21], "swap": [6, 21], "should": [6, 11, 18, 19], "larger": 6, "doubl": 6, "memory_swappi": 6, "tune": 6, "swappi": 6, "behavior": 6, "100": 6, "filesystem": [6, 8, 12], "destin": [6, 9, 11, 24], "net": [6, 10, 11, 13, 21], "network_mod": 6, "stack": [6, 18], "reus": 6, "defin": [6, 9], "n": 6, "slirp4netn": 6, "rootless": [6, 21], "network_alias": [6, 21], "scope": [6, 9, 21, 29, 30], "alia": [6, 21], "first": [6, 15, 16, 21], "later": 6, "no_host": [6, 21], "oom_kill_dis": 6, "oom": 6, "killer": 6, "oom_score_adj": 6, "prefer": 6, "pid_mod": 6, "pids_limit": 6, "unlimit": 6, "make": 6, "published_port": 6, "hostport": [6, 20], "containerport": [6, 20], "In": 6, "chosen": 6, "randomli": 6, "publish_al": 6, "random": [6, 21], "interfac": [6, 18], "quadlet_dir": [6, 11, 18, 19, 21, 30], "quadlet": [6, 11, 18, 19, 21, 30], "non": [6, 11, 18, 19, 21, 22, 30], "quadlet_filenam": [6, 11, 18, 19, 21, 30], "quadlet_opt": [6, 11, 18, 19, 21, 30], "provid": [6, 11, 18, 19, 21, 30], "miss": [6, 11, 18, 19, 21, 30], "usual": [6, 11, 18, 19, 21, 30], "read_onli": 6, "read_only_tmpf": 6, "tmp": [6, 19, 24], "re": [6, 21], "creation": [6, 21], "max_retri": 6, "indefinit": 6, "until": [6, 22], "count": 6, "hit": 6, "regardless": 6, "restart_tim": 6, "rm": [6, 9, 11, 28], "auto_remov": 6, "explod": 6, "sdnotifi": 6, "notify_socket": 6, "notifi": 6, "opt": [6, 10, 11, 13, 18, 28], "security_opt": 6, "secur": 6, "seccomp": [6, 19], "unconfin": 6, "shm_size": 6, "shm": 6, "greater": 6, "kilobyt": 6, "megabyt": 6, "gigabyt": 6, "omit": 6, "entir": 6, "64m": 6, "sig_proxi": 6, "sent": 6, "sigchld": 6, "sigstop": 6, "sigkil": 6, "absent": [6, 11, 18, 19, 21, 26, 30], "match": [6, 19], "assert": 6, "updat": [6, 18], "cannot": [6, 12, 16], "request": 6, "move": 6, "leav": [6, 19], "stop_sign": 6, "sigterm": 6, "stop_tim": 6, "subgidnam": [6, 21], "subgid": [6, 21], "subuidnam": [6, 21], "subuid": [6, 21], "sysctl": 6, "timezon": 6, "area": 6, "gmt": 6, "well": 6, "zoneinfo": 6, "conf": [6, 15, 16, 19, 21], "rw": 6, "787448k": 6, "1777": 6, "uidmap": [6, 21], "usern": [6, 19, 21], "userns_mod": 6, "podman_usern": [6, 19, 21], "empti": [6, 19, 21], "ut": [6, 21], "dir": [6, 11, 21, 24], "volumes_from": 6, "working_dir": 6, "quai": [6, 10, 11, 13, 14, 15, 16, 30], "bitnami": [6, 10, 11, 13], "wildfli": [6, 10, 11, 13], "mydata": 6, "busybox": 6, "myredi": 6, "appendonli": 6, "ye": 6, "6379": 6, "120": 6, "ainer": 6, "myapplic": 6, "other": [6, 16], "127": [6, 21], "xvda": 6, "8080": [6, 10, 11, 13], "9000": 6, "8081": 6, "9001": 6, "udp": 6, "secret_kei": 6, "ssssh": 6, "boolean_kei": 6, "ubuntu": [6, 10, 13], "14": [6, 10, 13, 26], "04": [6, 11], "sleep": [6, 7, 9], "1d": [6, 7], "balanc": [6, 11], "item": [6, 11], "someus": 6, "anotherappimag": 6, "with_sequ": 6, "ohno": 6, "myservic": 6, "complex": 6, "quot": 6, "certbot": 6, "renew": 6, "deploi": 6, "letsencrypt": 6, "nginx": [6, 7, 10, 11, 24], "80": [6, 10, 13, 21], "www": 6, "html": [6, 28], "autoupd": 6, "wantedbi": [6, 11], "target": [6, 9, 11, 15, 19], "repres": 6, "inspect": [6, 11, 17, 20, 21, 25, 29, 30], "regist": [6, 9, 26, 28], "sinc": [6, 16], "compat": 6, "reason": 6, "directli": 6, "librari": [6, 9, 11], "conmonpidfil": 6, "06": [6, 10, 13, 21, 30], "17t19": 6, "13": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "09": [6, 10, 11, 12, 13], "873858307": 6, "03": [6, 11, 12, 20, 21, 30], "logpath": 6, "container_file_t": 6, "c282": 6, "c782": 6, "container_t": 6, "157518963": 6, "4083": 6, "152479729": 6, "staticdir": 6, "three": 7, "onc": [7, 9], "alpin": [7, 11, 26, 28], "web": 7, "test": [7, 28, 30], "python": 7, "v": 7, "tarbal": [8, 11, 12, 24], "dest": [8, 9, 11, 24], "what": [8, 12, 13, 21, 23, 24, 27, 30], "append": 9, "But": 9, "onlin": 9, "overridden": [9, 15, 16], "man": 9, "page": 9, "wide": 9, "instanc": 9, "replac": 9, "use_nam": 9, "influenc": 9, "indic": [9, 21], "its": [9, 28], "your": [9, 28], "systemctl": 9, "daemon": [9, 11], "reload": 9, "my_contain": 9, "postgr": 9, "ensur": 9, "daemon_reload": 9, "integr": 9, "postgres_loc": 9, "store": [9, 13, 16, 27], "postgres_local_systemd_unit": 9, "postgres_us": 9, "my_app": 9, "postgres_password": 9, "podman_command": 9, "my_webapp": 9, "systemd_unit": 9, "content": [9, 26], "servec": 9, "s\u00e9bastien": 9, "gendr": 9, "cyberfox001": 9, "requir": [10, 11], "architectur": [10, 11, 12, 13], "amd64": [10, 11, 12, 13], "love": [10, 11, 13], "containerconfig": [10, 11, 13], "nami": [10, 11, 13], "foreground": [10, 13], "app": [10, 11, 13], "java": [10, 11, 13], "image_o": [10, 11, 13], "debian": [10, 11, 13], "9": [10, 11, 13, 28], "nami_vers": [10, 11, 13], "gpg_key_servers_list": [10, 11, 13], "ha": [10, 11, 13], "sk": [10, 11, 13], "keyserv": [10, 11, 13], "hkp": [10, 13], "p80": [10, 13], "pgp": [10, 13], "mit": [10, 13], "edu": [10, 13], "tini_vers": [10, 11, 13], "v0": [10, 11, 13], "tini_gpg_kei": [10, 11, 13], "595e85a6b1b4779ea4daaec70b588dff0527a9b7": [10, 11, 13], "gosu_vers": [10, 11, 13], "gosu_gpg_kei": [10, 11, 13], "b42f6819007f00f88e364fd4036a9c25bf357dd4": [10, 11, 13], "bitnami_image_vers": [10, 11, 13], "r12": [10, 13], "bitnami_app_nam": [10, 11, 13], "wildfly_java_hom": [10, 11, 13], "wildfly_java_opt": [10, 11, 13], "wildfly_management_http_port_numb": [10, 11, 13], "9990": [10, 11, 13], "wildfly_password": [10, 11, 13], "wildfly_public_consol": [10, 11, 13], "wildfly_server_ajp_port_numb": [10, 11, 13], "8009": [10, 11, 13], "wildfly_server_http_port_numb": [10, 11, 13], "wildfly_server_interfac": [10, 11, 13], "wildfly_usernam": [10, 11, 13], "wildfly_wildfly_hom": [10, 11, 13], "home": [10, 11, 12, 13, 16, 19, 25, 29, 30], "wildfly_wildfly_opt": [10, 11, 13], "dwildfli": [10, 11, 13], "deploy": [10, 11, 13], "ondemand": [10, 11, 13], "exposedport": [10, 11, 13], "tcp": [10, 11, 13, 20], "maintain": [10, 11, 13], "2018": [10, 13], "25t04": [10, 13], "07": [10, 13, 20], "45": [10, 12, 13], "934395523z": [10, 13], "digest": [10, 11, 12, 13], "sha256": [10, 11, 12, 13], "5c7d8e2dd66dcf4a152a4032a1d3c5a33458c67e1c1335edd8d18d738892356b": [10, 13], "lowerdir": [10, 11, 13], "a9dbf5616cc16919a8ac0dfc60aff87a72b5be52994c4649fcc91a089a12931f": [10, 13], "diff": [10, 11, 12, 13], "67129bd46022122a7d8b7acb490092af6c7ce244ce4fbd7d9e2d2b7f5979e090": [10, 13], "7c51242c4c5db5c74afda76d7fdbeab6965d8b21804bb3fc597dee09c770b0ca": [10, 13], "f97315dc58a9c002ba0cabccb9933d4b0d2113733d204188c88d72f75569b57b": [10, 13], "1dbde2dd497ddde2b467727125b900958a051a72561e58d29abe3d660dcaa9a7": [10, 13], "4aad9d80f30c3f0608f58173558b7554d84dee4dc4479672926eca29f75e6e33": [10, 13], "6751fc9b6868254870c062d75a511543fc8cfda2ce6262f4945f107449219632": [10, 13], "a27034d79081347421dd24d7e9e776c18271cd9a6e51053cb39af4d3d9c400e8": [10, 13], "537cf0045ed9cd7989f7944e7393019c81b16c1799a2198d8348cd182665397f": [10, 13], "27578615c5ae352af4e8449862d61aaf5c11b105a7d5905af55bd01b0c656d6": [10, 13], "566542742840fe3034b3596f7cb9e62a6274c95a69f368f9e713746f8712c0b6": [10, 13], "mergeddir": [10, 11, 13], "72bb96d6c53ad57a0b1e44cab226a6251598accbead40b23fac89c19ad8c25ca": [10, 13], "merg": [10, 11, 13], "upperdir": [10, 11, 12, 13], "bcacbdf7a119c0fa934661ca8af839e625ce6540d9ceb6827cdd389f823d49e0": [10, 13], "manifesttyp": [10, 11, 12, 13], "applic": [10, 11, 12, 13], "vnd": [10, 11, 12, 13], "distribut": [10, 11, 13], "manifest": [10, 11, 12, 13, 24], "v1": [10, 11, 12, 13, 21], "prettyjw": [10, 11, 13], "linux": [10, 11, 12, 13], "repodigest": [10, 11, 12, 13], "repotag": [10, 11, 12, 13], "layer": [10, 11, 12, 13, 24], "75391df2c87e076b0c2f72d20c95c57dc8be7ee684cc07273416cce622b43367": [10, 13], "7dd303f041039bfe8f0833092673ac35f93137d10e0fbc4302021ea65ad57731": [10, 13], "720d9edf0cd2a9bb56b88b80be9070dbfaad359514c70094c65066963fed485d": [10, 13], "6a567ecbf97725501a634fcb486271999aa4591b633b4ae9932a46b40f5aaf47": [10, 13], "59e9a6db8f178f3da868614564faabb2820cdfb69be32e63a4405d6f7772f68c": [10, 13], "310a82ccb092cd650215ab375da8943d235a263af9a029b8ac26a281446c04db": [10, 13], "36cb91cf4513543a8f0953fed785747ea18b675bc2677f3839889cfca0aac79": [10, 13], "569919342": [10, 13], "17": [10, 13], "ce": [10, 13], "virtuals": [10, 11, 12, 13], "sam": [10, 11], "doran": [10, 11], "samdoran": [10, 11], "push": [11, 24], "arch": 11, "auth_fil": 11, "credenti": [11, 16], "build_arg": 11, "buildarg": 11, "pair": [11, 12], "cach": [11, 16], "extra_arg": 11, "containerfil": 11, "context": [11, 19], "force_rm": 11, "intermedi": 11, "unsuccess": 11, "built": [11, 21], "stage": 11, "ca_cert_dir": 11, "tl": [11, 15, 19], "certif": [11, 15, 19], "push_arg": 11, "compress": [11, 24], "transport": [11, 24], "url": 11, "v2s1": 11, "v2s2": [11, 24], "remove_signatur": 11, "discard": 11, "pre": 11, "signatur": 11, "sign_bi": 11, "sign": 11, "attempt": 11, "archiv": [11, 13, 24], "ostre": 11, "without": 11, "validate_cert": 11, "tlsverifi": [11, 15], "tls_verifi": [11, 19], "http": [11, 15, 19, 28], "dure": 11, "0e901e68141f": 11, "basic": 11, "advanc": 11, "function": 11, "my": [11, 19, 26], "cool": 11, "acm": 11, "bug": 11, "vault_registry_password": 11, "loop": 11, "wa": 11, "r27": 11, "bitnami_pkg_chmod": 11, "r": [11, 21], "rwx": 11, "bitnami_pkg_extra_dir": 11, "nami_prefix": 11, "wildfly_hom": 11, "1001": 11, "10t05": 11, "48": 11, "553887623z": 11, "5a8ab28e314c2222de3feaf6dac94a0436a37fc08979d2722c99d2bef2619a9b": 11, "142c1beadf1bb09fbd929465ec98c9dca3256638220450efb4214727d0d0680": 11, "9aa10191f5bddb59e28508e721fdeb43505e5b395845fa99723ed787878dbfea": 11, "histori": [11, 12], "09t22": 11, "27": 11, "40": 11, "659377677z": 11, "38": [11, 12, 30], "53": 11, "86336555z": 11, "created_bi": [11, 12], "nop": [11, 12], "empty_lay": 11, "54": 11, "022778765z": 11, "ace34da54e4af2145e1ad277005adb235a214e4dfe1114c2db9ab460b840f785": 11, "466180019": 11, "18": 11, "gz": 12, "tgz": 12, "bzip": 12, "xz": 12, "txz": 12, "commit_messag": 12, "commit": 12, "src": 12, "bash": 12, "myvolum": 12, "2021": 12, "07t04": 12, "749977105": 12, "8730c75be86a718929a658db4663d487e562d66762": 12, "34": 12, "091": 12, "cbc6d73c4d232db6e8441df96af81855f62c74157b5db80a1d5": 12, "nameshistori": 12, "5882449": 12, "either": [13, 24], "input": 13, "hub": 14, "logged_in": 14, "clelang": [14, 15, 16], "clemen": [14, 15, 16], "lang": [14, 15, 16], "certdir": 15, "crt": [15, 19], "cert": [15, 19], "d": [15, 19], "verifi": [15, 19], "contact": [15, 19], "explicitli": [15, 16, 19], "verif": [15, 19], "unless": [15, 16, 19], "insecur": [15, 19], "p4ssw0rd": 15, "jason": 15, "hiatt": 15, "jthiatt": 15, "michael": 15, "fox": 15, "spmfox": 15, "logout": 16, "howev": 16, "ignore_docker_credenti": 16, "correspond": 16, "kept": 16, "togeth": 16, "cnivers": [17, 18], "podman0": [17, 18], "ipmasq": [17, 18], "ipam": [17, 18], "subnet": [17, 18], "rout": [17, 18], "dst": [17, 18], "isgatewai": [17, 18], "portmap": [17, 18], "iptabl": [17, 18], "firewal": [17, 18], "disable_dn": 18, "ipv4": 18, "ipv6": 18, "interface_nam": 18, "macvlan": 18, "same": [18, 24, 26], "intern": 18, "extern": [18, 22], "ip_rang": 18, "dual": 18, "vlan": 18, "mtu": 18, "traffic": 18, "metric": 18, "everi": 18, "netavark": 18, "vlan_filt": 18, "cidr": 18, "podman_intern": 18, "192": [18, 30], "168": 18, "22": 18, "25": 18, "24": [18, 22], "structur": 19, "describ": [19, 21], "subdirectori": 19, "cert_dir": 19, "client": 19, "configmap": 19, "context_dir": 19, "kube_fil": 19, "quiet": 19, "hide": 19, "seccomp_profile_root": 19, "profil": 19, "kubelet": 19, "kube": 19, "greet": 19, "greet_to": 19, "special_pod": 20, "libpod_par": [20, 21], "2020": [20, 21, 30], "13t20": 20, "572282186": 20, "pod1host": 20, "d9cb6dbb0": 20, "infraconfig": [20, 21], "infraportbind": [20, 21], "7111": 20, "hostip": 20, "7777": 20, "protocol": 20, "makeinfracontain": [20, 21], "lockid": [20, 21], "682": 20, "pod1": [20, 21], "sharescgroup": [20, 21], "sharesipc": [20, 21], "sharesnet": [20, 21], "sharesut": [20, 21], "ad46737bf": 20, "cgrouppath": [20, 21], "infracontainerid": [20, 21], "he": 21, "total": [21, 22], "deleg": 21, "000": 21, "comput": 21, "power": 21, "unlik": 21, "pars": 21, "combin": 21, "w": 21, "mknod": 21, "resolv": 21, "special": 21, "infra": 21, "lightweight": 21, "coordin": 21, "infra_command": 21, "infra_conmon_pidfil": 21, "As": 21, "infra_imag": 21, "gcr": 21, "infra_nam": 21, "kibibyt": 21, "mebibyt": 21, "gibibyt": 21, "assign": 21, "network_alia": 21, "pod_id_fil": 21, "comma": 21, "choos": 21, "unpaus": 21, "wai": 21, "differ": [21, 28], "4444": 21, "5555": 21, "localhost": 21, "pod2": 21, "14t15": 21, "230818767": 21, "newpod": 21, "a5a5c6cdf8c72272fc5c33f787e8d7501e2fa0c1e92b2b602860defdafeeec58": 21, "515": 21, "dc70a947c7ae15198ec38b3c817587584085dee3919cbeb9969e3ab77ba10fd2": 21, "container_filt": 22, "filter": 22, "24h": 22, "possibl": 22, "image_filt": 22, "dangling_onli": 22, "dangl": 22, "network_filt": 22, "unus": 22, "system_al": 22, "system_volum": 22, "volume_filt": 22, "older": 22, "containers_filt": 22, "hour": 22, "ago": 22, "everyth": 22, "reclaim": 22, "space": 22, "roberto": 22, "alfieri": 22, "rebtoor": 22, "runlabel": 23, "get": 23, "continuumio": [23, 27], "miniconda3": [23, 27], "pavel": 23, "dostal": 23, "pdostal": 23, "uncompress": 24, "multi_image_arch": 24, "interpret": 24, "file123": 24, "fedora": 24, "file456": 24, "showsecret": 25, "show": [25, 28], "specific_secret": 25, "createdat": [25, 30], "2024": 25, "28t20": 25, "32": 25, "08": 25, "31857841": 25, "02": 25, "06068c676e9a7f1c7dc0da8dd": 25, "spec": 25, "filedriv": 25, "secret_nam": 25, "updatedat": 25, "unencrypt": 26, "driver_opt": 26, "skip_exist": 26, "remain": 26, "mysecret": 26, "super": 26, "showmysecret": 26, "msg": 26, "aliaksandr": 26, "mianzhynski": 26, "amenzhinski": 26, "target_nam": 27, "miniconda": 27, "christian": 27, "bourqu": 27, "ocafebab": 27, "offici": 28, "doc": 28, "en": 28, "markdown": 28, "become_ex": 28, "privilege_escal": 28, "sudo_become_plugin": 28, "ansible_become_ex": 28, "become_pass": 28, "ansible_become_password": 28, "become_us": 28, "ansible_become_us": 28, "foo": 28, "stat": 28, "test_dir": 28, "own": 28, "ok": 28, "test_host": 28, "1003": 28, "unprivileg": 28, "modifi": 28, "owner": 28, "chmod_foo": 28, "z": 28, "chown": 28, "now": 28, "someth": 28, "completali": 28, "situat": 28, "unaccess": 28, "again": 28, "328679": 28, "become_method": 28, "podman_ushar": 28, "we": 28, "reset": 28, "ownership": 28, "our": 28, "jano": 28, "gerzson": 28, "grz": 28, "specific_volum": 29, "mountpoint": [29, 30], "testvolum": 29, "_data": [29, 30], "tpmf": 30, "due": 30, "volume1": 30, "key2": 30, "value2": 30, "loop1": 30, "ext4": 30, "05t16": 30, "55": 30, "277628769": 30, "variant": 11, "arm": 11, "v7": 11, "setworkingdirectori": 19, "exitcodepropag": 19, "qpod": 21, "sock": 21, "quadlet_volum": 30}, "objects": {"": [[1, 0, 1, "-", "ANSIBLE_BECOME_PASS"], [1, 0, 1, "-", "ANSIBLE_PODMAN_EXECUTABLE"], [1, 0, 1, "-", "ANSIBLE_PODMAN_EXTRA_ARGS"], [1, 0, 1, "-", "ANSIBLE_SUDO_EXE"], [1, 0, 1, "-", "ANSIBLE_SUDO_PASS"], [1, 0, 1, "-", "ANSIBLE_SUDO_USER"]]}, "objtypes": {"0": "std:envvar"}, "objnames": {"0": ["std", "envvar", "environment variable"]}, "titleterms": {"contain": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "podman": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "buildah": 0, "connect": [0, 2, 3], "interact": [0, 3], "an": [0, 3, 27], "exist": [0, 3], "synopsi": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "paramet": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "author": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "collect": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "link": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "index": [1, 2], "all": 1, "environ": 1, "variabl": 1, "descript": 2, "plugin": 2, "modul": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30], "becom": [2, 28], "podman_container_exec": 4, "execut": 4, "command": 4, "run": [4, 23, 28], "requir": [4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30], "note": [4, 5, 9, 10], "exampl": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30], "return": [4, 5, 6, 9, 10, 11, 12, 13, 14, 17, 18, 20, 21, 22, 25, 29, 30], "valu": [4, 5, 6, 9, 10, 11, 12, 13, 14, 17, 18, 20, 21, 22, 25, 29, 30], "podman_container_info": 5, "gather": [5, 10, 17, 20, 25, 29], "fact": 5, "about": [5, 10, 17, 20, 25, 29], "us": [5, 10, 11, 15, 16, 19, 28], "podman_contain": [6, 7], "manag": [6, 7, 18, 21, 26, 30], "batch": 7, "podman_export": 8, "export": 8, "podman_generate_systemd": 9, "gener": 9, "systemd": 9, "unit": 9, "from": [9, 12, 13, 23], "pod": [9, 20, 21], "podman_image_info": 10, "info": [10, 17, 20, 25, 29], "imag": [10, 11, 13, 23, 24, 27], "podman_imag": 11, "pull": 11, "podman_import": 12, "import": 12, "tar": [12, 13, 24], "file": [12, 13, 19, 24], "podman_load": 13, "load": 13, "podman_login_info": 14, "log": [14, 16], "user": 14, "ani": 14, "given": [14, 23], "registri": [14, 15, 16], "podman_login": 15, "login": 15, "podman_logout": 16, "out": 16, "podman_network_info": 17, "network": [17, 18], "podman_network": 18, "podman_plai": 19, "plai": 19, "kubernet": 19, "yaml": 19, "podman_pod_info": 20, "podman_pod": 21, "podman_prun": 22, "allow": 22, "prune": 22, "variou": 22, "object": 22, "podman_runlabel": 23, "label": 23, "podman_sav": 24, "save": 24, "podman_secret_info": 25, "secret": [25, 26], "podman_secret": 26, "podman_tag": 27, "add": 27, "addit": 27, "name": 27, "local": 27, "podman_unshar": 28, "task": 28, "unshar": 28, "podman_volume_info": 29, "volum": [29, 30], "podman_volum": 30}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 57}, "alltitles": {"containers.podman.buildah connection \u2013 Interact with an existing buildah container": [[0, "containers-podman-buildah-connection-interact-with-an-existing-buildah-container"]], "Synopsis": [[0, "synopsis"], [3, "synopsis"], [4, "synopsis"], [5, "synopsis"], [6, "synopsis"], [7, "synopsis"], [8, "synopsis"], [9, "synopsis"], [10, "synopsis"], [11, "synopsis"], [12, "synopsis"], [13, "synopsis"], [14, "synopsis"], [15, "synopsis"], [16, "synopsis"], [17, "synopsis"], [18, "synopsis"], [19, "synopsis"], [20, "synopsis"], [21, "synopsis"], [22, "synopsis"], [23, "synopsis"], [24, "synopsis"], [25, "synopsis"], [26, "synopsis"], [27, "synopsis"], [28, "synopsis"], [29, "synopsis"], [30, "synopsis"]], "Parameters": [[0, "parameters"], [3, "parameters"], [4, "parameters"], [5, "parameters"], [6, "parameters"], [7, "parameters"], [8, "parameters"], [9, "parameters"], [10, "parameters"], [11, "parameters"], [12, "parameters"], [13, "parameters"], [14, "parameters"], [15, "parameters"], [16, "parameters"], [17, "parameters"], [18, "parameters"], [19, "parameters"], [20, "parameters"], [21, "parameters"], [22, "parameters"], [23, "parameters"], [24, "parameters"], [25, "parameters"], [26, "parameters"], [27, "parameters"], [28, "parameters"], [29, "parameters"], [30, "parameters"]], "Authors": [[0, "authors"], [3, "authors"], [4, "authors"], [5, "authors"], [6, "authors"], [7, "authors"], [8, "authors"], [9, "authors"], [10, "authors"], [11, "authors"], [12, "authors"], [13, "authors"], [14, "authors"], [15, "authors"], [16, "authors"], [17, "authors"], [18, "authors"], [19, "authors"], [20, "authors"], [21, "authors"], [22, "authors"], [23, "authors"], [24, "authors"], [25, "authors"], [26, "authors"], [27, "authors"], [28, "authors"], [29, "authors"], [30, "authors"]], "Collection links": [[0, "collection-links"], [3, "collection-links"], [4, "collection-links"], [5, "collection-links"], [6, "collection-links"], [7, "collection-links"], [8, "collection-links"], [9, "collection-links"], [10, "collection-links"], [11, "collection-links"], [12, "collection-links"], [13, "collection-links"], [14, "collection-links"], [15, "collection-links"], [16, "collection-links"], [17, "collection-links"], [18, "collection-links"], [19, "collection-links"], [20, "collection-links"], [21, "collection-links"], [22, "collection-links"], [23, "collection-links"], [24, "collection-links"], [25, "collection-links"], [26, "collection-links"], [27, "collection-links"], [28, "collection-links"], [29, "collection-links"], [30, "collection-links"]], "Index of all Collection Environment Variables": [[1, "index-of-all-collection-environment-variables"]], "Containers.Podman": [[2, "containers-podman"]], "Description": [[2, "description"]], "Plugin Index": [[2, "plugin-index"]], "Modules": [[2, "modules"]], "Become Plugins": [[2, "become-plugins"]], "Connection Plugins": [[2, "connection-plugins"]], "containers.podman.podman connection \u2013 Interact with an existing podman container": [[3, "containers-podman-podman-connection-interact-with-an-existing-podman-container"]], "containers.podman.podman_container_exec module \u2013 Executes a command in a running container.": [[4, "containers-podman-podman-container-exec-module-executes-a-command-in-a-running-container"]], "Requirements": [[4, "requirements"], [5, "requirements"], [6, "requirements"], [7, "requirements"], [8, "requirements"], [9, "requirements"], [12, "requirements"], [13, "requirements"], [14, "requirements"], [15, "requirements"], [16, "requirements"], [17, "requirements"], [18, "requirements"], [19, "requirements"], [20, "requirements"], [21, "requirements"], [22, "requirements"], [23, "requirements"], [24, "requirements"], [25, "requirements"], [26, "requirements"], [27, "requirements"], [29, "requirements"], [30, "requirements"]], "Notes": [[4, "notes"], [5, "notes"], [9, "notes"], [10, "notes"]], "Examples": [[4, "examples"], [5, "examples"], [6, "examples"], [7, "examples"], [8, "examples"], [9, "examples"], [10, "examples"], [11, "examples"], [12, "examples"], [13, "examples"], [14, "examples"], [15, "examples"], [16, "examples"], [17, "examples"], [18, "examples"], [19, "examples"], [20, "examples"], [21, "examples"], [22, "examples"], [23, "examples"], [24, "examples"], [25, "examples"], [26, "examples"], [27, "examples"], [28, "examples"], [29, "examples"], [30, "examples"]], "Return Values": [[4, "return-values"], [5, "return-values"], [6, "return-values"], [9, "return-values"], [10, "return-values"], [11, "return-values"], [12, "return-values"], [13, "return-values"], [14, "return-values"], [17, "return-values"], [18, "return-values"], [20, "return-values"], [21, "return-values"], [22, "return-values"], [25, "return-values"], [29, "return-values"], [30, "return-values"]], "containers.podman.podman_container_info module \u2013 Gather facts about containers using podman": [[5, "containers-podman-podman-container-info-module-gather-facts-about-containers-using-podman"]], "containers.podman.podman_container module \u2013 Manage podman containers": [[6, "containers-podman-podman-container-module-manage-podman-containers"]], "containers.podman.podman_containers module \u2013 Manage podman containers in a batch": [[7, "containers-podman-podman-containers-module-manage-podman-containers-in-a-batch"]], "containers.podman.podman_export module \u2013 Export a podman container": [[8, "containers-podman-podman-export-module-export-a-podman-container"]], "containers.podman.podman_generate_systemd module \u2013 Generate systemd unit from a pod or a container": [[9, "containers-podman-podman-generate-systemd-module-generate-systemd-unit-from-a-pod-or-a-container"]], "containers.podman.podman_image_info module \u2013 Gather info about images using podman": [[10, "containers-podman-podman-image-info-module-gather-info-about-images-using-podman"]], "containers.podman.podman_image module \u2013 Pull images for use by podman": [[11, "containers-podman-podman-image-module-pull-images-for-use-by-podman"]], "containers.podman.podman_import module \u2013 Import Podman container from a tar file.": [[12, "containers-podman-podman-import-module-import-podman-container-from-a-tar-file"]], "containers.podman.podman_load module \u2013 Load image from a tar file.": [[13, "containers-podman-podman-load-module-load-image-from-a-tar-file"]], "containers.podman.podman_login_info module \u2013 Return the logged-in user if any for a given registry": [[14, "containers-podman-podman-login-info-module-return-the-logged-in-user-if-any-for-a-given-registry"]], "containers.podman.podman_login module \u2013 Login to a container registry using podman": [[15, "containers-podman-podman-login-module-login-to-a-container-registry-using-podman"]], "containers.podman.podman_logout module \u2013 Log out of a container registry using podman": [[16, "containers-podman-podman-logout-module-log-out-of-a-container-registry-using-podman"]], "containers.podman.podman_network_info module \u2013 Gather info about podman networks": [[17, "containers-podman-podman-network-info-module-gather-info-about-podman-networks"]], "containers.podman.podman_network module \u2013 Manage podman networks": [[18, "containers-podman-podman-network-module-manage-podman-networks"]], "containers.podman.podman_play module \u2013 Play kubernetes YAML file using podman": [[19, "containers-podman-podman-play-module-play-kubernetes-yaml-file-using-podman"]], "containers.podman.podman_pod_info module \u2013 Gather info about podman pods": [[20, "containers-podman-podman-pod-info-module-gather-info-about-podman-pods"]], "containers.podman.podman_pod module \u2013 Manage Podman pods": [[21, "containers-podman-podman-pod-module-manage-podman-pods"]], "containers.podman.podman_prune module \u2013 Allows to prune various podman objects": [[22, "containers-podman-podman-prune-module-allows-to-prune-various-podman-objects"]], "containers.podman.podman_runlabel module \u2013 Run given label from given image": [[23, "containers-podman-podman-runlabel-module-run-given-label-from-given-image"]], "containers.podman.podman_save module \u2013 Saves podman image to tar file": [[24, "containers-podman-podman-save-module-saves-podman-image-to-tar-file"]], "containers.podman.podman_secret_info module \u2013 Gather info about podman secrets": [[25, "containers-podman-podman-secret-info-module-gather-info-about-podman-secrets"]], "containers.podman.podman_secret module \u2013 Manage podman secrets": [[26, "containers-podman-podman-secret-module-manage-podman-secrets"]], "containers.podman.podman_tag module \u2013 Add an additional name to a local image": [[27, "containers-podman-podman-tag-module-add-an-additional-name-to-a-local-image"]], "containers.podman.podman_unshare become \u2013 Run tasks using podman unshare": [[28, "containers-podman-podman-unshare-become-run-tasks-using-podman-unshare"]], "containers.podman.podman_volume_info module \u2013 Gather info about podman volumes": [[29, "containers-podman-podman-volume-info-module-gather-info-about-podman-volumes"]], "containers.podman.podman_volume module \u2013 Manage Podman volumes": [[30, "containers-podman-podman-volume-module-manage-podman-volumes"]]}, "indexentries": {"ansible_remote_user": [[0, "index-0"], [3, "index-2"]], "environment variable": [[0, "index-0"], [1, "envvar-ANSIBLE_BECOME_PASS"], [1, "envvar-ANSIBLE_PODMAN_EXECUTABLE"], [1, "envvar-ANSIBLE_PODMAN_EXTRA_ARGS"], [1, "envvar-ANSIBLE_SUDO_EXE"], [1, "envvar-ANSIBLE_SUDO_PASS"], [1, "envvar-ANSIBLE_SUDO_USER"], [3, "index-0"], [3, "index-1"], [3, "index-2"], [28, "index-0"], [28, "index-1"], [28, "index-2"], [28, "index-3"], [28, "index-4"], [28, "index-5"]], "ansible_become_pass": [[1, "envvar-ANSIBLE_BECOME_PASS"], [28, "index-2"]], "ansible_podman_executable": [[1, "envvar-ANSIBLE_PODMAN_EXECUTABLE"], [3, "index-0"]], "ansible_podman_extra_args": [[1, "envvar-ANSIBLE_PODMAN_EXTRA_ARGS"], [3, "index-1"]], "ansible_sudo_exe": [[1, "envvar-ANSIBLE_SUDO_EXE"], [28, "index-1"]], "ansible_sudo_pass": [[1, "envvar-ANSIBLE_SUDO_PASS"], [28, "index-3"]], "ansible_sudo_user": [[1, "envvar-ANSIBLE_SUDO_USER"], [28, "index-5"]], "ansible_become_exe": [[28, "index-0"]], "ansible_become_user": [[28, "index-4"]]}}) \ No newline at end of file diff --git a/galaxy.yml b/galaxy.yml index 760dccd9..da9cc089 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: containers name: podman -version: 1.12.1 +version: 1.13.0 readme: README.md authors: - Sagi Shnaidman diff --git a/plugins/modules/podman_network.py b/plugins/modules/podman_network.py index 1d521d03..37bfefed 100644 --- a/plugins/modules/podman_network.py +++ b/plugins/modules/podman_network.py @@ -174,7 +174,7 @@ state: quadlet quadlet_options: - IPv6=true - - Label=”ipv6 network” + - Label="ipv6 network" """ RETURN = r"""