ucloud-setup/app/host.py

61 lines
1.4 KiB
Python
Raw Normal View History

2019-08-27 13:33:26 +00:00
import click
import subprocess
import os
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)
@click.option("--etcd_host", required=True)
@click.option("--etcd_port", required=True)
def setup(path, ssh_username, ssh_key_path, ssh_key_pass, etcd_host, etcd_port):
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(
f"https://code.ungleich.ch/ungleich-public/{repo_name}.git"
)
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_HOST={etcd_host}\n"
f"ETCD_PORT={etcd_port}\n"
)
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",
)
op_result.add(PipenvOperation.install, path=repo_name)