-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
724 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"""Molecule Podman Driver.""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"molecule_directory": "molecule", | ||
"role_name": "OVERRIDDEN", | ||
"scenario_name": "OVERRIDDEN" | ||
} |
12 changes: 12 additions & 0 deletions
12
...kiecutter/{{cookiecutter.molecule_directory}}/{{cookiecutter.scenario_name}}/converge.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
- name: Converge | ||
hosts: all | ||
tasks: | ||
# replace these tasks with whatever you find suitable to test | ||
- name: Copy something to test use of synchronize module | ||
ansible.builtin.copy: | ||
src: /etc/hosts | ||
dest: /tmp/hosts-from-controller | ||
- name: "Include {{ cookiecutter.role_name }}" | ||
ansible.builtin.include_role: | ||
name: "{{ cookiecutter.role_name }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,247 @@ | ||
# Copyright (c) 2015-2018 Cisco Systems, Inc. | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to | ||
# deal in the Software without restriction, including without limitation the | ||
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | ||
# sell copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in | ||
# all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
# DEALINGS IN THE SOFTWARE. | ||
"""Podman Driver Module.""" | ||
|
||
from __future__ import absolute_import | ||
|
||
import os | ||
import warnings | ||
from shutil import which | ||
from typing import Dict | ||
|
||
from ansible_compat.runtime import Runtime | ||
from molecule import logger, util | ||
from molecule.api import Driver, MoleculeRuntimeWarning | ||
from molecule.constants import RC_SETUP_ERROR | ||
from molecule.util import sysexit_with_message | ||
from packaging.version import Version | ||
|
||
log = logger.get_logger(__name__) | ||
|
||
|
||
class Podman(Driver): | ||
""" | ||
The class responsible for managing `Podman`_ containers. | ||
`Podman`_ is not default driver used in Molecule. | ||
Molecule uses Podman ansible connector and podman CLI while mapping | ||
variables from ``molecule.yml`` into ``create.yml`` and ``destroy.yml``. | ||
.. _`podman connection`: https://docs.ansible.com/ansible/latest/plugins/connection/podman.html | ||
.. code-block:: yaml | ||
driver: | ||
name: podman | ||
platforms: | ||
- name: instance | ||
hostname: instance | ||
image: image_name:tag | ||
dockerfile: Dockerfile.j2 | ||
pull: True|False | ||
pre_build_image: True|False | ||
registry: | ||
url: registry.example.com | ||
credentials: | ||
username: $USERNAME | ||
password: $PASSWORD | ||
override_command: True|False | ||
command: sleep infinity | ||
tty: True|False | ||
pid_mode: host | ||
privileged: True|False | ||
security_opts: | ||
- seccomp=unconfined | ||
devices: | ||
- /dev/sdc:/dev/xvdc:rwm | ||
volumes: | ||
- /sys/fs/cgroup:/sys/fs/cgroup:ro | ||
tmpfs: | ||
- /tmp | ||
- /run | ||
capabilities: | ||
- SYS_ADMIN | ||
exposed_ports: | ||
- 53/udp | ||
- 53/tcp | ||
published_ports: | ||
- 0.0.0.0:8053:53/udp | ||
- 0.0.0.0:8053:53/tcp | ||
ulimits: | ||
- nofile=1024:1028 | ||
dns_servers: | ||
- 8.8.8.8 | ||
network: host | ||
etc_hosts: {'host1.example.com': '10.3.1.5'} | ||
cert_path: /foo/bar/cert.pem | ||
tls_verify: true | ||
env: | ||
FOO: bar | ||
restart_policy: on-failure | ||
restart_retries: 1 | ||
buildargs: | ||
http_proxy: http://proxy.example.com:8080/ | ||
cgroup_manager: cgroupfs | ||
storage_opt: overlay.mount_program=/usr/bin/fuse-overlayfs | ||
storage_driver: overlay | ||
systemd: true|false|always | ||
extra_opts: | ||
- --memory=128m | ||
If specifying the `CMD`_ directive in your ``Dockerfile.j2`` or consuming a | ||
built image which declares a ``CMD`` directive, then you must set | ||
``override_command: False``. Otherwise, Molecule takes care to honour the | ||
value of the ``command`` key or uses the default of ``bash -c "while true; | ||
do sleep 10000; done"`` to run the container until it is provisioned. | ||
When attempting to utilize a container image with `systemd`_ as your init | ||
system inside the container to simulate a real machine, make sure to set | ||
the ``privileged``, ``command``, and ``environment`` values. An example | ||
using the ``centos:8`` image is below: | ||
.. note:: Do note that running containers in privileged mode is considerably | ||
less secure. | ||
.. code-block:: yaml | ||
platforms: | ||
- name: instance | ||
image: centos:8 | ||
privileged: true | ||
command: "/usr/sbin/init" | ||
tty: True | ||
.. code-block:: bash | ||
$ python3 -m pip install molecule[podman] | ||
When pulling from a private registry, it is the user's discretion to decide | ||
whether to use hard-code strings or environment variables for passing | ||
credentials to molecule. | ||
.. important:: | ||
Hard-coded credentials in ``molecule.yml`` should be avoided, instead use | ||
`variable substitution`_. | ||
Provide a list of files Molecule will preserve, relative to the scenario | ||
ephemeral directory, after any ``destroy`` subcommand execution. | ||
.. code-block:: yaml | ||
driver: | ||
name: podman | ||
safe_files: | ||
- foo | ||
.. _`Podman`: https://podman.io/ | ||
.. _`systemd`: https://www.freedesktop.org/wiki/Software/systemd/ | ||
.. _`CMD`: https://docs.docker.com/engine/reference/builder/#cmd | ||
""" # noqa | ||
|
||
def __init__(self, config=None): | ||
"""Construct Podman.""" | ||
super().__init__(config) | ||
self._name = "podman" | ||
# To change the podman executable, set environment variable | ||
# MOLECULE_PODMAN_EXECUTABLE | ||
# An example could be MOLECULE_PODMAN_EXECUTABLE=podman-remote | ||
self.podman_exec = os.environ.get("MOLECULE_PODMAN_EXECUTABLE", "podman") | ||
self._podman_cmd = None | ||
self._sanity_passed = False | ||
|
||
@property | ||
def podman_cmd(self): | ||
"""Lazily calculate the podman command.""" | ||
if not self._podman_cmd: | ||
self._podman_cmd = which(self.podman_exec) | ||
if not self._podman_cmd: | ||
msg = f"command not found in PATH {self.podman_exec}" | ||
util.sysexit_with_message(msg) | ||
return self._podman_cmd | ||
|
||
@property | ||
def name(self): | ||
return self._name | ||
|
||
@name.setter | ||
def name(self, value): | ||
self._name = value | ||
|
||
@property | ||
def login_cmd_template(self): | ||
return ( | ||
f"{self.podman_cmd} exec " | ||
"-e COLUMNS={columns} " | ||
"-e LINES={lines} " | ||
"-e SHELL=bash " | ||
"-e TERM=xterm " | ||
"-ti {instance} bash" | ||
) | ||
|
||
@property | ||
def default_safe_files(self): | ||
return [os.path.join(self._config.scenario.ephemeral_directory, "Dockerfile")] | ||
|
||
@property | ||
def default_ssh_connection_options(self): | ||
return [] | ||
|
||
def login_options(self, instance_name): | ||
return {"instance": instance_name} | ||
|
||
def ansible_connection_options(self, instance_name): | ||
return { | ||
"ansible_connection": "podman", | ||
"ansible_podman_executable": f"{self.podman_exec}", | ||
} | ||
|
||
def sanity_checks(self): | ||
"""Implement Podman driver sanity checks.""" | ||
if self._sanity_passed: | ||
return | ||
|
||
log.info("Sanity checks: '%s'", self._name) | ||
# TODO(ssbarnea): reuse ansible runtime instance from molecule once it | ||
# fully adopts ansible-compat | ||
runtime = Runtime() | ||
if runtime.version < Version("2.10.0"): | ||
|
||
if runtime.config.ansible_pipelining: | ||
sysexit_with_message( | ||
"Podman connections do not work with Ansible " | ||
f"{runtime.version} when pipelining is enabled. " | ||
"Disable pipelining or " | ||
"upgrade Ansible to 2.11 or newer.", | ||
code=RC_SETUP_ERROR, | ||
) | ||
warnings.warn( | ||
f"Use of molecule-podman with Ansible {runtime.version} is " | ||
"unsupported, upgrade to Ansible 2.11 or newer. " | ||
"Do not raise any bugs if your tests are failing with current configuration.", | ||
category=MoleculeRuntimeWarning, | ||
) | ||
self._sanity_passed = True | ||
|
||
@property | ||
def required_collections(self) -> Dict[str, str]: | ||
"""Return collections dict containing names and versions required.""" | ||
return {"containers.podman": "1.7.0", "ansible.posix": "1.3.0"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Molecule managed | ||
|
||
{% if item.registry is defined %} | ||
FROM {{ item.registry.url }}/{{ item.image }} | ||
{% else %} | ||
FROM {{ item.image }} | ||
{% endif %} | ||
|
||
{% if item.env is defined %} | ||
{% for var, value in item.env.items() %} | ||
{% if value %} | ||
ENV {{ var }} {{ value }} | ||
{% endif %} | ||
{% endfor %} | ||
{% endif %} | ||
|
||
RUN if [ $(command -v apt-get) ]; then export DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get install -y python3 sudo bash ca-certificates iproute2 python3-apt aptitude && apt-get clean && rm -rf /var/lib/apt/lists/*; \ | ||
elif [ $(command -v dnf) ]; then dnf makecache && dnf --assumeyes install /usr/bin/python3 /usr/bin/python3-config /usr/bin/dnf-3 sudo bash iproute && dnf clean all; \ | ||
elif [ $(command -v yum) ]; then yum makecache fast && yum install -y /usr/bin/python /usr/bin/python2-config sudo yum-plugin-ovl bash iproute && sed -i 's/plugins=0/plugins=1/g' /etc/yum.conf && yum clean all; \ | ||
elif [ $(command -v zypper) ]; then zypper refresh && zypper install -y python3 sudo bash iproute2 && zypper clean -a; \ | ||
elif [ $(command -v apk) ]; then apk update && apk add --no-cache python3 sudo bash ca-certificates; \ | ||
elif [ $(command -v xbps-install) ]; then xbps-install -Syu && xbps-install -y python3 sudo bash ca-certificates iproute2 && xbps-remove -O; fi |
Oops, something went wrong.