ucloud-setup/app/host.py

68 lines
1.7 KiB
Python
Raw Normal View History

2019-08-27 13:33:26 +00:00
import click
import subprocess
import os
2019-08-28 17:28:56 +00:00
import shutil
2019-08-27 13:33:26 +00:00
2019-08-28 11:42:50 +00:00
from app.helper import (
clone,
clone_common,
clone_etcd_wrapper,
GitOperation,
PipenvOperation,
FileOperation,
)
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)
@click.option("--etcd_password", required=True)
def setup(path, ssh_username, ssh_key_path, ssh_key_pass, etcd_url, etcd_password):
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-08-28 11:42:50 +00:00
op_result = GitOperation.clone(
2019-08-30 14:46:31 +00:00
f"https://code.ungleich.ch/ungleich-public/{repo_name}.git",
arguments="-b wip"
2019-08-28 11:42:50 +00:00
)
content = (
f"ssh_username={ssh_username}\n"
f"ssh_pkey={ssh_key_path}\n"
f"ssh_private_key_password={ssh_key_pass}\n"
2019-08-28 17:28:56 +00:00
f"ETCD_URL={etcd_url}\n"
f"ETCD_PASSWORD={etcd_password}\n"
2019-08-28 11:42:50 +00:00
)
op_result.add(
FileOperation.write, path=os.path.join(repo_name, ".env"), content=content
)
op_result.add(
GitOperation.clone,
path=repo_name,
url="https://code.ungleich.ch/ungleich-public/ucloud_common",
)
op_result.add(
GitOperation.clone,
path=repo_name,
url="https://code.ungleich.ch/ahmedbilal/etcd3_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-08-30 14:19:37 +00:00
op_result.add(PipenvOperation.create, path=repo_name, site_packages=True)
op_result.add(PipenvOperation.install, path=repo_name)