CloudBender/cloudbender/cli.py

437 lines
12 KiB
Python
Raw Normal View History

2018-11-22 18:31:59 +00:00
import os
import sys
2018-11-22 18:31:59 +00:00
import click
import functools
import re
2018-11-22 18:31:59 +00:00
2018-12-10 17:58:54 +00:00
from concurrent.futures import ThreadPoolExecutor, as_completed
2018-11-22 18:31:59 +00:00
from . import __version__
from .core import CloudBender
from .utils import setup_logging
from .exceptions import InvalidProjectDir
2018-11-22 18:31:59 +00:00
import logging
2022-02-22 10:04:29 +00:00
2018-11-22 18:31:59 +00:00
logger = logging.getLogger(__name__)
2018-11-22 18:31:59 +00:00
@click.group()
@click.version_option(version=__version__, prog_name="CloudBender")
@click.option("--debug", is_flag=True, help="Turn on debug logging.")
@click.option("--dir", "directory", help="Specify cloudbender project directory.")
@click.pass_context
def cli(ctx, debug, directory):
setup_logging(debug)
2018-11-22 18:31:59 +00:00
2019-07-05 11:02:10 +00:00
# Make sure our root is abs
if directory:
if not os.path.isabs(directory):
directory = os.path.normpath(os.path.join(os.getcwd(), directory))
2022-02-22 10:04:29 +00:00
elif os.getenv("CLOUDBENDER_PROJECT_ROOT"):
directory = os.getenv("CLOUDBENDER_PROJECT_ROOT")
2019-07-05 11:02:10 +00:00
else:
directory = os.getcwd()
2018-11-22 18:31:59 +00:00
# Read global config
try:
cb = CloudBender(directory)
except InvalidProjectDir as e:
2021-09-20 14:19:14 +00:00
logger.error(e)
sys.exit(1)
2018-11-22 18:31:59 +00:00
cb.read_config()
cb.dump_config()
2019-02-08 10:51:44 +00:00
ctx.obj = cb
2018-11-22 18:31:59 +00:00
@click.command()
@click.argument("stack_names", nargs=-1)
2018-11-22 18:31:59 +00:00
@click.option("--multi", is_flag=True, help="Allow more than one stack to match")
2019-02-08 10:51:44 +00:00
@click.pass_obj
def render(cb, stack_names, multi):
2022-02-22 10:04:29 +00:00
"""Renders template and its parameters - CFN only"""
2018-11-22 18:31:59 +00:00
2019-02-08 10:51:44 +00:00
stacks = _find_stacks(cb, stack_names, multi)
_render(stacks)
2018-11-22 18:31:59 +00:00
@click.command()
@click.argument("stack_names", nargs=-1)
@click.option("--multi", is_flag=True, help="Allow more than one stack to match")
@click.pass_obj
def sync(cb, stack_names, multi):
2022-02-22 10:04:29 +00:00
"""Renders template and provisions it right away"""
stacks = _find_stacks(cb, stack_names, multi)
_render(stacks)
_provision(cb, stacks)
2018-11-22 18:31:59 +00:00
@click.command()
@click.argument("stack_names", nargs=-1)
2018-11-22 18:31:59 +00:00
@click.option("--multi", is_flag=True, help="Allow more than one stack to match")
2019-02-08 10:51:44 +00:00
@click.pass_obj
def validate(cb, stack_names, multi):
2022-02-22 10:04:29 +00:00
"""Validates already rendered templates using cfn-lint - CFN only"""
2019-02-08 10:51:44 +00:00
stacks = _find_stacks(cb, stack_names, multi)
2018-11-22 18:31:59 +00:00
for s in stacks:
ret = s.validate()
if ret:
sys.exit(ret)
2018-11-22 18:31:59 +00:00
2020-02-25 20:40:12 +00:00
@click.command()
@click.argument("stack_names", nargs=-1)
@click.option("--multi", is_flag=True, help="Allow more than one stack to match")
2022-02-22 10:04:29 +00:00
@click.option(
"--include", default=".*", help="regex matching wanted outputs, default '.*'"
)
@click.option(
"--values",
is_flag=True,
help="Only output values, most useful if only one outputs is returned",
)
2020-02-25 20:40:12 +00:00
@click.pass_obj
def outputs(cb, stack_names, multi, include, values):
2022-02-22 10:04:29 +00:00
"""Prints all stack outputs"""
2020-02-25 20:40:12 +00:00
stacks = _find_stacks(cb, stack_names, multi)
for s in stacks:
s.get_outputs()
for output in s.outputs.keys():
if re.search(include, output):
if values:
print("{}".format(output))
else:
print("{}={}".format(output, s.outputs[output]))
2020-02-25 20:40:12 +00:00
@click.command()
@click.argument("stack_names", nargs=-1)
@click.option("--multi", is_flag=True, help="Allow more than one stack to match")
@click.option("--graph", is_flag=True, help="Create Dot Graph file")
@click.pass_obj
def create_docs(cb, stack_names, multi, graph):
2022-02-22 10:04:29 +00:00
"""Parses all documentation fragments out of rendered templates creating docs/*.md file"""
stacks = _find_stacks(cb, stack_names, multi)
for s in stacks:
s.create_docs(graph=graph)
2019-01-30 13:00:06 +00:00
@click.command()
@click.argument("stack_name")
@click.argument("change_set_name")
2019-02-08 10:51:44 +00:00
@click.pass_obj
def create_change_set(cb, stack_name, change_set_name):
2022-02-22 10:04:29 +00:00
"""Creates a change set for an existing stack - CFN only"""
2019-02-08 10:51:44 +00:00
stacks = _find_stacks(cb, [stack_name])
2019-01-30 13:00:06 +00:00
for s in stacks:
s.create_change_set(change_set_name)
2021-09-20 14:19:14 +00:00
@click.command()
@click.argument("stack_name")
@click.pass_obj
def refresh(cb, stack_name):
2022-02-22 10:04:29 +00:00
"""Refreshes Pulumi stack / Drift detection"""
2021-09-20 14:19:14 +00:00
stacks = _find_stacks(cb, [stack_name])
for s in stacks:
2022-02-22 10:04:29 +00:00
if s.mode == "pulumi":
2021-09-20 14:19:14 +00:00
s.refresh()
else:
2022-02-22 10:04:29 +00:00
logger.info("{} uses Cloudformation, refresh skipped.".format(s.stackname))
2021-09-20 14:19:14 +00:00
@click.command()
@click.argument("stack_name")
@click.argument("function", default="")
@click.argument('args', nargs=-1)
2022-02-22 10:04:29 +00:00
@click.option(
"--listall",
is_flag=True,
help="List all available execute functions for this stack",
)
@click.pass_obj
def execute(cb, stack_name, function, args, listall=False):
"""Executes custom Python function within an existing stack context"""
stacks = _find_stacks(cb, [stack_name])
for s in stacks:
if s.mode == "pulumi":
s.execute(function, args, listall)
else:
logger.info("{} uses Cloudformation, no exec feature available.".format(s.stackname))
@click.command()
@click.argument("stack_name")
@click.option(
"-r",
"--remove-pending-operations",
2022-02-22 10:04:29 +00:00
is_flag=True,
help="All pending stack operations are removed and the stack will be re-imported",
)
@click.pass_obj
def export(cb, stack_name, remove_pending_operations=False):
2022-02-22 10:04:29 +00:00
"""Exports a Pulumi stack to repair state"""
stacks = _find_stacks(cb, [stack_name])
for s in stacks:
2022-02-22 10:04:29 +00:00
if s.mode == "pulumi":
s.export(remove_pending_operations)
else:
2022-02-22 10:04:29 +00:00
logger.info("{} uses Cloudformation, export skipped.".format(s.stackname))
@click.command()
@click.argument("stack_name")
@click.pass_obj
def assimilate(cb, stack_name):
"""Imports potentially existing resources into Pulumi stack"""
stacks = _find_stacks(cb, [stack_name])
for s in stacks:
if s.mode == "pulumi":
s.assimilate()
else:
logger.info(
"{} uses Cloudformation, cannot assimilate.".format(s.stackname)
)
2021-09-20 14:19:14 +00:00
@click.command()
@click.argument("stack_name")
@click.argument("key")
@click.argument("value")
@click.option("--secret", is_flag=True, help="Value is a secret")
@click.pass_obj
def set_config(cb, stack_name, key, value, secret=False):
2022-02-22 10:04:29 +00:00
"""Sets a config value, encrypts with stack key if secret"""
2021-09-20 14:19:14 +00:00
stacks = _find_stacks(cb, [stack_name])
for s in stacks:
s.set_config(key, value, secret)
@click.command()
@click.argument("stack_name")
@click.argument("key")
@click.pass_obj
def get_config(cb, stack_name, key):
2022-02-22 10:04:29 +00:00
"""Get a config value, decrypted if secret"""
2021-09-20 14:19:14 +00:00
stacks = _find_stacks(cb, [stack_name])
for s in stacks:
s.get_config(key)
@click.command()
@click.argument("stack_name")
@click.pass_obj
def preview(cb, stack_name):
2022-02-22 10:04:29 +00:00
"""Preview of Pulumi stack up operation"""
2021-09-20 14:19:14 +00:00
stacks = _find_stacks(cb, [stack_name])
for s in stacks:
2022-02-22 10:04:29 +00:00
if s.mode == "pulumi":
2021-09-20 14:19:14 +00:00
s.preview()
else:
2022-02-22 10:04:29 +00:00
logger.warning(
"{} uses Cloudformation, use create-change-set for previews.".format(
s.stackname
)
)
2021-09-20 14:19:14 +00:00
2018-11-22 18:31:59 +00:00
@click.command()
@click.argument("stack_names", nargs=-1)
2018-11-22 18:31:59 +00:00
@click.option("--multi", is_flag=True, help="Allow more than one stack to match")
2019-02-08 10:51:44 +00:00
@click.pass_obj
def provision(cb, stack_names, multi):
2022-02-22 10:04:29 +00:00
"""Creates or updates stacks or stack groups"""
2019-02-08 10:51:44 +00:00
stacks = _find_stacks(cb, stack_names, multi)
_provision(cb, stacks)
2018-11-22 18:31:59 +00:00
@click.command()
@click.argument("stack_names", nargs=-1)
2018-11-22 18:31:59 +00:00
@click.option("--multi", is_flag=True, help="Allow more than one stack to match")
2019-02-08 10:51:44 +00:00
@click.pass_obj
def delete(cb, stack_names, multi):
2022-02-22 10:04:29 +00:00
"""Deletes stacks or stack groups"""
2019-02-08 10:51:44 +00:00
stacks = _find_stacks(cb, stack_names, multi)
2018-11-22 18:31:59 +00:00
# Reverse steps
2019-02-08 10:51:44 +00:00
steps = [s for s in sort_stacks(cb, stacks)]
2018-11-22 18:31:59 +00:00
delete_steps = steps[::-1]
for step in delete_steps:
if step:
with ThreadPoolExecutor(max_workers=len(step)) as group:
futures = []
for stack in step:
if stack.multi_delete:
futures.append(group.submit(stack.delete))
2018-12-10 17:58:54 +00:00
for future in as_completed(futures):
future.result()
2018-11-22 18:31:59 +00:00
@click.command()
2019-02-08 10:51:44 +00:00
@click.pass_obj
def clean(cb):
2022-02-22 10:04:29 +00:00
"""Deletes all previously rendered files locally"""
2018-11-22 18:31:59 +00:00
cb.clean()
2019-02-08 10:51:44 +00:00
def sort_stacks(cb, stacks):
2022-02-22 10:04:29 +00:00
"""Sort stacks by dependencies"""
2018-11-22 18:31:59 +00:00
data = {}
for s in stacks:
2022-02-22 10:04:29 +00:00
if s.mode == "pulumi":
2021-09-20 14:19:14 +00:00
data[s.id] = set()
continue
# To resolve dependencies we have to read each template
s.read_template_file()
2018-11-22 18:31:59 +00:00
deps = []
for d in s.dependencies:
# For now we assume deps are artifacts so we prepend them with our local profile and region to match stack.id
2022-02-22 10:04:29 +00:00
for dep_stack in cb.filter_stacks(
{"region": s.region, "profile": s.profile, "provides": d}
):
2018-11-22 18:31:59 +00:00
deps.append(dep_stack.id)
# also look for global services
2022-02-22 10:04:29 +00:00
for dep_stack in cb.filter_stacks(
{"region": "global", "profile": s.profile, "provides": d}
):
deps.append(dep_stack.id)
2018-12-10 17:58:54 +00:00
2018-11-22 18:31:59 +00:00
data[s.id] = set(deps)
logger.debug("Stack {} depends on {}".format(s.id, deps))
2018-11-22 18:31:59 +00:00
# Ignore self dependencies
2018-11-22 18:31:59 +00:00
for k, v in data.items():
v.discard(k)
2018-11-22 18:31:59 +00:00
2021-09-20 14:19:14 +00:00
if data:
2022-02-22 10:04:29 +00:00
extra_items_in_deps = functools.reduce(set.union, data.values()) - set(
data.keys()
)
2021-09-20 14:19:14 +00:00
data.update({item: set() for item in extra_items_in_deps})
2018-11-22 18:31:59 +00:00
while True:
ordered = set(item for item, dep in data.items() if not dep)
2018-11-22 18:31:59 +00:00
if not ordered:
break
# return list of stack objects rather than just names
result = []
for o in ordered:
for s in stacks:
if s.id == o:
result.append(s)
2018-11-22 18:31:59 +00:00
yield result
2022-02-22 10:04:29 +00:00
data = {
item: (dep - ordered) for item, dep in data.items() if item not in ordered
}
2018-11-22 18:31:59 +00:00
assert not data, "A cyclic dependency exists amongst %r" % data
2019-02-08 10:51:44 +00:00
def _find_stacks(cb, stack_names, multi=False):
2022-02-22 10:04:29 +00:00
"""search stacks by name"""
2018-11-22 18:31:59 +00:00
stacks = []
for s in stack_names:
stacks = stacks + cb.resolve_stacks(s)
2018-11-22 18:31:59 +00:00
if not multi and len(stacks) > 1:
2022-02-22 10:04:29 +00:00
logger.error(
"Found more than one stack matching name ({}). Please set --multi if that is what you want.".format(
", ".join(stack_names)
)
)
2018-11-22 18:31:59 +00:00
raise click.Abort()
if not stacks:
2022-02-22 10:04:29 +00:00
logger.error("Cannot find stack matching: {}".format(", ".join(stack_names)))
2018-11-22 18:31:59 +00:00
raise click.Abort()
return stacks
def _render(stacks):
2022-02-22 10:04:29 +00:00
"""Utility function to reuse code between tasks"""
for s in stacks:
2022-02-22 10:04:29 +00:00
if s.mode != "pulumi":
2021-09-20 14:19:14 +00:00
s.render()
s.write_template_file()
else:
2022-02-22 10:04:29 +00:00
logger.info("{} uses Pulumi, render skipped.".format(s.stackname))
def _anyPulumi(step):
for stack in step:
if stack.mode == "pulumi":
return True
return False
def _provision(cb, stacks):
2022-02-22 10:04:29 +00:00
"""Utility function to reuse code between tasks"""
for step in sort_stacks(cb, stacks):
if step:
# if there are any Pulumi stacks in the step execute serial
if _anyPulumi(step):
for stack in step:
status = stack.get_status()
if not status:
stack.create()
else:
stack.update()
else:
with ThreadPoolExecutor(max_workers=len(step)) as group:
futures = []
for stack in step:
status = stack.get_status()
if not status:
futures.append(group.submit(stack.create))
else:
futures.append(group.submit(stack.update))
for future in as_completed(futures):
future.result()
2018-11-22 18:31:59 +00:00
cli.add_command(render)
cli.add_command(sync)
2018-11-22 18:31:59 +00:00
cli.add_command(validate)
cli.add_command(provision)
cli.add_command(delete)
cli.add_command(clean)
2019-01-30 13:00:06 +00:00
cli.add_command(create_change_set)
2020-02-25 20:40:12 +00:00
cli.add_command(outputs)
cli.add_command(create_docs)
2021-09-20 14:19:14 +00:00
cli.add_command(refresh)
cli.add_command(preview)
cli.add_command(set_config)
cli.add_command(get_config)
cli.add_command(export)
cli.add_command(assimilate)
cli.add_command(execute)
2022-02-22 10:04:29 +00:00
if __name__ == "__main__":
cli(obj={})