/usr/lib/python3.6/site-packages/cloudinit/config
NameSizeModeActions
schemas/-0755rm
__pycache__/-0755rm
cc_ansible.py88940644editdlrm
cc_apk_configure.py57920644editdlrm
cc_apt_configure.py429950644editdlrm
cc_apt_pipelining.py27710644editdlrm
cc_bootcmd.py29210644editdlrm
cc_byobu.py37380644editdlrm
cc_ca_certs.py93470644editdlrm
cc_chef.py141020644editdlrm
cc_disable_ec2_metadata.py20740644editdlrm
cc_disk_setup.py331360644editdlrm
cc_fan.py30930644editdlrm
cc_final_message.py34700644editdlrm
cc_growpart.py215380644editdlrm
cc_grub_dpkg.py68120644editdlrm
cc_install_hotplug.py39040644editdlrm
cc_keyboard.py24390644editdlrm
cc_keys_to_console.py36940644editdlrm
cc_landscape.py54330644editdlrm
cc_locale.py19030644editdlrm
cc_lxd.py185800644editdlrm
cc_mcollective.py62510644editdlrm
cc_migrator.py35690644editdlrm
cc_mounts.py201860644editdlrm
cc_ntp.py213410644editdlrm
cc_package_update_upgrade_install.py46520644editdlrm
cc_phone_home.py56150644editdlrm
cc_power_state_change.py75910644editdlrm
cc_puppet.py144350644editdlrm
cc_reset_rmc.py45750644editdlrm
cc_resizefs.py109830644editdlrm
cc_resolv_conf.py51030644editdlrm
cc_rh_subscription.py173780644editdlrm
cc_rightscale_userdata.py43870644editdlrm
cc_rsyslog.py138000644editdlrm
cc_runcmd.py29740644editdlrm
cc_salt_minion.py60220644editdlrm
cc_scripts_per_boot.py16970644editdlrm
cc_scripts_per_instance.py18520644editdlrm
cc_scripts_per_once.py18030644editdlrm
cc_scripts_user.py18930644editdlrm
cc_scripts_vendor.py23470644editdlrm
cc_seed_random.py48370644editdlrm
cc_set_hostname.py52540644editdlrm
cc_set_passwords.py112340644editdlrm
cc_snap.py64480644editdlrm
cc_spacewalk.py35140644editdlrm
cc_ssh.py152160644editdlrm
cc_ssh_authkey_fingerprints.py43180644editdlrm
cc_ssh_import_id.py62640644editdlrm
cc_timezone.py14920644editdlrm
cc_ubuntu_advantage.py174110644editdlrm
cc_ubuntu_autoinstall.py46040644editdlrm
cc_ubuntu_drivers.py46680644editdlrm
cc_update_etc_hosts.py52830644editdlrm
cc_update_hostname.py39630644editdlrm
cc_users_groups.py87770644editdlrm
cc_wireguard.py94390644editdlrm
cc_write_files.py68190644editdlrm
cc_write_files_deferred.py17210644editdlrm
cc_yum_add_repo.py76330644editdlrm
cc_zypper_add_repo.py67490644editdlrm
modules.py120190644editdlrm
schema.py561650644editdlrm
__init__.py140644editdlrm
Edit: /usr/lib/python3.6/site-packages/cloudinit/config/cc_ansible.py (8894B)
"""ansible enables running on first boot either ansible-pull""" import abc import logging import os import re import sys import sysconfig from copy import deepcopy from textwrap import dedent from typing import Optional from cloudinit.cloud import Cloud from cloudinit.config import Config from cloudinit.config.schema import MetaSchema, get_meta_doc from cloudinit.distros import ALL_DISTROS, Distro from cloudinit.settings import PER_INSTANCE from cloudinit.subp import subp, which from cloudinit.util import Version, get_cfg_by_path meta: MetaSchema = { "id": "cc_ansible", "name": "Ansible", "title": "Configure ansible for instance", "frequency": PER_INSTANCE, "distros": [ALL_DISTROS], "activate_by_schema_keys": ["ansible"], "description": dedent( """\ This module provides ``ansible`` integration for augmenting cloud-init's configuration of the local node. This module installs ansible during boot and then uses ``ansible-pull`` to run the playbook repository at the remote URL. """ ), "examples": [ dedent( """\ ansible: package_name: ansible-core install_method: distro pull: url: "https://github.com/holmanb/vmboot.git" playbook_name: ubuntu.yml """ ), dedent( """\ ansible: package_name: ansible-core install_method: pip pull: url: "https://github.com/holmanb/vmboot.git" playbook_name: ubuntu.yml """ ), ], } __doc__ = get_meta_doc(meta) LOG = logging.getLogger(__name__) CFG_OVERRIDE = "ansible_config" class AnsiblePull(abc.ABC): def __init__(self, distro: Distro): self.cmd_pull = ["ansible-pull"] self.cmd_version = ["ansible-pull", "--version"] self.distro = distro self.env = os.environ self.run_user: Optional[str] = None # some ansible modules directly reference os.environ["HOME"] # and cloud-init might not have that set, default: /root self.env["HOME"] = self.env.get("HOME", "/root") def get_version(self) -> Optional[Version]: stdout, _ = self.do_as(self.cmd_version) first_line = stdout.splitlines().pop(0) matches = re.search(r"([\d\.]+)", first_line) if matches: version = matches.group(0) return Version.from_str(version) return None def pull(self, *args) -> str: stdout, _ = self.do_as([*self.cmd_pull, *args]) return stdout def check_deps(self): if not self.is_installed(): raise ValueError("command: ansible is not installed") def do_as(self, command: list, **kwargs): if not self.run_user: return self.subp(command, **kwargs) return self.distro.do_as(command, self.run_user, **kwargs) def subp(self, command, **kwargs): return subp(command, env=self.env, **kwargs) @abc.abstractmethod def is_installed(self): pass @abc.abstractmethod def install(self, pkg_name: str): pass class AnsiblePullPip(AnsiblePull): def __init__(self, distro: Distro, user: Optional[str]): super().__init__(distro) self.run_user = user # Add pip install site to PATH user_base, _ = self.do_as( [sys.executable, "-c", "'import site; print(site.getuserbase())'"] ) ansible_path = f"{user_base}/bin/" old_path = self.env.get("PATH") if old_path: self.env["PATH"] = ":".join([old_path, ansible_path]) else: self.env["PATH"] = ansible_path def install(self, pkg_name: str): """should cloud-init grow an interface for non-distro package managers? this seems reusable """ if not self.is_installed(): # bootstrap pip if required try: import pip # noqa: F401 except ImportError: self.distro.install_packages([self.distro.pip_package_name]) cmd = [ sys.executable, "-m", "pip", "install", ] if os.path.exists( os.path.join( sysconfig.get_path("stdlib"), "EXTERNALLY-MANAGED" ) ): cmd.append("--break-system-packages") if self.run_user: cmd.append("--user") self.do_as([*cmd, "--upgrade", "pip"]) self.do_as([*cmd, pkg_name]) def is_installed(self) -> bool: stdout, _ = self.do_as([sys.executable, "-m", "pip", "list"]) return "ansible" in stdout class AnsiblePullDistro(AnsiblePull): def install(self, pkg_name: str): if not self.is_installed(): self.distro.install_packages([pkg_name]) def is_installed(self) -> bool: return bool(which("ansible")) def handle(name: str, cfg: Config, cloud: Cloud, args: list) -> None: ansible_cfg: dict = cfg.get("ansible", {}) ansible_user = ansible_cfg.get("run_user") install_method = ansible_cfg.get("install_method") setup_controller = ansible_cfg.get("setup_controller") galaxy_cfg = ansible_cfg.get("galaxy") pull_cfg = ansible_cfg.get("pull") package_name = ansible_cfg.get("package_name", "") if ansible_cfg: ansible: AnsiblePull validate_config(ansible_cfg) distro: Distro = cloud.distro if install_method == "pip": ansible = AnsiblePullPip(distro, ansible_user) else: ansible = AnsiblePullDistro(distro) ansible.install(package_name) ansible.check_deps() ansible_config = ansible_cfg.get("ansible_config", "") if ansible_config: ansible.env[CFG_OVERRIDE] = ansible_config if galaxy_cfg: ansible_galaxy(galaxy_cfg, ansible) if pull_cfg: run_ansible_pull(ansible, deepcopy(pull_cfg)) if setup_controller: ansible_controller(setup_controller, ansible) def validate_config(cfg: dict): required_keys = ( "install_method", "package_name", ) for key in required_keys: if not get_cfg_by_path(cfg, key): raise ValueError(f"Missing required key '{key}' from {cfg}") if cfg.get("pull"): for key in "pull/url", "pull/playbook_name": if not get_cfg_by_path(cfg, key): raise ValueError(f"Missing required key '{key}' from {cfg}") controller_cfg = cfg.get("setup_controller") if controller_cfg: if not any( [ controller_cfg.get("repositories"), controller_cfg.get("run_ansible"), ] ): raise ValueError(f"Missing required key from {controller_cfg}") install = cfg["install_method"] if install not in ("pip", "distro"): raise ValueError("Invalid install method {install}") def filter_args(cfg: dict) -> dict: """remove boolean false values""" return { key.replace("_", "-"): value for (key, value) in cfg.items() if value is not False } def run_ansible_pull(pull: AnsiblePull, cfg: dict): playbook_name: str = cfg.pop("playbook_name") v = pull.get_version() if not v: LOG.warning("Cannot parse ansible version") elif v < Version(2, 7, 0): # diff was added in commit edaa0b52450ade9b86b5f63097ce18ebb147f46f if cfg.get("diff"): raise ValueError( f"Ansible version {v.major}.{v.minor}.{v.patch}" "doesn't support --diff flag, exiting." ) stdout = pull.pull( *[ f"--{key}={value}" if value is not True else f"--{key}" for key, value in filter_args(cfg).items() ], playbook_name, ) if stdout: sys.stdout.write(f"{stdout}") def ansible_galaxy(cfg: dict, ansible: AnsiblePull): actions = cfg.get("actions", []) if not actions: LOG.warning("Invalid config: %s", cfg) for command in actions: ansible.do_as(command) def ansible_controller(cfg: dict, ansible: AnsiblePull): for repository in cfg.get("repositories", []): ansible.do_as( ["git", "clone", repository["source"], repository["path"]] ) for args in cfg.get("run_ansible", []): playbook_dir = args.pop("playbook_dir") playbook_name = args.pop("playbook_name") command = [ "ansible-playbook", playbook_name, *[f"--{key}={value}" for key, value in filter_args(args).items()], ] ansible.do_as(command, cwd=playbook_dir)