mythic-beasts 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/README.md +32 -0
- data/lib/mythic_beasts/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b3ce37ca163918f82d1612c56fc75ce81e8de315abf65500a90b98ff6ca586dd
|
|
4
|
+
data.tar.gz: 21885db9c87b16458429a26a886b5873437d29d4232d7b11833ce9a9c2016029
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b4629b547c7aa646fdba1eedf30c51d9e524005f3e8c7de3c112abc1d38f305a1befa6f421cf2334520e9a8ba683450709b7398a7e29bdd2f8f1bb6ddf204e2a
|
|
7
|
+
data.tar.gz: 8e9e1879278b5b9fa898328835be2ceaa3bcb1a4d6dd809f58050374903e609869a5af216095e09fb46f8a72b7f0a92d0e4944c7ca85afbf7e44d98fa6f68586
|
data/CHANGELOG.md
CHANGED
|
@@ -5,21 +5,25 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [0.1.
|
|
8
|
+
## [0.1.2] - 2025-11-05
|
|
9
9
|
|
|
10
10
|
### Added
|
|
11
11
|
|
|
12
12
|
- VPS zones listing method (`MythicBeasts.client.vps.zones`) to query available datacenters
|
|
13
13
|
- VPS types listing method (`MythicBeasts.client.vps.types`) to query available VPS plans
|
|
14
14
|
- Optional parameters for VPS creation: `location`, `service`, `description`, `notes`
|
|
15
|
+
- IPv6-only VPS provisioning support (`ipv4: false`) for cost savings
|
|
15
16
|
- Example scripts in `examples/` directory:
|
|
16
17
|
- `list_zones_and_types.rb` - List available zones and VPS types
|
|
17
18
|
- `provision_vps.rb` - Complete VPS provisioning example
|
|
19
|
+
- `ipv6_only_vps.rb` - IPv6-only VPS with proxy setup guide
|
|
20
|
+
- Test coverage for IPv6-only VPS provisioning
|
|
18
21
|
|
|
19
22
|
### Changed
|
|
20
23
|
|
|
21
24
|
- Updated README with new VPS methods and examples
|
|
22
25
|
- Improved VPS create documentation with optional parameters
|
|
26
|
+
- Added IPv6-only servers documentation with proxy setup instructions
|
|
23
27
|
|
|
24
28
|
## [0.1.0] - 2025-01-27
|
|
25
29
|
|
data/README.md
CHANGED
|
@@ -124,6 +124,37 @@ console = MythicBeasts.client.vps.console('my-server')
|
|
|
124
124
|
MythicBeasts.client.vps.delete('my-server')
|
|
125
125
|
```
|
|
126
126
|
|
|
127
|
+
#### IPv6-Only Servers (Cost Savings)
|
|
128
|
+
|
|
129
|
+
Provision cheaper IPv6-only servers without IPv4 addresses. Perfect for services accessible via Mythic Beasts' IPv4-to-IPv6 proxy:
|
|
130
|
+
|
|
131
|
+
```ruby
|
|
132
|
+
# Create an IPv6-only VPS (cheaper!)
|
|
133
|
+
MythicBeasts.client.vps.create(
|
|
134
|
+
name: 'my-ipv6-server',
|
|
135
|
+
type: 'VPS-2',
|
|
136
|
+
ipv4: false, # No IPv4 address = lower cost
|
|
137
|
+
ssh_key: 'ssh-rsa AAAAB3...',
|
|
138
|
+
location: 'london'
|
|
139
|
+
)
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
**IPv4-to-IPv6 Proxy Setup:**
|
|
143
|
+
|
|
144
|
+
1. Provision your IPv6-only VPS (as shown above)
|
|
145
|
+
2. In Mythic Beasts control panel, configure IPv4-to-IPv6 proxy
|
|
146
|
+
3. Point your domain's DNS to `proxy.mythic-beasts.com` (CNAME or ANAME)
|
|
147
|
+
|
|
148
|
+
**Supported proxy protocols:**
|
|
149
|
+
|
|
150
|
+
- HTTP (port 80) and HTTPS (port 443)
|
|
151
|
+
- IMAPS (port 993) and SMTPS (port 465)
|
|
152
|
+
- Gemini (port 1965)
|
|
153
|
+
|
|
154
|
+
See `examples/ipv6_only_vps.rb` for a complete working example with setup instructions.
|
|
155
|
+
|
|
156
|
+
**Documentation:** [IPv4 to IPv6 Proxy](https://www.mythic-beasts.com/support/topics/proxy)
|
|
157
|
+
|
|
127
158
|
## Error Handling
|
|
128
159
|
|
|
129
160
|
The gem provides specific error classes:
|
|
@@ -157,6 +188,7 @@ See the `examples/` directory for complete working examples:
|
|
|
157
188
|
|
|
158
189
|
- `examples/list_zones_and_types.rb` - List available zones and VPS types
|
|
159
190
|
- `examples/provision_vps.rb` - Provision a new VPS server
|
|
191
|
+
- `examples/ipv6_only_vps.rb` - Provision an IPv6-only VPS with proxy setup guide
|
|
160
192
|
|
|
161
193
|
Run examples with:
|
|
162
194
|
|