2023-09-10 19:28:26 +00:00
|
|
|
# Copyright © 2022, 2023 Vulcanize
|
2023-06-27 22:58:41 +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/>.
|
|
|
|
|
|
|
|
import click
|
2023-07-24 02:54:05 +00:00
|
|
|
from importlib import util
|
2023-06-27 22:58:41 +00:00
|
|
|
import os
|
|
|
|
from pathlib import Path
|
2023-10-09 20:54:55 +00:00
|
|
|
from typing import List
|
2023-09-04 18:14:05 +00:00
|
|
|
import random
|
2023-10-09 20:54:55 +00:00
|
|
|
from shutil import copy, copyfile, copytree
|
2023-06-27 22:58:41 +00:00
|
|
|
import sys
|
2023-10-09 20:54:55 +00:00
|
|
|
from app.util import (get_stack_file_path, get_parsed_deployment_spec, get_parsed_stack_config, global_options, get_yaml,
|
|
|
|
get_pod_list, get_pod_file_path, pod_has_scripts, get_pod_script_paths, get_plugin_code_path)
|
|
|
|
from app.deploy_types import DeploymentContext, DeployCommandContext, LaconicStackSetupCommand
|
2023-07-25 16:16:19 +00:00
|
|
|
|
2023-06-27 22:58:41 +00:00
|
|
|
|
|
|
|
def _make_default_deployment_dir():
|
|
|
|
return "deployment-001"
|
|
|
|
|
2023-08-17 19:49:56 +00:00
|
|
|
|
2023-08-11 20:25:54 +00:00
|
|
|
def _get_ports(stack):
|
|
|
|
ports = {}
|
|
|
|
parsed_stack = get_parsed_stack_config(stack)
|
2023-10-09 20:54:55 +00:00
|
|
|
pods = get_pod_list(parsed_stack)
|
2023-08-11 20:25:54 +00:00
|
|
|
yaml = get_yaml()
|
|
|
|
for pod in pods:
|
2023-10-09 20:54:55 +00:00
|
|
|
pod_file_path = get_pod_file_path(parsed_stack, pod)
|
2023-08-11 20:25:54 +00:00
|
|
|
parsed_pod_file = yaml.load(open(pod_file_path, "r"))
|
|
|
|
if "services" in parsed_pod_file:
|
|
|
|
for svc_name, svc in parsed_pod_file["services"].items():
|
|
|
|
if "ports" in svc:
|
|
|
|
# Ports can appear as strings or numbers. We normalize them as strings.
|
2023-09-04 19:00:23 +00:00
|
|
|
ports[svc_name] = [str(x) for x in svc["ports"]]
|
2023-08-11 20:25:54 +00:00
|
|
|
return ports
|
2023-06-27 22:58:41 +00:00
|
|
|
|
2023-08-17 19:49:56 +00:00
|
|
|
|
2023-06-27 22:58:41 +00:00
|
|
|
def _get_named_volumes(stack):
|
|
|
|
# Parse the compose files looking for named volumes
|
|
|
|
named_volumes = []
|
|
|
|
parsed_stack = get_parsed_stack_config(stack)
|
2023-10-09 20:54:55 +00:00
|
|
|
pods = get_pod_list(parsed_stack)
|
2023-07-24 02:54:05 +00:00
|
|
|
yaml = get_yaml()
|
2023-06-27 22:58:41 +00:00
|
|
|
for pod in pods:
|
2023-10-09 20:54:55 +00:00
|
|
|
pod_file_path = get_pod_file_path(parsed_stack, pod)
|
2023-06-27 22:58:41 +00:00
|
|
|
parsed_pod_file = yaml.load(open(pod_file_path, "r"))
|
|
|
|
if "volumes" in parsed_pod_file:
|
|
|
|
volumes = parsed_pod_file["volumes"]
|
|
|
|
for volume in volumes.keys():
|
|
|
|
# Volume definition looks like:
|
|
|
|
# 'laconicd-data': None
|
|
|
|
named_volumes.append(volume)
|
|
|
|
return named_volumes
|
|
|
|
|
|
|
|
|
2023-06-28 03:18:04 +00:00
|
|
|
# If we're mounting a volume from a relatie path, then we
|
|
|
|
# assume the directory doesn't exist yet and create it
|
|
|
|
# so the deployment will start
|
|
|
|
# Also warn if the path is absolute and doesn't exist
|
|
|
|
def _create_bind_dir_if_relative(volume, path_string, compose_dir):
|
|
|
|
path = Path(path_string)
|
|
|
|
if not path.is_absolute():
|
|
|
|
absolute_path = Path(compose_dir).parent.joinpath(path)
|
|
|
|
absolute_path.mkdir(parents=True, exist_ok=True)
|
|
|
|
else:
|
|
|
|
if not path.exists():
|
|
|
|
print(f"WARNING: mount path for volume {volume} does not exist: {path_string}")
|
|
|
|
|
|
|
|
|
2023-06-27 22:58:41 +00:00
|
|
|
# See: https://stackoverflow.com/questions/45699189/editing-docker-compose-yml-with-pyyaml
|
2023-06-28 03:18:04 +00:00
|
|
|
def _fixup_pod_file(pod, spec, compose_dir):
|
2023-08-17 19:49:56 +00:00
|
|
|
# Fix up volumes
|
|
|
|
if "volumes" in spec:
|
|
|
|
spec_volumes = spec["volumes"]
|
|
|
|
if "volumes" in pod:
|
|
|
|
pod_volumes = pod["volumes"]
|
|
|
|
for volume in pod_volumes.keys():
|
|
|
|
if volume in spec_volumes:
|
|
|
|
volume_spec = spec_volumes[volume]
|
|
|
|
volume_spec_fixedup = volume_spec if Path(volume_spec).is_absolute() else f".{volume_spec}"
|
|
|
|
_create_bind_dir_if_relative(volume, volume_spec, compose_dir)
|
|
|
|
new_volume_spec = {"driver": "local",
|
|
|
|
"driver_opts": {
|
2023-08-11 20:25:54 +00:00
|
|
|
"type": "none",
|
|
|
|
"device": volume_spec_fixedup,
|
|
|
|
"o": "bind"
|
2023-06-27 22:58:41 +00:00
|
|
|
}
|
2023-08-17 19:49:56 +00:00
|
|
|
}
|
|
|
|
pod["volumes"][volume] = new_volume_spec
|
|
|
|
# Fix up ports
|
|
|
|
if "ports" in spec:
|
|
|
|
spec_ports = spec["ports"]
|
|
|
|
for container_name, container_ports in spec_ports.items():
|
|
|
|
if container_name in pod["services"]:
|
|
|
|
pod["services"][container_name]["ports"] = container_ports
|
2023-06-27 22:58:41 +00:00
|
|
|
|
|
|
|
|
2023-10-09 20:54:55 +00:00
|
|
|
def _commands_plugin_path(ctx: DeployCommandContext):
|
|
|
|
plugin_path = get_plugin_code_path(ctx.stack)
|
|
|
|
return plugin_path.joinpath("deploy", "commands.py")
|
|
|
|
|
|
|
|
|
2023-10-10 21:32:07 +00:00
|
|
|
# See: https://stackoverflow.com/a/54625079/1701505
|
|
|
|
def _has_method(o, name):
|
|
|
|
return callable(getattr(o, name, None))
|
|
|
|
|
|
|
|
|
2023-07-30 04:38:46 +00:00
|
|
|
def call_stack_deploy_init(deploy_command_context):
|
2023-07-24 02:54:05 +00:00
|
|
|
# Link with the python file in the stack
|
|
|
|
# Call a function in it
|
|
|
|
# If no function found, return None
|
2023-10-09 20:54:55 +00:00
|
|
|
python_file_path = _commands_plugin_path(deploy_command_context)
|
2023-08-17 19:49:56 +00:00
|
|
|
if python_file_path.exists():
|
|
|
|
spec = util.spec_from_file_location("commands", python_file_path)
|
|
|
|
imported_stack = util.module_from_spec(spec)
|
|
|
|
spec.loader.exec_module(imported_stack)
|
2023-10-10 21:32:07 +00:00
|
|
|
if _has_method(imported_stack, "init"):
|
|
|
|
return imported_stack.init(deploy_command_context)
|
2023-08-17 19:49:56 +00:00
|
|
|
else:
|
|
|
|
return None
|
2023-07-24 02:54:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
# TODO: fold this with function above
|
2023-08-23 21:20:28 +00:00
|
|
|
def call_stack_deploy_setup(deploy_command_context, parameters: LaconicStackSetupCommand, extra_args):
|
2023-07-24 02:54:05 +00:00
|
|
|
# Link with the python file in the stack
|
|
|
|
# Call a function in it
|
|
|
|
# If no function found, return None
|
2023-10-09 20:54:55 +00:00
|
|
|
python_file_path = _commands_plugin_path(deploy_command_context)
|
|
|
|
print(f"Path: {python_file_path}")
|
2023-08-17 19:49:56 +00:00
|
|
|
if python_file_path.exists():
|
|
|
|
spec = util.spec_from_file_location("commands", python_file_path)
|
|
|
|
imported_stack = util.module_from_spec(spec)
|
|
|
|
spec.loader.exec_module(imported_stack)
|
2023-10-10 21:32:07 +00:00
|
|
|
if _has_method(imported_stack, "setup"):
|
|
|
|
return imported_stack.setup(deploy_command_context, parameters, extra_args)
|
2023-08-17 19:49:56 +00:00
|
|
|
else:
|
|
|
|
return None
|
2023-07-24 02:54:05 +00:00
|
|
|
|
|
|
|
|
2023-07-25 16:16:19 +00:00
|
|
|
# TODO: fold this with function above
|
2023-08-23 21:20:28 +00:00
|
|
|
def call_stack_deploy_create(deployment_context, extra_args):
|
2023-07-25 16:16:19 +00:00
|
|
|
# Link with the python file in the stack
|
|
|
|
# Call a function in it
|
|
|
|
# If no function found, return None
|
2023-10-09 20:54:55 +00:00
|
|
|
python_file_path = _commands_plugin_path(deployment_context.command_context)
|
2023-08-17 19:49:56 +00:00
|
|
|
if python_file_path.exists():
|
|
|
|
spec = util.spec_from_file_location("commands", python_file_path)
|
|
|
|
imported_stack = util.module_from_spec(spec)
|
|
|
|
spec.loader.exec_module(imported_stack)
|
2023-10-10 21:32:07 +00:00
|
|
|
if _has_method(imported_stack, "create"):
|
|
|
|
return imported_stack.create(deployment_context, extra_args)
|
2023-08-17 19:49:56 +00:00
|
|
|
else:
|
|
|
|
return None
|
2023-07-25 16:16:19 +00:00
|
|
|
|
|
|
|
|
2023-07-18 14:59:07 +00:00
|
|
|
# Inspect the pod yaml to find config files referenced in subdirectories
|
|
|
|
# other than the one associated with the pod
|
|
|
|
def _find_extra_config_dirs(parsed_pod_file, pod):
|
|
|
|
config_dirs = set()
|
|
|
|
services = parsed_pod_file["services"]
|
|
|
|
for service in services:
|
|
|
|
service_info = services[service]
|
|
|
|
if "volumes" in service_info:
|
|
|
|
for volume in service_info["volumes"]:
|
|
|
|
if ":" in volume:
|
|
|
|
host_path = volume.split(":")[0]
|
|
|
|
if host_path.startswith("../config"):
|
|
|
|
config_dir = host_path.split("/")[2]
|
|
|
|
if config_dir != pod:
|
|
|
|
config_dirs.add(config_dir)
|
|
|
|
return config_dirs
|
|
|
|
|
|
|
|
|
2023-09-04 18:14:05 +00:00
|
|
|
def _get_mapped_ports(stack: str, map_recipe: str):
|
|
|
|
port_map_recipes = ["any-variable-random", "localhost-same", "any-same", "localhost-fixed-random", "any-fixed-random"]
|
|
|
|
ports = _get_ports(stack)
|
|
|
|
if ports:
|
|
|
|
# Implement any requested mapping recipe
|
|
|
|
if map_recipe:
|
|
|
|
if map_recipe in port_map_recipes:
|
|
|
|
for service in ports.keys():
|
|
|
|
ports_array = ports[service]
|
|
|
|
for x in range(0, len(ports_array)):
|
|
|
|
orig_port = ports_array[x]
|
2023-09-19 19:27:34 +00:00
|
|
|
# Strip /udp suffix if present
|
|
|
|
bare_orig_port = orig_port.replace("/udp", "")
|
2023-09-04 19:00:23 +00:00
|
|
|
random_port = random.randint(20000, 50000) # Beware: we're relying on luck to not collide
|
2023-09-04 18:14:05 +00:00
|
|
|
if map_recipe == "any-variable-random":
|
|
|
|
# This is the default so take no action
|
|
|
|
pass
|
|
|
|
elif map_recipe == "localhost-same":
|
|
|
|
# Replace instances of "- XX" with "- 127.0.0.1:XX"
|
2023-09-19 19:27:34 +00:00
|
|
|
ports_array[x] = f"127.0.0.1:{bare_orig_port}:{orig_port}"
|
2023-09-04 18:14:05 +00:00
|
|
|
elif map_recipe == "any-same":
|
|
|
|
# Replace instances of "- XX" with "- 0.0.0.0:XX"
|
2023-09-19 19:27:34 +00:00
|
|
|
ports_array[x] = f"0.0.0.0:{bare_orig_port}:{orig_port}"
|
2023-09-04 18:14:05 +00:00
|
|
|
elif map_recipe == "localhost-fixed-random":
|
|
|
|
# Replace instances of "- XX" with "- 127.0.0.1:<rnd>:XX"
|
|
|
|
ports_array[x] = f"127.0.0.1:{random_port}:{orig_port}"
|
|
|
|
elif map_recipe == "any-fixed-random":
|
|
|
|
# Replace instances of "- XX" with "- 0.0.0.0:<rnd>:XX"
|
|
|
|
ports_array[x] = f"0.0.0.0:{random_port}:{orig_port}"
|
|
|
|
else:
|
|
|
|
print("Error: bad map_recipe")
|
|
|
|
else:
|
|
|
|
print(f"Error: --map-ports-to-host must specify one of: {port_map_recipes}")
|
|
|
|
sys.exit(1)
|
|
|
|
return ports
|
|
|
|
|
|
|
|
|
2023-10-03 18:49:15 +00:00
|
|
|
def _parse_config_variables(variable_values: str):
|
|
|
|
result = None
|
|
|
|
if variable_values:
|
|
|
|
value_pairs = variable_values.split(",")
|
|
|
|
if len(value_pairs):
|
|
|
|
result_values = {}
|
|
|
|
for value_pair in value_pairs:
|
|
|
|
variable_value_pair = value_pair.split("=")
|
|
|
|
if len(variable_value_pair) != 2:
|
|
|
|
print(f"ERROR: config argument is not valid: {variable_values}")
|
|
|
|
sys.exit(1)
|
|
|
|
variable_name = variable_value_pair[0]
|
|
|
|
variable_value = variable_value_pair[1]
|
|
|
|
result_values[variable_name] = variable_value
|
|
|
|
result = {"config": result_values}
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
2023-06-27 22:58:41 +00:00
|
|
|
@click.command()
|
2023-10-03 18:49:15 +00:00
|
|
|
@click.option("--config", help="Provide config variables for the deployment")
|
2023-06-27 22:58:41 +00:00
|
|
|
@click.option("--output", required=True, help="Write yaml spec file here")
|
2023-09-04 18:14:05 +00:00
|
|
|
@click.option("--map-ports-to-host", required=False,
|
2023-09-04 19:00:23 +00:00
|
|
|
help="Map ports to the host as one of: any-variable-random (default), "
|
|
|
|
"localhost-same, any-same, localhost-fixed-random, any-fixed-random")
|
2023-06-27 22:58:41 +00:00
|
|
|
@click.pass_context
|
2023-10-03 18:49:15 +00:00
|
|
|
def init(ctx, config, output, map_ports_to_host):
|
2023-07-24 02:54:05 +00:00
|
|
|
yaml = get_yaml()
|
2023-06-27 22:58:41 +00:00
|
|
|
stack = global_options(ctx).stack
|
2023-10-03 18:49:15 +00:00
|
|
|
debug = global_options(ctx).debug
|
2023-07-30 04:38:46 +00:00
|
|
|
default_spec_file_content = call_stack_deploy_init(ctx.obj)
|
2023-06-27 22:58:41 +00:00
|
|
|
spec_file_content = {"stack": stack}
|
2023-07-25 16:16:19 +00:00
|
|
|
if default_spec_file_content:
|
|
|
|
spec_file_content.update(default_spec_file_content)
|
2023-10-03 18:49:15 +00:00
|
|
|
config_variables = _parse_config_variables(config)
|
|
|
|
if config_variables:
|
|
|
|
# Implement merge, since update() overwrites
|
|
|
|
orig_config = spec_file_content["config"]
|
|
|
|
new_config = config_variables["config"]
|
|
|
|
merged_config = {**new_config, **orig_config}
|
|
|
|
spec_file_content.update({"config": merged_config})
|
|
|
|
if debug:
|
|
|
|
print(f"Creating spec file for stack: {stack} with content: {spec_file_content}")
|
2023-08-11 20:25:54 +00:00
|
|
|
|
2023-09-04 18:14:05 +00:00
|
|
|
ports = _get_mapped_ports(stack, map_ports_to_host)
|
|
|
|
spec_file_content["ports"] = ports
|
2023-08-11 20:25:54 +00:00
|
|
|
|
2023-06-27 22:58:41 +00:00
|
|
|
named_volumes = _get_named_volumes(stack)
|
|
|
|
if named_volumes:
|
|
|
|
volume_descriptors = {}
|
|
|
|
for named_volume in named_volumes:
|
2023-07-24 02:54:05 +00:00
|
|
|
volume_descriptors[named_volume] = f"./data/{named_volume}"
|
2023-06-27 22:58:41 +00:00
|
|
|
spec_file_content["volumes"] = volume_descriptors
|
2023-08-11 20:25:54 +00:00
|
|
|
|
2023-06-27 22:58:41 +00:00
|
|
|
with open(output, "w") as output_file:
|
|
|
|
yaml.dump(spec_file_content, output_file)
|
|
|
|
|
|
|
|
|
2023-10-03 18:49:15 +00:00
|
|
|
def _write_config_file(spec_file: Path, config_env_file: Path):
|
|
|
|
spec_content = get_parsed_deployment_spec(spec_file)
|
2023-10-09 20:54:55 +00:00
|
|
|
# Note: we want to write an empty file even if we have no config variables
|
|
|
|
with open(config_env_file, "w") as output_file:
|
|
|
|
if "config" in spec_content and spec_content["config"]:
|
|
|
|
config_vars = spec_content["config"]
|
|
|
|
if config_vars:
|
2023-10-03 18:49:15 +00:00
|
|
|
for variable_name, variable_value in config_vars.items():
|
|
|
|
output_file.write(f"{variable_name}={variable_value}\n")
|
|
|
|
|
|
|
|
|
2023-10-09 20:54:55 +00:00
|
|
|
def _copy_files_to_directory(file_paths: List[Path], directory: Path):
|
|
|
|
for path in file_paths:
|
|
|
|
# Using copy to preserve the execute bit
|
|
|
|
copy(path, os.path.join(directory, os.path.basename(path)))
|
|
|
|
|
|
|
|
|
2023-06-27 22:58:41 +00:00
|
|
|
@click.command()
|
|
|
|
@click.option("--spec-file", required=True, help="Spec file to use to create this deployment")
|
|
|
|
@click.option("--deployment-dir", help="Create deployment files in this directory")
|
2023-08-23 21:20:28 +00:00
|
|
|
# TODO: Hack
|
|
|
|
@click.option("--network-dir", help="Network configuration supplied in this directory")
|
2023-09-04 21:13:23 +00:00
|
|
|
@click.option("--initial-peers", help="Initial set of persistent peers")
|
2023-06-27 22:58:41 +00:00
|
|
|
@click.pass_context
|
2023-09-04 21:13:23 +00:00
|
|
|
def create(ctx, spec_file, deployment_dir, network_dir, initial_peers):
|
2023-06-27 22:58:41 +00:00
|
|
|
# This function fails with a useful error message if the file doens't exist
|
|
|
|
parsed_spec = get_parsed_deployment_spec(spec_file)
|
|
|
|
stack_name = parsed_spec['stack']
|
|
|
|
stack_file = get_stack_file_path(stack_name)
|
|
|
|
parsed_stack = get_parsed_stack_config(stack_name)
|
|
|
|
if global_options(ctx).debug:
|
|
|
|
print(f"parsed spec: {parsed_spec}")
|
|
|
|
if deployment_dir is None:
|
|
|
|
deployment_dir = _make_default_deployment_dir()
|
|
|
|
if os.path.exists(deployment_dir):
|
|
|
|
print(f"Error: {deployment_dir} already exists")
|
|
|
|
sys.exit(1)
|
|
|
|
os.mkdir(deployment_dir)
|
|
|
|
# Copy spec file and the stack file into the deployment dir
|
|
|
|
copyfile(spec_file, os.path.join(deployment_dir, os.path.basename(spec_file)))
|
|
|
|
copyfile(stack_file, os.path.join(deployment_dir, os.path.basename(stack_file)))
|
2023-10-03 18:49:15 +00:00
|
|
|
# Copy any config varibles from the spec file into an env file suitable for compose
|
|
|
|
_write_config_file(spec_file, os.path.join(deployment_dir, "config.env"))
|
2023-06-27 22:58:41 +00:00
|
|
|
# Copy the pod files into the deployment dir, fixing up content
|
2023-10-09 20:54:55 +00:00
|
|
|
pods = get_pod_list(parsed_stack)
|
2023-06-27 22:58:41 +00:00
|
|
|
destination_compose_dir = os.path.join(deployment_dir, "compose")
|
|
|
|
os.mkdir(destination_compose_dir)
|
2023-10-09 20:54:55 +00:00
|
|
|
destination_pods_dir = os.path.join(deployment_dir, "pods")
|
|
|
|
os.mkdir(destination_pods_dir)
|
2023-06-27 22:58:41 +00:00
|
|
|
data_dir = Path(__file__).absolute().parent.joinpath("data")
|
2023-07-24 02:54:05 +00:00
|
|
|
yaml = get_yaml()
|
2023-06-27 22:58:41 +00:00
|
|
|
for pod in pods:
|
2023-10-09 20:54:55 +00:00
|
|
|
pod_file_path = get_pod_file_path(parsed_stack, pod)
|
2023-06-27 22:58:41 +00:00
|
|
|
parsed_pod_file = yaml.load(open(pod_file_path, "r"))
|
2023-07-18 14:59:07 +00:00
|
|
|
extra_config_dirs = _find_extra_config_dirs(parsed_pod_file, pod)
|
2023-10-09 20:54:55 +00:00
|
|
|
destination_pod_dir = os.path.join(destination_pods_dir, pod)
|
|
|
|
os.mkdir(destination_pod_dir)
|
2023-07-18 14:59:07 +00:00
|
|
|
if global_options(ctx).debug:
|
|
|
|
print(f"extra config dirs: {extra_config_dirs}")
|
2023-06-28 03:18:04 +00:00
|
|
|
_fixup_pod_file(parsed_pod_file, parsed_spec, destination_compose_dir)
|
2023-06-27 22:58:41 +00:00
|
|
|
with open(os.path.join(destination_compose_dir, os.path.basename(pod_file_path)), "w") as output_file:
|
|
|
|
yaml.dump(parsed_pod_file, output_file)
|
|
|
|
# Copy the config files for the pod, if any
|
2023-07-18 14:59:07 +00:00
|
|
|
config_dirs = {pod}
|
|
|
|
config_dirs = config_dirs.union(extra_config_dirs)
|
|
|
|
for config_dir in config_dirs:
|
|
|
|
source_config_dir = data_dir.joinpath("config", config_dir)
|
|
|
|
if os.path.exists(source_config_dir):
|
|
|
|
destination_config_dir = os.path.join(deployment_dir, "config", config_dir)
|
|
|
|
# If the same config dir appears in multiple pods, it may already have been copied
|
|
|
|
if not os.path.exists(destination_config_dir):
|
|
|
|
copytree(source_config_dir, destination_config_dir)
|
2023-10-09 20:54:55 +00:00
|
|
|
# Copy the script files for the pod, if any
|
|
|
|
if pod_has_scripts(parsed_stack, pod):
|
|
|
|
destination_script_dir = os.path.join(destination_pod_dir, "scripts")
|
|
|
|
os.mkdir(destination_script_dir)
|
|
|
|
script_paths = get_pod_script_paths(parsed_stack, pod)
|
|
|
|
_copy_files_to_directory(script_paths, destination_script_dir)
|
2023-07-25 16:16:19 +00:00
|
|
|
# Delegate to the stack's Python code
|
2023-07-31 19:55:03 +00:00
|
|
|
# The deploy create command doesn't require a --stack argument so we need to insert the
|
|
|
|
# stack member here.
|
|
|
|
deployment_command_context = ctx.obj
|
|
|
|
deployment_command_context.stack = stack_name
|
2023-07-31 21:08:34 +00:00
|
|
|
deployment_context = DeploymentContext(Path(deployment_dir), deployment_command_context)
|
2023-09-04 21:13:23 +00:00
|
|
|
call_stack_deploy_create(deployment_context, [network_dir, initial_peers])
|
2023-07-24 02:54:05 +00:00
|
|
|
|
|
|
|
|
2023-08-23 21:20:28 +00:00
|
|
|
# TODO: this code should be in the stack .py files but
|
|
|
|
# we haven't yet figured out how to integrate click across
|
|
|
|
# the plugin boundary
|
2023-07-24 02:54:05 +00:00
|
|
|
@click.command()
|
2023-08-23 21:20:28 +00:00
|
|
|
@click.option("--node-moniker", help="Moniker for this node")
|
|
|
|
@click.option("--chain-id", help="The new chain id")
|
|
|
|
@click.option("--key-name", help="Name for new node key")
|
|
|
|
@click.option("--gentx-files", help="List of comma-delimited gentx filenames from other nodes")
|
|
|
|
@click.option("--genesis-file", help="Genesis file for the network")
|
|
|
|
@click.option("--initialize-network", is_flag=True, default=False, help="Initialize phase")
|
|
|
|
@click.option("--join-network", is_flag=True, default=False, help="Join phase")
|
|
|
|
@click.option("--create-network", is_flag=True, default=False, help="Create phase")
|
|
|
|
@click.option("--network-dir", help="Directory for network files")
|
2023-07-30 04:38:46 +00:00
|
|
|
@click.argument('extra_args', nargs=-1)
|
2023-07-24 02:54:05 +00:00
|
|
|
@click.pass_context
|
2023-08-23 21:20:28 +00:00
|
|
|
def setup(ctx, node_moniker, chain_id, key_name, gentx_files, genesis_file, initialize_network, join_network, create_network,
|
|
|
|
network_dir, extra_args):
|
|
|
|
parmeters = LaconicStackSetupCommand(chain_id, node_moniker, key_name, initialize_network, join_network, create_network,
|
|
|
|
gentx_files, genesis_file, network_dir)
|
|
|
|
call_stack_deploy_setup(ctx.obj, parmeters, extra_args)
|