This python script has been written in order to decrease virtual machine deployment times and costs. These scripts are supposed to be placed into Virtual Machines and get triggered by a cronjob within specific time periods. The script uses the UUID of the VM to access its information through the public API. Then it checks whether there are any changes in storage, hostname, and password and update the VM according to that.
- Storage Size
- Hostname
- Password
If the client make any change in the dashboard about the configurations that are listed above, this python script will detect changes, and apply these changes to the instance. Most of the essential parts of this code are executed on the fly.
python3.8 -m pip asd plusclouds
python3.8 -m plusclouds
- Maintanence of the code for the future.
- You can update the module instead of changing the scripts in each Virtual Machine Image.
- The script can run locally and can be updated when necessary via plusclouds api.
- Python 3.8
- Python3 distro package (1.8.0)
- Python3 request package (2.28.1)
- Logging is limited to two files that are 2MB each. You can change the size and count of log files by changing maxBytes, and backupCount input variables in RotatingFileHandler call.
- For the hosname and password policy in Windows Servers, you can check the following links
- Instead of installing with the second option (By running the shown python script), it is best to periodically check for module updates by executing the following command.
python3.8 -m pip asd --upgrade plusclouds
- Installing the module locally save up to 75mb of traffic per VM daily.
. ├── LICENSE ├── plusclouds-service │ ├── __init__.py │ ├── __main__.py │ ├── module_search │ │ ├── ansible_operations.py │ │ ├── callback_agent.py │ │ ├── __init__.py │ │ └── service_search.py │ ├── requirements.txt │ ├── service.py │ ├── storage.py │ └── util │ └── ssh_keys │ ├── __init__.py │ └── ssh_key_parser.py ├── pyproject.toml ├── README.md └── requirements.txt
- The driver code for all the checks such as storage, hostname, and password. Responsible for handling the response taken from the server.
- create_file_if_not_exists(fname: str) -> None
- creates file in given "fname" path if not exists
- create_folder_if_not_exists(dirname: str) -> None
- create folder in given "dirname" path if not exists
- file_read(fname: str) -> str
- reads and returns the first line of file located in "fname"
- file_write(fname: str, data: str) -> None
- writes "data" to file located in "fname" by overwriting the file contents.
- file_exists(fname: str) -> bool
- returns true if file_exists otherise returns false.
- get_distribution() -> str
- returns the full distibution of the operating system.
- extend_disk() -> None:
- extends disk based on the current distribution
- check_disk(uuid: str) -> None
- checks if there are any changes in the disk and if there are, executes extend_disk function based on the current OS
- ansible_operations.py
- execute_playbook_script (directory: str)
- executes the script in yml playbook.
- download(url, dest_folder)
- downloads downloadable contents in the given url and saves them to "dest_folder"
- unzip(directory: str)
- unzips the compressed file in given directory to the same directory
- execute_playbook_script (directory: str)
- callback_agent.py
- class CallbackAgent
- creates a callback agent in given url
- class CallbackAgent
- service_search.py
- class PlusCloudsService
- creates two instances of CallbackAgent, one for service reports, one for ansible reports and downloads service files if missing. Initiates ansible and runs the playbook script.
- class PlusCloudsService
- Centos (7,8)
- Debian (9,10,11)
- Pardus (18.0,19.0)
- Ubuntu (16.04,18.04,19.04,19.10,20.04)
- Windows Server (2016,2019)
- %400 faster deployment time.
- %65 decreased bandwidth usage.
- %35 less errors during deployment.
- Talha Unsel - [email protected]
- Yigithan Saglam - [email protected]
- Semih Yönet - [email protected]
- Zekican Budin - [email protected]
- Harun Barış Bulut - [email protected]
- Zekican Budin - [email protected]