This project manages servers by rebooting using BCM due to crashes.
Project description
Starlyng Smart Reboot
This project manages servers by rebooting using BCM due to crashes.
Prerequisites
Install ipmitool on the server you will run the script. You can usually do this via your package manager:
- Ubuntu: sudo apt-get install ipmitool
- macOS: brew install ipmitool
- If outside local network, set Port Forwarding on the network for BCM IP to 623
Before you begin, ensure you have met the following requirements:
- You have installed Python 3.x.
- You have a basic understanding of Python and virtual environments.
Setting Up Your Development Environment
To set up your development environment and run the project, follow these steps:
Clone the Repository
First, clone the repository to your local machine:
git https://github.com/starlyngapp/smart-reboot.git
cd smart-reboot
Create and Activate Virtual Environment
For macOS and Linux:
python -m venv venv
source venv/bin/activate
For Windows:
python -m venv venv
venv\Scripts\activate
Setup Environment for VSCode
- Open the Command Palette (Ctrl+Shift+P)
- Search for the Python: Create Environment command, and select it
- Select Venv
- Select Python interpreter
- Select dependencies to install
Install Required Packages
Install all dependencies listed in the dev-requirements.txt file:
pip install -r dev-requirements.txt
Installation
To install only the package (without dev dependencies):
pip install starlyng_smart_reboot
To install development dependencies (useful for contributing to the project):
pip install starlyng_smart_reboot[dev]
Alternatively, you can install the development dependencies using:
pip install -r dev-requirements.txt
Environment Configuration
To configure smart reboot, you need to set up environment variables. This can be done by creating a .env file in the root of the project.
An example .env file is provided as .env.example. You can copy this file and update the values as needed.
Steps to Configure Environment Variables
- Copy the example environment file:
cp .env.example .env
- Open the
.envfile and update the values:
# .env
# List of server IPs and ports in the format ip:port, separated by commas
BCM_SERVERS=192.168.1.1:8001,192.168.1.2:8002
# BCM username
BCM_USER=user
# BCM password
BCM_PASSWORD=secret
- Save the
.envfile.
The BCM_SERVERS variable should be a comma-separated list of server IP addresses and ports.
Usage
To run the main function:
smart_reboot
PyPI
Command-line Arguments
You can also override configuration using command-line arguments:
smart_reboot --bcm_servers "192.168.1.1:22,192.168.1.2:22" --bcm_username "bcm_username" --bcm_password "secret"
Or locally:
python main.py --bcm_servers "192.168.1.1:22,192.168.1.2:22" --bcm_username "bcm_username" --bcm_password "secret"
Building and Uploading Your Package
- Build the package:
python setup.py sdist bdist_wheel
- Upload to PyPI:
twine upload dist/*
Upload using specific project name referenced in .pypirc
twine upload dist/* --repository starlyng-smart-reboot
Running Tests
To run tests, execute the following command in your terminal:
pytest
This command will run all tests and report the results. You can also run specific tests by providing the path and filename of the test file.
Contributing to the Project
Contributions to this project are welcome. Here's how you can contribute:
- Fork the project.
- Create your feature branch (git checkout -b feature/YourFeature).
- Commit your changes (git commit -am 'Add some YourFeature').
- Push to the branch (git push origin feature/YourFeature).
- Open a pull request.
Contact
If you have any questions, please contact us at:
- GitHub: @justinsherwood
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file starlyng_smart_reboot-0.1.2.tar.gz.
File metadata
- Download URL: starlyng_smart_reboot-0.1.2.tar.gz
- Upload date:
- Size: 12.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a32b58f8ef425722e7836d417d4878c4e676dc5e438dfc1cb2d280b5f0903e6
|
|
| MD5 |
45f33a6ef6abaf4dcce8fb2c42bddcab
|
|
| BLAKE2b-256 |
10e082111fdc74228eee0a32717932be5c1c8b988afb2809a13dc21631979984
|
File details
Details for the file starlyng_smart_reboot-0.1.2-py3-none-any.whl.
File metadata
- Download URL: starlyng_smart_reboot-0.1.2-py3-none-any.whl
- Upload date:
- Size: 14.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
069ba81b9170348e424534b95ed5ad9dc46399e2e7d83c3663bb18150f229221
|
|
| MD5 |
e0d9aa3a5a7affedfe677cc9268e3528
|
|
| BLAKE2b-256 |
187fcec63b05bc42af2b1f766cc976a2fe1a0542e078be98ab1144edac04836d
|