terradev-cli 1.0.0__tar.gz
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.
- terradev_cli-1.0.0/PKG-INFO +551 -0
- terradev_cli-1.0.0/README.md +492 -0
- terradev_cli-1.0.0/setup.cfg +4 -0
- terradev_cli-1.0.0/setup.py +99 -0
- terradev_cli-1.0.0/terradev_cli.egg-info/PKG-INFO +551 -0
- terradev_cli-1.0.0/terradev_cli.egg-info/SOURCES.txt +9 -0
- terradev_cli-1.0.0/terradev_cli.egg-info/dependency_links.txt +1 -0
- terradev_cli-1.0.0/terradev_cli.egg-info/entry_points.txt +2 -0
- terradev_cli-1.0.0/terradev_cli.egg-info/not-zip-safe +1 -0
- terradev_cli-1.0.0/terradev_cli.egg-info/requires.txt +33 -0
- terradev_cli-1.0.0/terradev_cli.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,551 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: terradev-cli
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Parallel provisioning and orchestration for cross-cloud optimized compute
|
|
5
|
+
Home-page: https://github.com/terradev/terradev-cli
|
|
6
|
+
Author: Terradev Team
|
|
7
|
+
Author-email: team@terradev.com
|
|
8
|
+
Project-URL: Bug Reports, https://github.com/terradev/terradev-cli/issues
|
|
9
|
+
Project-URL: Source, https://github.com/terradev/terradev-cli
|
|
10
|
+
Project-URL: Documentation, https://docs.terradev.com
|
|
11
|
+
Project-URL: Changelog, https://github.com/terradev/terradev-cli/blob/main/CHANGELOG.md
|
|
12
|
+
Keywords: cloud,compute,gpu,provisioning,optimization,multi-cloud,parallel,cost-savings,aws,gcp,azure,machine-learning,ai,infrastructure
|
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Intended Audience :: System Administrators
|
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Topic :: System :: Systems Administration
|
|
24
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
25
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
26
|
+
Requires-Python: >=3.9
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
Requires-Dist: click>=8.1.0
|
|
29
|
+
Requires-Dist: aiohttp>=3.8.0
|
|
30
|
+
Requires-Dist: asyncio-throttle>=1.0.2
|
|
31
|
+
Requires-Dist: cryptography>=3.4.8
|
|
32
|
+
Requires-Dist: pyyaml>=6.0
|
|
33
|
+
Requires-Dist: tabulate>=0.9.0
|
|
34
|
+
Requires-Dist: colorama>=0.4.5
|
|
35
|
+
Requires-Dist: rich>=12.0.0
|
|
36
|
+
Requires-Dist: boto3>=1.26.0
|
|
37
|
+
Requires-Dist: google-cloud-compute>=1.8.0
|
|
38
|
+
Requires-Dist: azure-mgmt-compute>=29.0.0
|
|
39
|
+
Requires-Dist: azure-identity>=1.12.0
|
|
40
|
+
Requires-Dist: pandas>=1.5.0
|
|
41
|
+
Requires-Dist: numpy>=1.24.0
|
|
42
|
+
Requires-Dist: python-dotenv>=0.19.0
|
|
43
|
+
Requires-Dist: requests>=2.28.0
|
|
44
|
+
Requires-Dist: urllib3>=1.26.0
|
|
45
|
+
Requires-Dist: jmespath>=1.0.0
|
|
46
|
+
Requires-Dist: six>=1.16.0
|
|
47
|
+
Provides-Extra: dev
|
|
48
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
49
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
50
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
51
|
+
Requires-Dist: black>=22.0.0; extra == "dev"
|
|
52
|
+
Requires-Dist: flake8>=5.0.0; extra == "dev"
|
|
53
|
+
Requires-Dist: mypy>=1.0.0; extra == "dev"
|
|
54
|
+
Requires-Dist: pre-commit>=2.20.0; extra == "dev"
|
|
55
|
+
Provides-Extra: docs
|
|
56
|
+
Requires-Dist: sphinx>=5.0.0; extra == "docs"
|
|
57
|
+
Requires-Dist: sphinx-rtd-theme>=1.0.0; extra == "docs"
|
|
58
|
+
Requires-Dist: myst-parser>=0.18.0; extra == "docs"
|
|
59
|
+
|
|
60
|
+
# π Terradev CLI - Cross-Cloud Compute Optimization Platform
|
|
61
|
+
|
|
62
|
+
**Parallel provisioning and orchestration for cross-cloud optimized compute.**
|
|
63
|
+
|
|
64
|
+
Terradev operates faster than any sequential tool by orders of magnitude to find and stage datasets, then deploy optimal compute instances across multiple cloud providers simultaneously.
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## π― Overview
|
|
69
|
+
|
|
70
|
+
Terradev is a CLI tool that fits as a set of procurement heuristics in-between tools like Grafana, Kubernetes and cloud-compute providers. It combines parallel quoting, latency testing, parallelized data storage, and automated containerized deployment to save developers running portable workloads **20%+ on compute costs**.
|
|
71
|
+
|
|
72
|
+
### π Key Features
|
|
73
|
+
|
|
74
|
+
- **π Parallel Provisioning**: Query all cloud providers simultaneously for optimal pricing
|
|
75
|
+
- **π° Cost Optimization**: Save 20%+ on compute costs through intelligent provider selection
|
|
76
|
+
- **π Multi-Cloud Support**: AWS, GCP, Azure, RunPod, VastAI, Lambda Labs, CoreWeave, TensorDock
|
|
77
|
+
- **β‘ Real-Time Quoting**: Get instant quotes from all providers in parallel
|
|
78
|
+
- **π Analytics & Insights**: Comprehensive cost analytics and optimization recommendations
|
|
79
|
+
- **π³ Container Orchestration**: Automated deployment and management
|
|
80
|
+
- **π¦ Dataset Staging**: Parallel dataset staging across regions for optimal access
|
|
81
|
+
- **π Secure Credential Management**: Encrypted storage of cloud provider credentials
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
85
|
+
## π οΈ Installation
|
|
86
|
+
|
|
87
|
+
### Prerequisites
|
|
88
|
+
|
|
89
|
+
- Python 3.9+
|
|
90
|
+
- Cloud provider accounts and API keys
|
|
91
|
+
- Docker (for containerized deployments)
|
|
92
|
+
|
|
93
|
+
### Quick Install
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
# Clone the repository
|
|
97
|
+
git clone https://github.com/terradev/terradev-cli.git
|
|
98
|
+
cd terradev-cli
|
|
99
|
+
|
|
100
|
+
# Install dependencies
|
|
101
|
+
pip install -r requirements.txt
|
|
102
|
+
|
|
103
|
+
# Install CLI
|
|
104
|
+
pip install -e .
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
### Verify Installation
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
terradev --version
|
|
111
|
+
terradev --help
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
## π§ Configuration
|
|
117
|
+
|
|
118
|
+
### Initial Setup
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
# Configure your cloud providers
|
|
122
|
+
terradev configure --provider aws --region us-east-1
|
|
123
|
+
terradev configure --provider gcp --region us-central1
|
|
124
|
+
terradev configure --provider runpod
|
|
125
|
+
|
|
126
|
+
# View current configuration
|
|
127
|
+
terradev configure
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
### Supported Providers
|
|
131
|
+
|
|
132
|
+
| Provider | GPU Types | Regions | Features |
|
|
133
|
+
|----------|-----------|---------|----------|
|
|
134
|
+
| **AWS** | A100, V100, H100 | Global | Spot instances, on-demand |
|
|
135
|
+
| **GCP** | A100, V100, T4 | Global | Preemptible instances |
|
|
136
|
+
| **Azure** | A100, V100 | Global | Spot instances |
|
|
137
|
+
| **RunPod** | RTX4090, A100 | Global | GPU cloud platform |
|
|
138
|
+
| **VastAI** | A100, RTX4090 | Global | Marketplace |
|
|
139
|
+
| **Lambda Labs** | A100, RTX6000 | Global | AI cloud |
|
|
140
|
+
| **CoreWeave** | A100, RTX4090 | Global | Kubernetes |
|
|
141
|
+
| **TensorDock** | RTX4090, A100 | Global | GPU marketplace |
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## π Quick Start
|
|
146
|
+
|
|
147
|
+
### 1. Get Real-Time Quotes
|
|
148
|
+
|
|
149
|
+
```bash
|
|
150
|
+
# Get quotes for A100 GPUs across all providers
|
|
151
|
+
terradev quote --gpu-type A100 --parallel 8
|
|
152
|
+
|
|
153
|
+
# Filter by specific providers and regions
|
|
154
|
+
terradev quote --gpu-type V100 --providers aws gcp runpod --region us-east-1
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
### 2. Provision Instances
|
|
158
|
+
|
|
159
|
+
```bash
|
|
160
|
+
# Provision optimal A100 instances
|
|
161
|
+
terradev provision --gpu-type A100 --count 2 --max-price 3.0
|
|
162
|
+
|
|
163
|
+
# Dry run to see what would be provisioned
|
|
164
|
+
terradev provision --gpu-type RTX4090 --count 1 --dry-run
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
### 3. Manage Instances
|
|
168
|
+
|
|
169
|
+
```bash
|
|
170
|
+
# View all instances
|
|
171
|
+
terradev status
|
|
172
|
+
|
|
173
|
+
# Manage specific instance
|
|
174
|
+
terradev manage --instance-id aws_i-1234567890abcdef --action status
|
|
175
|
+
terradev manage --instance-id runpod_abc123 --action stop
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
### 4. Stage Datasets
|
|
179
|
+
|
|
180
|
+
```bash
|
|
181
|
+
# Stage dataset across multiple regions
|
|
182
|
+
terradev stage --dataset "my-training-data" --target-regions us-east-1 us-west-2 eu-west-1
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
### 5. Execute Commands
|
|
186
|
+
|
|
187
|
+
```bash
|
|
188
|
+
# Execute commands on instances
|
|
189
|
+
terradev execute --instance-id aws_i-1234567890abcdef --command "nvidia-smi"
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
---
|
|
193
|
+
|
|
194
|
+
## π Advanced Features
|
|
195
|
+
|
|
196
|
+
### Cost Analytics
|
|
197
|
+
|
|
198
|
+
```bash
|
|
199
|
+
# View cost analytics for the last 30 days
|
|
200
|
+
terradev analytics --days 30 --format table
|
|
201
|
+
|
|
202
|
+
# Get JSON output for integration
|
|
203
|
+
terradev analytics --days 7 --format json
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
### Automatic Optimization
|
|
207
|
+
|
|
208
|
+
```bash
|
|
209
|
+
# Run cost optimization recommendations
|
|
210
|
+
terradev optimize
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
### Dataset Management
|
|
214
|
+
|
|
215
|
+
```bash
|
|
216
|
+
# Stage with compression
|
|
217
|
+
terradev stage --dataset "large-dataset.zip" --compression high --target-regions us-east-1
|
|
218
|
+
|
|
219
|
+
# Stage to specific cloud regions
|
|
220
|
+
terradev stage --dataset "training-images" --target-regions us-east-1 eu-west-1 asia-east-1
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
---
|
|
224
|
+
|
|
225
|
+
## π API Integration
|
|
226
|
+
|
|
227
|
+
### Environment Variables
|
|
228
|
+
|
|
229
|
+
```bash
|
|
230
|
+
export TERRADEV_CONFIG_PATH="$HOME/.terradev/config.json"
|
|
231
|
+
export TERRADEV_AUTH_PATH="$HOME/.terradev/auth.json"
|
|
232
|
+
export TERRADEV_LOG_LEVEL="INFO"
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
### Configuration File
|
|
236
|
+
|
|
237
|
+
```json
|
|
238
|
+
{
|
|
239
|
+
"default_providers": ["aws", "gcp", "runpod"],
|
|
240
|
+
"parallel_queries": 6,
|
|
241
|
+
"max_price_threshold": 10.0,
|
|
242
|
+
"preferred_regions": ["us-east-1", "us-west-2", "eu-west-1"],
|
|
243
|
+
"optimization_settings": {
|
|
244
|
+
"price_weight": 0.4,
|
|
245
|
+
"latency_weight": 0.2,
|
|
246
|
+
"reliability_weight": 0.3,
|
|
247
|
+
"availability_weight": 0.1
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
```
|
|
251
|
+
|
|
252
|
+
---
|
|
253
|
+
|
|
254
|
+
## π Security
|
|
255
|
+
|
|
256
|
+
### Credential Management
|
|
257
|
+
|
|
258
|
+
Terradev uses encrypted credential storage:
|
|
259
|
+
|
|
260
|
+
```bash
|
|
261
|
+
# Credentials are encrypted at rest
|
|
262
|
+
ls ~/.terradev/
|
|
263
|
+
# config.json auth.json
|
|
264
|
+
|
|
265
|
+
# Backup credentials securely
|
|
266
|
+
terradev backup --file my-backup.json
|
|
267
|
+
|
|
268
|
+
# Restore credentials
|
|
269
|
+
terradev restore --file my-backup.json
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
### Security Features
|
|
273
|
+
|
|
274
|
+
- **π Encrypted Storage**: All credentials encrypted with Fernet
|
|
275
|
+
- **π Secure Key Management**: Automatic key generation and rotation
|
|
276
|
+
- **π‘οΈ Permission Control**: Role-based access to cloud resources
|
|
277
|
+
- **π Audit Trail**: Complete audit log of all operations
|
|
278
|
+
- **π Token Rotation**: Automatic API key rotation support
|
|
279
|
+
|
|
280
|
+
---
|
|
281
|
+
|
|
282
|
+
## π Performance
|
|
283
|
+
|
|
284
|
+
### Parallel Processing
|
|
285
|
+
|
|
286
|
+
Terradev achieves **4-6x faster** provisioning through parallel processing:
|
|
287
|
+
|
|
288
|
+
```bash
|
|
289
|
+
# Sequential approach (slow)
|
|
290
|
+
# Provider 1: 2.5s β Provider 2: 2.3s β Provider 3: 2.7s = 7.5s total
|
|
291
|
+
|
|
292
|
+
# Terradev parallel approach (fast)
|
|
293
|
+
# Provider 1: 2.5s β
|
|
294
|
+
# Provider 2: 2.3s β 2.7s total (fastest provider)
|
|
295
|
+
# Provider 3: 2.7s β
|
|
296
|
+
```
|
|
297
|
+
|
|
298
|
+
### Cost Savings
|
|
299
|
+
|
|
300
|
+
Typical cost savings with Terradev:
|
|
301
|
+
|
|
302
|
+
- **AWS Spot vs On-Demand**: 60-70% savings
|
|
303
|
+
- **Multi-Cloud Arbitrage**: 15-25% savings
|
|
304
|
+
- **Regional Optimization**: 10-20% savings
|
|
305
|
+
- **Dataset Staging**: 50-80% egress cost reduction
|
|
306
|
+
|
|
307
|
+
---
|
|
308
|
+
|
|
309
|
+
## π³ Docker Integration
|
|
310
|
+
|
|
311
|
+
### Containerized Deployment
|
|
312
|
+
|
|
313
|
+
```bash
|
|
314
|
+
# Build Docker image
|
|
315
|
+
docker build -t terradev-cli .
|
|
316
|
+
|
|
317
|
+
# Run with mounted credentials
|
|
318
|
+
docker run -v ~/.terradev:/root/.terradev terradev-cli quote --gpu-type A100
|
|
319
|
+
```
|
|
320
|
+
|
|
321
|
+
### Kubernetes Deployment
|
|
322
|
+
|
|
323
|
+
```yaml
|
|
324
|
+
apiVersion: batch/v1
|
|
325
|
+
kind: Job
|
|
326
|
+
metadata:
|
|
327
|
+
name: terradev-provision
|
|
328
|
+
spec:
|
|
329
|
+
template:
|
|
330
|
+
spec:
|
|
331
|
+
containers:
|
|
332
|
+
- name: terradev
|
|
333
|
+
image: terradev-cli:latest
|
|
334
|
+
command: ["terradev", "provision", "--gpu-type", "A100"]
|
|
335
|
+
volumeMounts:
|
|
336
|
+
- name: config
|
|
337
|
+
mountPath: /root/.terradev
|
|
338
|
+
volumes:
|
|
339
|
+
- name: config
|
|
340
|
+
secret:
|
|
341
|
+
secretName: terradev-config
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
---
|
|
345
|
+
|
|
346
|
+
## π Monitoring & Analytics
|
|
347
|
+
|
|
348
|
+
### Real-Time Monitoring
|
|
349
|
+
|
|
350
|
+
```bash
|
|
351
|
+
# Monitor provisioning progress
|
|
352
|
+
terradev status --watch
|
|
353
|
+
|
|
354
|
+
# Get detailed analytics
|
|
355
|
+
terradev analytics --days 30 --detailed
|
|
356
|
+
```
|
|
357
|
+
|
|
358
|
+
### Integration with Grafana
|
|
359
|
+
|
|
360
|
+
Terradev provides metrics for Grafana dashboards:
|
|
361
|
+
|
|
362
|
+
- **Cost Metrics**: Real-time cost tracking
|
|
363
|
+
- **Performance Metrics**: Provisioning speed and success rates
|
|
364
|
+
- **Utilization Metrics**: GPU utilization and availability
|
|
365
|
+
- **Savings Metrics**: Cost savings and optimization impact
|
|
366
|
+
|
|
367
|
+
---
|
|
368
|
+
|
|
369
|
+
## π§ Troubleshooting
|
|
370
|
+
|
|
371
|
+
### Common Issues
|
|
372
|
+
|
|
373
|
+
#### Authentication Errors
|
|
374
|
+
|
|
375
|
+
```bash
|
|
376
|
+
# Check credentials
|
|
377
|
+
terradev configure
|
|
378
|
+
|
|
379
|
+
# Re-authenticate
|
|
380
|
+
terradev configure --provider aws --api-key YOUR_KEY --secret-key YOUR_SECRET
|
|
381
|
+
```
|
|
382
|
+
|
|
383
|
+
#### Provider Connection Issues
|
|
384
|
+
|
|
385
|
+
```bash
|
|
386
|
+
# Test provider connectivity
|
|
387
|
+
terradev quote --provider aws --gpu-type A100 --dry-run
|
|
388
|
+
|
|
389
|
+
# Check logs
|
|
390
|
+
terradev --verbose status
|
|
391
|
+
```
|
|
392
|
+
|
|
393
|
+
#### Instance Provisioning Failures
|
|
394
|
+
|
|
395
|
+
```bash
|
|
396
|
+
# Check instance status
|
|
397
|
+
terradev manage --instance-id INSTANCE_ID --action status
|
|
398
|
+
|
|
399
|
+
# View detailed error logs
|
|
400
|
+
terradev --verbose provision --gpu-type A100 --dry-run
|
|
401
|
+
```
|
|
402
|
+
|
|
403
|
+
### Debug Mode
|
|
404
|
+
|
|
405
|
+
```bash
|
|
406
|
+
# Enable verbose logging
|
|
407
|
+
terradev --verbose quote --gpu-type A100
|
|
408
|
+
|
|
409
|
+
# Debug specific provider
|
|
410
|
+
terradev --verbose quote --provider aws --gpu-type A100
|
|
411
|
+
```
|
|
412
|
+
|
|
413
|
+
---
|
|
414
|
+
|
|
415
|
+
## π€ Contributing
|
|
416
|
+
|
|
417
|
+
### Development Setup
|
|
418
|
+
|
|
419
|
+
```bash
|
|
420
|
+
# Clone repository
|
|
421
|
+
git clone https://github.com/terradev/terradev-cli.git
|
|
422
|
+
cd terradev-cli
|
|
423
|
+
|
|
424
|
+
# Create virtual environment
|
|
425
|
+
python -m venv venv
|
|
426
|
+
source venv/bin/activate # Linux/Mac
|
|
427
|
+
# or
|
|
428
|
+
venv\Scripts\activate # Windows
|
|
429
|
+
|
|
430
|
+
# Install development dependencies
|
|
431
|
+
pip install -r requirements-dev.txt
|
|
432
|
+
|
|
433
|
+
# Install in development mode
|
|
434
|
+
pip install -e .
|
|
435
|
+
```
|
|
436
|
+
|
|
437
|
+
### Running Tests
|
|
438
|
+
|
|
439
|
+
```bash
|
|
440
|
+
# Run all tests
|
|
441
|
+
pytest
|
|
442
|
+
|
|
443
|
+
# Run specific test
|
|
444
|
+
pytest tests/test_providers.py
|
|
445
|
+
|
|
446
|
+
# Run with coverage
|
|
447
|
+
pytest --cov=terradev_cli
|
|
448
|
+
```
|
|
449
|
+
|
|
450
|
+
### Adding New Providers
|
|
451
|
+
|
|
452
|
+
1. Create provider class in `terradev_cli/providers/`
|
|
453
|
+
2. Implement `BaseProvider` interface
|
|
454
|
+
3. Register in `ProviderFactory`
|
|
455
|
+
4. Add tests
|
|
456
|
+
5. Update documentation
|
|
457
|
+
|
|
458
|
+
---
|
|
459
|
+
|
|
460
|
+
## π License
|
|
461
|
+
|
|
462
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
463
|
+
|
|
464
|
+
---
|
|
465
|
+
|
|
466
|
+
## π Support
|
|
467
|
+
|
|
468
|
+
### Getting Help
|
|
469
|
+
|
|
470
|
+
- **Documentation**: [Full documentation](https://docs.terradev.com)
|
|
471
|
+
- **Issues**: [GitHub Issues](https://github.com/terradev/terradev-cli/issues)
|
|
472
|
+
- **Discord**: [Terradev Community](https://discord.gg/terradev)
|
|
473
|
+
- **Email**: support@terradev.com
|
|
474
|
+
|
|
475
|
+
### Feature Requests
|
|
476
|
+
|
|
477
|
+
We welcome feature requests! Please:
|
|
478
|
+
|
|
479
|
+
1. Check existing issues
|
|
480
|
+
2. Use the feature request template
|
|
481
|
+
3. Provide detailed requirements
|
|
482
|
+
4. Include use cases and examples
|
|
483
|
+
|
|
484
|
+
---
|
|
485
|
+
|
|
486
|
+
## πΊοΈ Roadmap
|
|
487
|
+
|
|
488
|
+
### Upcoming Features
|
|
489
|
+
|
|
490
|
+
- **π Web Dashboard**: Web-based management interface
|
|
491
|
+
- **π± Mobile App**: iOS and Android applications
|
|
492
|
+
- **π Plugin System**: Extensible plugin architecture
|
|
493
|
+
- **π€ AI Optimization**: ML-based cost optimization
|
|
494
|
+
- **π Advanced Analytics**: Predictive cost analysis
|
|
495
|
+
- **π API Gateway**: RESTful API for integration
|
|
496
|
+
- **π Real-Time Monitoring**: Live dashboard and alerts
|
|
497
|
+
|
|
498
|
+
### Provider Expansion
|
|
499
|
+
|
|
500
|
+
- **Oracle Cloud**: OCI GPU instances
|
|
501
|
+
- **IBM Cloud**: IBM GPU offerings
|
|
502
|
+
- **Alibaba Cloud**: Alibaba GPU instances
|
|
503
|
+
- **DigitalOcean**: DO GPU droplets
|
|
504
|
+
- **Hetzner Cloud**: Hetzner GPU servers
|
|
505
|
+
|
|
506
|
+
---
|
|
507
|
+
|
|
508
|
+
## π Success Stories
|
|
509
|
+
|
|
510
|
+
### Case Studies
|
|
511
|
+
|
|
512
|
+
#### Machine Learning Startup
|
|
513
|
+
- **Problem**: High GPU costs on single cloud provider
|
|
514
|
+
- **Solution**: Terradev multi-cloud optimization
|
|
515
|
+
- **Result**: **35% cost reduction** with improved performance
|
|
516
|
+
|
|
517
|
+
#### Research Institution
|
|
518
|
+
- **Problem**: Slow sequential provisioning
|
|
519
|
+
- **Solution**: Parallel provisioning with Terradev
|
|
520
|
+
- **Result**: **6x faster** instance deployment
|
|
521
|
+
|
|
522
|
+
#### Enterprise ML Team
|
|
523
|
+
- **Problem**: Complex multi-cloud management
|
|
524
|
+
- **Solution**: Unified Terradev interface
|
|
525
|
+
- **Result**: **50% reduction** in management overhead
|
|
526
|
+
|
|
527
|
+
---
|
|
528
|
+
|
|
529
|
+
## π Get Started Now
|
|
530
|
+
|
|
531
|
+
Ready to save 20%+ on your compute costs?
|
|
532
|
+
|
|
533
|
+
```bash
|
|
534
|
+
# Install Terradev
|
|
535
|
+
pip install terradev-cli
|
|
536
|
+
|
|
537
|
+
# Configure your providers
|
|
538
|
+
terradev configure --provider aws --region us-east-1
|
|
539
|
+
|
|
540
|
+
# Get your first quotes
|
|
541
|
+
terradev quote --gpu-type A100
|
|
542
|
+
|
|
543
|
+
# Start saving!
|
|
544
|
+
terradev provision --gpu-type A100 --count 2
|
|
545
|
+
```
|
|
546
|
+
|
|
547
|
+
**π Terradev - Parallel provisioning for cross-cloud compute optimization**
|
|
548
|
+
|
|
549
|
+
---
|
|
550
|
+
|
|
551
|
+
*Built for developers who demand the best performance at the best price.*
|