2023-01-19 21:13:57 +00:00
|
|
|
# Copyright © 2022, 2023 Cerc
|
2022-08-23 21:58:32 +00:00
|
|
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http:#www.gnu.org/licenses/>.
|
|
|
|
|
2022-08-14 04:02:10 +00:00
|
|
|
# Deploys the system components using docker-compose
|
|
|
|
|
2022-10-07 13:12:43 +00:00
|
|
|
import hashlib
|
2022-08-14 04:02:10 +00:00
|
|
|
import os
|
2022-10-07 13:12:43 +00:00
|
|
|
import sys
|
2023-02-17 20:34:51 +00:00
|
|
|
from decouple import config
|
2023-02-17 21:15:35 +00:00
|
|
|
import subprocess
|
2022-08-14 04:02:10 +00:00
|
|
|
from python_on_whales import DockerClient
|
2022-08-24 03:27:42 +00:00
|
|
|
import click
|
2023-01-12 04:56:05 +00:00
|
|
|
import importlib.resources
|
2023-01-10 03:43:04 +00:00
|
|
|
from pathlib import Path
|
2023-01-19 21:13:57 +00:00
|
|
|
from .util import include_exclude_check, get_parsed_stack_config
|
2022-08-14 04:58:13 +00:00
|
|
|
|
2022-10-04 01:37:18 +00:00
|
|
|
|
2022-08-24 03:27:42 +00:00
|
|
|
@click.command()
|
2022-10-04 01:37:18 +00:00
|
|
|
@click.option("--include", help="only start these components")
|
|
|
|
@click.option("--exclude", help="don\'t start these components")
|
2022-10-07 12:48:30 +00:00
|
|
|
@click.option("--cluster", help="specify a non-default cluster name")
|
2022-11-08 05:22:54 +00:00
|
|
|
@click.argument('command', required=True) # help: command: up|down|ps
|
2023-01-24 05:09:56 +00:00
|
|
|
@click.argument('extra_args', nargs=-1) # help: command: up|down|ps <service1> <service2>
|
2022-08-24 18:36:58 +00:00
|
|
|
@click.pass_context
|
2023-01-24 05:09:56 +00:00
|
|
|
def command(ctx, include, exclude, cluster, command, extra_args):
|
2022-08-24 18:53:51 +00:00
|
|
|
'''deploy a stack'''
|
|
|
|
|
|
|
|
# TODO: implement option exclusion and command value constraint lost with the move from argparse to click
|
2022-08-24 18:36:58 +00:00
|
|
|
|
2023-01-26 23:47:06 +00:00
|
|
|
debug = ctx.obj.debug
|
2022-08-24 18:36:58 +00:00
|
|
|
quiet = ctx.obj.quiet
|
|
|
|
verbose = ctx.obj.verbose
|
2023-02-17 20:34:51 +00:00
|
|
|
local_stack = ctx.obj.local_stack
|
2022-08-24 19:53:48 +00:00
|
|
|
dry_run = ctx.obj.dry_run
|
2023-01-18 22:37:12 +00:00
|
|
|
stack = ctx.obj.stack
|
2022-08-24 03:27:42 +00:00
|
|
|
|
2023-02-20 13:09:35 +00:00
|
|
|
cluster_context = _make_cluster_context(ctx.obj, include, exclude, cluster)
|
2022-08-24 03:27:42 +00:00
|
|
|
|
|
|
|
# See: https://gabrieldemarmiesse.github.io/python-on-whales/sub-commands/compose/
|
2023-02-20 13:09:35 +00:00
|
|
|
docker = DockerClient(compose_files=cluster_context.compose_files, compose_project_name=cluster_context.cluster)
|
2022-08-24 03:27:42 +00:00
|
|
|
|
2023-01-24 05:09:56 +00:00
|
|
|
extra_args_list = list(extra_args) or None
|
2022-12-22 06:03:39 +00:00
|
|
|
|
2022-08-24 18:36:58 +00:00
|
|
|
if not dry_run:
|
2022-08-24 03:27:42 +00:00
|
|
|
if command == "up":
|
2023-01-26 23:47:06 +00:00
|
|
|
if debug:
|
|
|
|
os.environ["CERC_SCRIPT_DEBUG"] = "true"
|
2022-08-24 03:27:42 +00:00
|
|
|
if verbose:
|
2023-01-24 05:09:56 +00:00
|
|
|
print(f"Running compose up for extra_args: {extra_args_list}")
|
2023-02-20 13:09:35 +00:00
|
|
|
for pre_start_command in cluster_context.pre_start_commands:
|
2023-02-17 22:31:43 +00:00
|
|
|
_run_command(ctx.obj, cluster, pre_start_command)
|
2023-01-24 05:09:56 +00:00
|
|
|
docker.compose.up(detach=True, services=extra_args_list)
|
2023-02-20 13:09:35 +00:00
|
|
|
for post_start_command in cluster_context.post_start_commands:
|
2023-02-17 22:31:43 +00:00
|
|
|
_run_command(ctx.obj, cluster, post_start_command)
|
2022-08-24 03:27:42 +00:00
|
|
|
elif command == "down":
|
|
|
|
if verbose:
|
|
|
|
print("Running compose down")
|
|
|
|
docker.compose.down()
|
2023-01-26 06:22:05 +00:00
|
|
|
elif command == "exec":
|
|
|
|
if extra_args_list is None or len(extra_args_list) < 2:
|
|
|
|
print("Usage: exec <service> <cmd>")
|
|
|
|
sys.exit(1)
|
|
|
|
service_name = extra_args_list[0]
|
|
|
|
command_to_exec = extra_args_list[1:]
|
2023-01-26 23:47:06 +00:00
|
|
|
container_exec_env = {
|
|
|
|
"CERC_SCRIPT_DEBUG": "true"
|
2023-01-27 15:10:04 +00:00
|
|
|
} if debug else {}
|
2023-01-26 06:22:05 +00:00
|
|
|
if verbose:
|
|
|
|
print(f"Running compose exec {service_name} {command_to_exec}")
|
2023-01-26 23:47:06 +00:00
|
|
|
docker.compose.execute(service_name, command_to_exec, envs=container_exec_env)
|
2023-01-24 05:09:56 +00:00
|
|
|
elif command == "port":
|
|
|
|
if extra_args_list is None or len(extra_args_list) < 2:
|
|
|
|
print("Usage: port <service> <exposed-port>")
|
|
|
|
sys.exit(1)
|
|
|
|
service_name = extra_args_list[0]
|
|
|
|
exposed_port = extra_args_list[1]
|
|
|
|
if verbose:
|
2023-01-26 06:22:05 +00:00
|
|
|
print(f"Running compose port {service_name} {exposed_port}")
|
2023-01-24 05:09:56 +00:00
|
|
|
mapped_port_data = docker.compose.port(service_name, exposed_port)
|
|
|
|
print(f"{mapped_port_data[0]}:{mapped_port_data[1]}")
|
2022-11-30 04:14:40 +00:00
|
|
|
elif command == "ps":
|
2022-08-24 19:53:48 +00:00
|
|
|
if verbose:
|
|
|
|
print("Running compose ps")
|
2022-10-24 18:39:51 +00:00
|
|
|
container_list = docker.compose.ps()
|
2022-10-24 22:02:11 +00:00
|
|
|
if len(container_list) > 0:
|
|
|
|
print("Running containers:")
|
|
|
|
for container in container_list:
|
2022-11-30 04:14:40 +00:00
|
|
|
print(f"id: {container.id}, name: {container.name}, ports: ", end="")
|
|
|
|
ports = container.network_settings.ports
|
2023-01-04 17:39:16 +00:00
|
|
|
comma = ""
|
2022-11-30 04:14:40 +00:00
|
|
|
for port_mapping in ports.keys():
|
2023-01-04 17:39:16 +00:00
|
|
|
mapping = ports[port_mapping]
|
|
|
|
print(comma, end="")
|
|
|
|
if mapping is None:
|
|
|
|
print(f"{port_mapping}", end="")
|
|
|
|
else:
|
|
|
|
print(f"{mapping[0]['HostIp']}:{mapping[0]['HostPort']}->{port_mapping}", end="")
|
|
|
|
comma = ", "
|
2022-11-30 04:14:40 +00:00
|
|
|
print()
|
2022-10-24 22:02:11 +00:00
|
|
|
else:
|
|
|
|
print("No containers running")
|
2022-08-24 19:53:48 +00:00
|
|
|
elif command == "logs":
|
|
|
|
if verbose:
|
|
|
|
print("Running compose logs")
|
|
|
|
docker.compose.logs()
|
2023-02-17 20:34:51 +00:00
|
|
|
|
|
|
|
|
2023-02-20 13:09:35 +00:00
|
|
|
def get_stack_status(stack):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def _make_cluster_context(ctx, include, exclude, cluster):
|
|
|
|
|
|
|
|
if ctx.local_stack:
|
|
|
|
dev_root_path = os.getcwd()[0:os.getcwd().rindex("stack-orchestrator")]
|
|
|
|
print(f'Local stack dev_root_path (CERC_REPO_BASE_DIR) overridden to: {dev_root_path}')
|
|
|
|
else:
|
|
|
|
dev_root_path = os.path.expanduser(config("CERC_REPO_BASE_DIR", default="~/cerc"))
|
|
|
|
|
|
|
|
# See: https://stackoverflow.com/questions/25389095/python-get-path-of-root-project-structure
|
|
|
|
compose_dir = Path(__file__).absolute().parent.joinpath("data", "compose")
|
|
|
|
|
|
|
|
if cluster is None:
|
|
|
|
# Create default unique, stable cluster name from confile file path
|
|
|
|
# TODO: change this to the config file path
|
|
|
|
path = os.path.realpath(sys.argv[0])
|
|
|
|
hash = hashlib.md5(path.encode()).hexdigest()
|
|
|
|
cluster = f"laconic-{hash}"
|
|
|
|
if ctx.verbose:
|
|
|
|
print(f"Using cluster name: {cluster}")
|
|
|
|
|
|
|
|
# See: https://stackoverflow.com/a/20885799/1701505
|
|
|
|
from . import data
|
|
|
|
with importlib.resources.open_text(data, "pod-list.txt") as pod_list_file:
|
|
|
|
all_pods = pod_list_file.read().splitlines()
|
|
|
|
|
|
|
|
pods_in_scope = []
|
|
|
|
if ctx.stack:
|
|
|
|
stack_config = get_parsed_stack_config(ctx.stack)
|
|
|
|
# TODO: syntax check the input here
|
|
|
|
pods_in_scope = stack_config['pods']
|
|
|
|
else:
|
|
|
|
pods_in_scope = all_pods
|
|
|
|
|
|
|
|
# Convert all pod definitions to v1.1 format
|
|
|
|
pods_in_scope = _convert_to_new_format(pods_in_scope)
|
|
|
|
|
|
|
|
if ctx.verbose:
|
|
|
|
print(f"Pods: {pods_in_scope}")
|
|
|
|
|
|
|
|
# Construct a docker compose command suitable for our purpose
|
|
|
|
|
|
|
|
compose_files = []
|
|
|
|
pre_start_commands = []
|
|
|
|
post_start_commands = []
|
|
|
|
for pod in pods_in_scope:
|
|
|
|
pod_name = pod["name"]
|
|
|
|
pod_repository = pod["repository"]
|
|
|
|
pod_path = pod["path"]
|
|
|
|
if include_exclude_check(pod_name, include, exclude):
|
|
|
|
if pod_repository is None or pod_repository == "internal":
|
|
|
|
compose_file_name = os.path.join(compose_dir, f"docker-compose-{pod_path}.yml")
|
|
|
|
else:
|
|
|
|
pod_root_dir = os.path.join(dev_root_path, pod_repository.split("/")[-1], pod["path"])
|
|
|
|
compose_file_name = os.path.join(pod_root_dir, "docker-compose.yml")
|
|
|
|
pod_pre_start_command = pod["pre_start_command"]
|
|
|
|
pod_post_start_command = pod["post_start_command"]
|
|
|
|
if pod_pre_start_command is not None:
|
|
|
|
pre_start_commands.append(os.path.join(pod_root_dir, pod_pre_start_command))
|
|
|
|
if pod_post_start_command is not None:
|
|
|
|
post_start_commands.append(os.path.join(pod_root_dir, pod_post_start_command))
|
|
|
|
compose_files.append(compose_file_name)
|
|
|
|
else:
|
|
|
|
if ctx.verbose:
|
|
|
|
print(f"Excluding: {pod_name}")
|
|
|
|
|
|
|
|
if ctx.verbose:
|
|
|
|
print(f"files: {compose_files}")
|
|
|
|
|
|
|
|
return cluster_context(cluster, compose_files, pre_start_commands, post_start_commands)
|
|
|
|
|
|
|
|
|
|
|
|
class cluster_context:
|
|
|
|
def __init__(self, cluster, compose_files, pre_start_commands, post_start_commands) -> None:
|
|
|
|
self.cluster = cluster
|
|
|
|
self.compose_files = compose_files
|
|
|
|
self.pre_start_commands = pre_start_commands
|
|
|
|
self.post_start_commands = post_start_commands
|
|
|
|
|
|
|
|
|
2023-02-17 20:34:51 +00:00
|
|
|
def _convert_to_new_format(old_pod_array):
|
|
|
|
new_pod_array = []
|
|
|
|
for old_pod in old_pod_array:
|
|
|
|
if isinstance(old_pod, dict):
|
|
|
|
new_pod_array.append(old_pod)
|
|
|
|
else:
|
|
|
|
new_pod = {
|
|
|
|
"name": old_pod,
|
|
|
|
"repository": "internal",
|
|
|
|
"path": old_pod
|
|
|
|
}
|
|
|
|
new_pod_array.append(new_pod)
|
|
|
|
return new_pod_array
|
2023-02-17 21:15:35 +00:00
|
|
|
|
|
|
|
|
2023-02-17 22:31:43 +00:00
|
|
|
def _run_command(ctx, cluster_name, command):
|
2023-02-17 21:15:35 +00:00
|
|
|
if ctx.verbose:
|
|
|
|
print(f"Running command: {command}")
|
|
|
|
command_dir = os.path.dirname(command)
|
|
|
|
command_file = os.path.join(".", os.path.basename(command))
|
2023-02-17 22:31:43 +00:00
|
|
|
command_env = os.environ.copy()
|
|
|
|
command_env["CERC_SO_COMPOSE_PROJECT"] = cluster_name
|
|
|
|
if ctx.debug:
|
|
|
|
command_env["CERC_SCRIPT_DEBUG"] = "true"
|
|
|
|
command_result = subprocess.run(command_file, shell=True, env=command_env, cwd=command_dir)
|
2023-02-17 21:15:35 +00:00
|
|
|
if command_result.returncode != 0:
|
|
|
|
print(f"FATAL Error running command: {command}")
|
|
|
|
sys.exit(1)
|