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-12 14:54:09 +00:00
|
|
|
# Builds or pulls containers for the system components
|
|
|
|
|
|
|
|
# env vars:
|
2022-08-23 22:02:38 +00:00
|
|
|
# CERC_REPO_BASE_DIR defaults to ~/cerc
|
2022-08-12 14:54:09 +00:00
|
|
|
|
|
|
|
# TODO: display the available list of containers; allow re-build of either all or specific containers
|
|
|
|
|
|
|
|
import os
|
2023-01-19 20:20:53 +00:00
|
|
|
import sys
|
2022-08-12 14:54:09 +00:00
|
|
|
from decouple import config
|
|
|
|
import subprocess
|
2022-08-24 03:27:42 +00:00
|
|
|
import click
|
2023-01-12 04:56:05 +00:00
|
|
|
import importlib.resources
|
2023-01-09 03:08:35 +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-12 14:54:09 +00:00
|
|
|
|
2022-08-24 18:53:51 +00:00
|
|
|
# TODO: find a place for this
|
2022-08-24 18:36:58 +00:00
|
|
|
# epilog="Config provided either in .env or settings.ini or env vars: CERC_REPO_BASE_DIR (defaults to ~/cerc)"
|
2022-08-12 14:54:09 +00:00
|
|
|
|
2022-10-04 01:37:18 +00:00
|
|
|
|
2022-08-24 03:27:42 +00:00
|
|
|
@click.command()
|
2022-09-28 16:07:13 +00:00
|
|
|
@click.option('--include', help="only build these containers")
|
|
|
|
@click.option('--exclude', help="don\'t build these containers")
|
2023-04-14 20:19:27 +00:00
|
|
|
@click.option("--force-rebuild", is_flag=True, default=False, help="Override dependency checking -- always rebuild")
|
|
|
|
@click.option("--extra-build-args", help="Supply extra arguments to build")
|
2022-08-24 18:36:58 +00:00
|
|
|
@click.pass_context
|
2023-04-14 20:19:27 +00:00
|
|
|
def command(ctx, include, exclude, force_rebuild, extra_build_args):
|
2022-08-24 18:53:51 +00:00
|
|
|
'''build the set of containers required for a complete stack'''
|
2022-08-24 18:36:58 +00:00
|
|
|
|
|
|
|
quiet = ctx.obj.quiet
|
|
|
|
verbose = ctx.obj.verbose
|
2022-08-24 19:53:48 +00:00
|
|
|
dry_run = ctx.obj.dry_run
|
2023-04-14 20:19:27 +00:00
|
|
|
debug = ctx.obj.debug
|
2022-09-29 18:46:21 +00:00
|
|
|
local_stack = ctx.obj.local_stack
|
2023-01-18 22:27:52 +00:00
|
|
|
stack = ctx.obj.stack
|
2023-01-19 20:20:53 +00:00
|
|
|
continue_on_error = ctx.obj.continue_on_error
|
2022-08-12 14:54:09 +00:00
|
|
|
|
2023-01-09 03:08:35 +00:00
|
|
|
# See: https://stackoverflow.com/questions/25389095/python-get-path-of-root-project-structure
|
|
|
|
container_build_dir = Path(__file__).absolute().parent.joinpath("data", "container-build")
|
2022-12-07 18:38:32 +00:00
|
|
|
|
2022-09-29 18:46:21 +00:00
|
|
|
if local_stack:
|
2022-10-06 12:50:42 +00:00
|
|
|
dev_root_path = os.getcwd()[0:os.getcwd().rindex("stack-orchestrator")]
|
2022-09-29 18:46:21 +00:00
|
|
|
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"))
|
2022-08-12 14:54:09 +00:00
|
|
|
|
2022-08-24 18:36:58 +00:00
|
|
|
if not quiet:
|
2022-08-24 03:27:42 +00:00
|
|
|
print(f'Dev Root is: {dev_root_path}')
|
2022-08-12 14:54:09 +00:00
|
|
|
|
2022-08-24 03:27:42 +00:00
|
|
|
if not os.path.isdir(dev_root_path):
|
2022-10-04 01:37:18 +00:00
|
|
|
print('Dev root directory doesn\'t exist, creating')
|
2022-08-12 14:54:09 +00:00
|
|
|
|
2023-01-09 03:08:35 +00:00
|
|
|
# See: https://stackoverflow.com/a/20885799/1701505
|
2023-01-09 03:11:30 +00:00
|
|
|
from . import data
|
2023-01-08 03:44:08 +00:00
|
|
|
with importlib.resources.open_text(data, "container-image-list.txt") as container_list_file:
|
2023-01-18 22:27:52 +00:00
|
|
|
all_containers = container_list_file.read().splitlines()
|
|
|
|
|
|
|
|
containers_in_scope = []
|
|
|
|
if stack:
|
2023-01-19 21:13:57 +00:00
|
|
|
stack_config = get_parsed_stack_config(stack)
|
|
|
|
containers_in_scope = stack_config['containers']
|
2023-01-18 22:27:52 +00:00
|
|
|
else:
|
|
|
|
containers_in_scope = all_containers
|
2022-08-12 14:54:09 +00:00
|
|
|
|
|
|
|
if verbose:
|
2023-01-18 22:27:52 +00:00
|
|
|
print(f'Containers: {containers_in_scope}')
|
|
|
|
if stack:
|
|
|
|
print(f"Stack: {stack}")
|
2022-08-24 03:27:42 +00:00
|
|
|
|
2023-01-06 20:54:03 +00:00
|
|
|
# TODO: make this configurable
|
|
|
|
container_build_env = {
|
2023-04-17 19:40:49 +00:00
|
|
|
"CERC_NPM_REGISTRY_URL": config("CERC_NPM_REGISTRY_URL", default="http://gitea.local:3000/api/packages/cerc-io/npm/"),
|
2023-04-17 19:53:16 +00:00
|
|
|
"CERC_NPM_AUTH_TOKEN": config("CERC_NPM_AUTH_TOKEN", default=""),
|
2023-02-25 05:14:28 +00:00
|
|
|
"CERC_REPO_BASE_DIR": dev_root_path,
|
2023-04-14 20:19:27 +00:00
|
|
|
"CERC_CONTAINER_BASE_DIR": container_build_dir,
|
2023-02-25 05:14:28 +00:00
|
|
|
"CERC_HOST_UID": f"{os.getuid()}",
|
2023-02-25 06:31:17 +00:00
|
|
|
"CERC_HOST_GID": f"{os.getgid()}",
|
|
|
|
"DOCKER_BUILDKIT": "0"
|
2023-01-06 20:54:03 +00:00
|
|
|
}
|
2023-04-14 20:19:27 +00:00
|
|
|
container_build_env.update({"CERC_SCRIPT_DEBUG": "true"} if debug else {})
|
|
|
|
container_build_env.update({"CERC_FORCE_REBUILD": "true"} if force_rebuild else {})
|
|
|
|
container_build_env.update({"CERC_CONTAINER_EXTRA_BUILD_ARGS": extra_build_args} if extra_build_args else {})
|
2023-04-20 23:30:54 +00:00
|
|
|
docker_host_env = os.getenv("DOCKER_HOST")
|
|
|
|
if docker_host_env:
|
|
|
|
container_build_env.update({"DOCKER_HOST": docker_host_env})
|
2023-01-06 20:54:03 +00:00
|
|
|
|
2022-08-24 03:27:42 +00:00
|
|
|
def process_container(container):
|
|
|
|
if not quiet:
|
|
|
|
print(f"Building: {container}")
|
2022-12-07 18:38:32 +00:00
|
|
|
build_dir = os.path.join(container_build_dir, container.replace("/", "-"))
|
|
|
|
build_script_filename = os.path.join(build_dir, "build.sh")
|
2022-08-24 03:27:42 +00:00
|
|
|
if verbose:
|
2022-12-07 18:38:32 +00:00
|
|
|
print(f"Build script filename: {build_script_filename}")
|
|
|
|
if os.path.exists(build_script_filename):
|
|
|
|
build_command = build_script_filename
|
|
|
|
else:
|
|
|
|
if verbose:
|
|
|
|
print(f"No script file found: {build_script_filename}, using default build script")
|
|
|
|
repo_dir = container.split('/')[1]
|
|
|
|
# TODO: make this less of a hack -- should be specified in some metadata somewhere
|
|
|
|
# Check if we have a repo for this container. If not, set the context dir to the container-build subdir
|
|
|
|
repo_full_path = os.path.join(dev_root_path, repo_dir)
|
|
|
|
repo_dir_or_build_dir = repo_dir if os.path.exists(repo_full_path) else build_dir
|
2023-02-20 23:16:15 +00:00
|
|
|
build_command = os.path.join(container_build_dir, "default-build.sh") + f" {container}:local {repo_dir_or_build_dir}"
|
2022-08-24 18:36:58 +00:00
|
|
|
if not dry_run:
|
2022-12-07 18:38:32 +00:00
|
|
|
if verbose:
|
2023-02-25 05:14:28 +00:00
|
|
|
print(f"Executing: {build_command} with environment: {container_build_env}")
|
2023-01-06 22:57:14 +00:00
|
|
|
build_result = subprocess.run(build_command, shell=True, env=container_build_env)
|
2023-01-19 20:20:53 +00:00
|
|
|
if verbose:
|
|
|
|
print(f"Return code is: {build_result.returncode}")
|
|
|
|
if build_result.returncode != 0:
|
|
|
|
print(f"Error running build for {container}")
|
|
|
|
if not continue_on_error:
|
|
|
|
print("FATAL Error: container build failed and --continue-on-error not set, exiting")
|
|
|
|
sys.exit(1)
|
|
|
|
else:
|
|
|
|
print("****** Container Build Error, continuing because --continue-on-error is set")
|
2022-08-24 19:53:48 +00:00
|
|
|
else:
|
|
|
|
print("Skipped")
|
2022-08-24 03:27:42 +00:00
|
|
|
|
2023-01-18 22:27:52 +00:00
|
|
|
for container in containers_in_scope:
|
2022-09-28 16:07:13 +00:00
|
|
|
if include_exclude_check(container, include, exclude):
|
|
|
|
process_container(container)
|
|
|
|
else:
|
|
|
|
if verbose:
|
|
|
|
print(f"Excluding: {container}")
|