2019-08-27 13:33:26 +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 17:28:56 +00:00
|
|
|
import shutil
|
2019-08-27 13:33:26 +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 13:33:26 +00:00
|
|
|
|
|
|
|
@click.group()
|
|
|
|
def host():
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
@host.command("setup")
|
|
|
|
@click.option("--path", required=True)
|
|
|
|
@click.option("--ssh_username", required=True)
|
|
|
|
@click.option("--ssh_key_path", required=True, help="For Example, ~/.ssh/id_rsa")
|
|
|
|
@click.option("--ssh_key_pass", required=True)
|
2019-08-28 17:28:56 +00:00
|
|
|
@click.option("--etcd_url", required=True)
|
2019-09-07 10:23:12 +00:00
|
|
|
@click.option("--without_ceph", default=False, type=bool)
|
|
|
|
def setup(path, ssh_username, ssh_key_path, ssh_key_pass, etcd_url, without_ceph):
|
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-vm"
|
2019-09-07 08:10:28 +00:00
|
|
|
|
|
|
|
# Clone main repo
|
2019-09-13 16:55:29 +00:00
|
|
|
sp.check_output(['git', 'clone', '--single-branch', '--branch', 'wip',
|
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"ssh_username={ssh_username}\n"
|
|
|
|
f"ssh_pkey={ssh_key_path}\n"
|
|
|
|
f"ssh_private_key_password={ssh_key_pass}\n"
|
|
|
|
f"ETCD_URL={etcd_url}\n"
|
2019-09-13 16:47:33 +00:00
|
|
|
f"WITHOUT_CEPH={without_ceph}\n",
|
|
|
|
f"VM_PREFIX=/v1/vm\n",
|
|
|
|
f"HOST_PREFIX=/v1/host\n",
|
|
|
|
f"IMAGE_PREFIX=/v1/image\n",
|
|
|
|
f"IMAGE_STORE_PREFIX=/v1/image_store\n",
|
2019-09-13 16:50:28 +00:00
|
|
|
f"REQUEST_PREFIX=/v1/request\n",
|
|
|
|
f"FILE_PREFIX=/v1/file\n"
|
2019-09-07 08:10:28 +00:00
|
|
|
)
|
|
|
|
f.writelines(content)
|
|
|
|
|
|
|
|
# Clone Common and Etcd Wrapper
|
2019-09-13 16:34:48 +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-09-13 16:34:48 +00:00
|
|
|
# shutil.copytree(
|
|
|
|
# src=os.path.join(repo_name, "etcd3_wrapper"),
|
|
|
|
# dst=os.path.join(repo_name, "ucloud_common", "etcd3_wrapper"),
|
|
|
|
# )
|
2019-08-30 01:23:45 +00:00
|
|
|
|
2019-09-12 08:20:28 +00:00
|
|
|
install_available(repo_name)
|
2019-09-11 19:16:34 +00:00
|
|
|
|
2019-09-07 08:10:28 +00:00
|
|
|
# Create virtualenv with site-packages enabled and install all dependencies
|
2019-09-14 06:36:36 +00:00
|
|
|
sp.check_output(['pipenv','--site-packages', '--three'], cwd=repo_name)
|
2019-09-08 16:00:53 +00:00
|
|
|
sp.check_output(['pipenv', 'install'], cwd=repo_name)
|