ucloud-setup/app/scheduler.py

54 lines
1.6 KiB
Python
Raw Normal View History

2019-08-27 08:31:22 +00:00
import click
2019-09-07 08:10:28 +00:00
import subprocess as sp
2019-08-27 13:33:26 +00:00
import os
2019-08-28 16:07:08 +00:00
import shutil
2019-08-27 08:31:22 +00:00
2019-09-11 19:16:34 +00:00
from app.helper import clone_common, clone_etcd_wrapper, install_available
2019-08-28 11:42:50 +00:00
2019-08-27 08:31:22 +00:00
@click.group()
def scheduler():
pass
@scheduler.command("setup")
2019-08-27 13:33:26 +00:00
@click.option("--path", required=True)
@click.option("--vm_prefix", required=True)
@click.option("--host_prefix", required=True)
@click.option("--request_prefix", required=True)
2019-08-28 16:07:08 +00:00
@click.option("--etcd_url", required=True)
2019-09-07 08:10:28 +00:00
def setup(path, vm_prefix, host_prefix, request_prefix, etcd_url):
2019-08-27 13:33:26 +00:00
os.chdir(path)
2019-08-28 11:42:50 +00:00
2019-08-27 13:33:26 +00:00
repo_name = "ucloud-scheduler"
2019-08-28 11:42:50 +00:00
2019-09-07 08:10:28 +00:00
# Clone main repo
sp.check_output(['git', 'clone',
2019-09-08 15:58:33 +00:00
f'https://code.ungleich.ch/ungleich-public/{repo_name}.git'])
2019-09-07 08:10:28 +00:00
# Create .env file
with open(os.path.join(repo_name, ".env"), "w") as f:
content = (
f"VM_PREFIX={vm_prefix}\n"
f"HOST_PREFIX={host_prefix}\n"
f"REQUEST_PREFIX={request_prefix}\n"
f"ETCD_URL={etcd_url}\n"
)
f.writelines(content)
# Clone Common and Etcd Wrapper
2019-09-08 16:03:03 +00:00
clone_common(path=repo_name)
clone_etcd_wrapper(path=repo_name)
2019-09-07 08:10:28 +00:00
# Copy Etcd Wrapper inside ucloud_common as ucloud_common
# also needs etcd wrapper
2019-08-30 01:23:45 +00:00
shutil.copytree(
src=os.path.join(repo_name, "etcd3_wrapper"),
dst=os.path.join(repo_name, "ucloud_common", "etcd3_wrapper"),
)
2019-09-07 08:10:28 +00:00
2019-09-11 19:16:34 +00:00
install_available(os.path.join(repo_name, "Pipfile"))
2019-09-07 08:10:28 +00:00
# Create virtualenv with site-packages enabled and install all dependencies
2019-09-08 16:00:53 +00:00
sp.check_output(['pipenv','--site-packages', '--python', '3'], cwd=repo_name)
sp.check_output(['pipenv', 'install'], cwd=repo_name)