21 lines
428 B
Python
21 lines
428 B
Python
import logging
|
|
|
|
from etcd3_wrapper import Etcd3Wrapper
|
|
from decouple import config
|
|
|
|
from ucloud_common.vm import VmPool
|
|
|
|
logging.basicConfig(
|
|
level=logging.DEBUG,
|
|
filename="log.txt",
|
|
filemode="a",
|
|
format="%(asctime)s: %(levelname)s - %(message)s",
|
|
datefmt="%d-%b-%y %H:%M:%S",
|
|
)
|
|
|
|
|
|
VM_PREFIX = config("VM_PREFIX")
|
|
|
|
etcd_client = Etcd3Wrapper(host=config("ETCD_URL"))
|
|
|
|
VM_POOL = VmPool(etcd_client, VM_PREFIX)
|