Manage servers by rebooting using BCM in case of crashes.
Project description
Starlyng Smart Reboot
This project manages servers by automatically rebooting them using Baseboard Management Controller (BCM) when crashes occur.
Prerequisites
Before you begin, ensure you have met the following requirements:
- Python 3.x installed
- Basic understanding of Python and virtual environments
- ipmitool installed on the server you will run the script:
- Ubuntu:
sudo apt-get install ipmitool - macOS:
brew install ipmitool
- Ubuntu:
- If outside local network, configure port forwarding on your router:
- Forward BCM port 623 to each server's unique port (62300-62399)
- Example: Forward port 62300 to 192.168.50.13:623, port 62301 to 192.168.50.14:623
- Port range must be between 62300-62399
Running
Using VSCode/Cursor
Run the Program:
- Go to the Run and Debug view (⌘+Shift+D, or Ctrl+Shift+D on Windows)
- Select the pre-configured launch configuration from the dropdown menu
- Click the green play button (F5) or use the "Run" menu to start the program
Setting Up Your Development Environment
-
Clone the repository:
git clone https://github.com/starlyngapp/smart-reboot.git cd smart-reboot
-
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
Create and activate a virtual environment:
- macOS/Linux:
python -m venv venv source venv/bin/activate
- Windows:
python -m venv venv venv\Scripts\activate
Releases to PyPi
This should be done through creating a new release in GitHub
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:623,192.168.1.2:623
# 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:623,192.168.1.2:623" --bcm_user "bcm_username" --bcm_pass "secret" --public_ip "false" --server_mgmt_dir "/path/to/server/mgmt/" --ssh_base_hostname "server" --ssh_key_path "/path/to/your/.ssh/id_rsa" --ssh_user "your_ssh_username" --ssh_vlan_id "10" --vast_api_key "vast_api_key"
Or locally:
python main.py --bcm_servers "192.168.1.1:623,192.168.1.2:623" --bcm_user "bcm_username" --bcm_pass "secret" --public_ip "false" --server_mgmt_dir "/path/to/server/mgmt/" --ssh_base_hostname "server" --ssh_key_path "/path/to/your/.ssh/id_rsa" --ssh_user "your_ssh_username" --ssh_vlan_id "10" --vast_api_key "vast_api_key"
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:
- 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.2.5.tar.gz.
File metadata
- Download URL: starlyng_smart_reboot-0.2.5.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14a1cc2031e73ddf0c3efe55b32284fc884cf70fed306d9988255c4096d21478
|
|
| MD5 |
9efd6e516c766ea9531c023e024d0c06
|
|
| BLAKE2b-256 |
d0eca5ecd96369f6923ce320da95c0038e0ac4660182e3f1471a9f6af019df16
|
File details
Details for the file starlyng_smart_reboot-0.2.5-py3-none-any.whl.
File metadata
- Download URL: starlyng_smart_reboot-0.2.5-py3-none-any.whl
- Upload date:
- Size: 12.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71ea7e869b02abb7d3635f759bf299c791705a92e0bba7e10deecd36ebd47ea7
|
|
| MD5 |
6b4c79f035656936c685bc129fab6ae6
|
|
| BLAKE2b-256 |
a771aa58e8eed5144ad5bfdb1640ad1a013c91baca73c3171ce1786fec0ff847
|