ucloud-setup/app/image.py

53 lines
1.3 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 image():
pass
2019-08-28 11:42:50 +00:00
2019-08-27 13:33:26 +00:00
@image.command("setup")
2019-08-28 08:16:33 +00:00
@click.option("--path", required=True)
2019-08-28 19:11:36 +00:00
@click.option("--base_dir", required=True)
2019-08-28 18:58:00 +00:00
@click.option("--etcd_url", required=True)
@click.option("--etcd_password", required=True)
2019-08-28 19:11:36 +00:00
def setup(path, base_dir, 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-image-scanner"
2019-08-28 11:42:50 +00:00
op_result = GitOperation.clone(
f"https://code.ungleich.ch/ungleich-public/{repo_name}.git"
)
2019-08-28 19:11:36 +00:00
content = f"BASE_DIR={base_dir}\n" \
f"ETCD_URL={etcd_url}\n" \
2019-08-28 18:58:00 +00:00
f"ETCD_PASSWORD={etcd_password}\n"
op_result.add(
FileOperation.write, path=os.path.join(repo_name, ".env"), content=content
)
2019-08-28 11:42:50 +00:00
op_result.add(
GitOperation.clone,
path=repo_name,
url="https://code.ungleich.ch/ahmedbilal/etcd3_wrapper",
)
2019-08-29 17:51:43 +00:00
2019-08-27 13:33:26 +00:00
op_result.add(PipenvOperation.install, path=repo_name)
2019-08-28 11:42:50 +00:00
# Write Crontab entry
2019-08-28 18:58:00 +00:00
with open("/etc/crontabs/root", "a") as crontab:
crontab.write(f"*/5\t*\t*\t*\t*\tcd {os.path.join(os.getcwd(), repo_name)} && pipenv run python main.py")