v2.0
Overview
This release brings significant updates and improvements to Fleex.
Below are the key changes in this release:
Command Refactoring
All commands have undergone comprehensive refactoring to enhance efficiency and maintainability:
delete
: Delete an existing fleet or even a single boximages
: Display image optionsinit
: Initialize Fleex (Run this the first time)ls
: List running boxesrun
: Send a command to a fleetscan
: Send a command to a fleet, along with file uploads and chunk splittingscp
: Send a file/folder to a fleet using SCPspawn
: Spawn a fleet or even a single boxssh
: Start an SSH terminal for a box
Configuration File Format Update
The configuration file format has been transitioned from YAML to JSON for improved readability and flexibility.
Provider Updates (DigitalOcean and Vultr)
At present, the DigitalOcean and Vultr providers have been temporarily disabled. These providers are undergoing updates and will soon be reinstated with additional enhancements.
Exciting Feature: Custom VPS Addition!
We are thrilled to introduce the ability to add custom VPS, marking a significant milestone in this release! To configure custom VPS, use the following format:
...
"custom_vms": [
{
"provider": "utm",
"instance_id": "fleex-test-1",
"public_ip": "{IP}",
"ssh_port": {PORT},
"username": "{USERNAME}",
"password": "{PASSWORD}",
"key_path": "/path/to/your/private-key.pem",
"tags": [
"staging"
]
}
]
...
Please replace the example values with your actual configuration details.
Stay tuned for more updates and features in future releases.
Thank you for your continued support and contributions to Fleex!
Note: Please remember to update your configuration files accordingly after the transition to JSON format.
What's Changed
- Update scp.go by @pradeepch99 in #16
- Add vultr by @pradeepch99 in #17
- vultr integration by @xm1k3 in #18
- Code refactor providers by @xm1k3 in #23
- replaced go get with go install by @remonsec in #26
- Update README.md by @b1bek in #31
- imp: packer implementation by @xm1k3 in #32
- remove image function by @xm1k3 in #33
- code refactoring linode by @xm1k3 in #35
- remove viper refs and replace with json config by @xm1k3 in #36
- New Features related to custom-vps && Fixes by @xm1k3 in #38
- added release ci by @xm1k3 in #41
- ssh logic also with custom vps by @xm1k3 in #43
New Contributors
- @pradeepch99 made their first contribution in #16
- @remonsec made their first contribution in #26
- @b1bek made their first contribution in #31
Full Changelog: v1.1...v2.0