1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
|
#!/usr/bin/env ruby
# frozen_string_literal: true
begin
require 'bundler/setup'
rescue LoadError, Gem::GemNotFoundException, Gem::LoadError, Errno::ENOENT
nil
end
require 'json'
require 'fileutils'
require 'net/http'
require 'open3'
require 'optparse'
require 'ipaddr'
require 'shellwords'
require 'socket'
require 'time'
require 'timeout'
begin
require 'toml-rb'
rescue LoadError
warn "Missing dependency: toml-rb. Run `bundle install` in #{__dir__} first."
exit 2
end
module HyperstackVM
class Error < StandardError; end
class ConfigLoader
attr_reader :path
def self.load(path)
expanded = File.expand_path(path)
raise Error, "Config file not found: #{expanded}" unless File.exist?(expanded)
raw = TomlRB.load_file(expanded)
new(raw, expanded)
rescue TomlRB::ParseError => e
raise Error, "Failed to parse TOML config #{expanded}: #{e.message}"
end
def initialize(raw, path)
@path = path
@data = deep_merge(DEFAULTS, raw || {})
validate!
end
def config
Config.new(@data, @path)
end
private
DEFAULTS = {
'auth' => {
'api_key_file' => '~/.hyperstack'
},
'hyperstack' => {
'base_url' => 'https://infrahub-api.nexgencloud.com/v1'
},
'state' => {
'file' => '.hyperstack-vm-state.json'
},
'vm' => {
'name_prefix' => 'hyperstack',
'hostname' => 'hyperstack',
'flavor_name' => 'n3-A100x1',
'image_name' => 'Ubuntu Server 24.04 LTS R570 CUDA 12.8 with Docker',
'assign_floating_ip' => true,
'create_bootable_volume' => false,
'enable_port_randomization' => false,
'labels' => %w[gpt-oss-120b wireguard]
},
'ssh' => {
'username' => 'ubuntu',
'private_key_path' => '~/.ssh/id_rsa',
'hyperstack_key_name' => 'earth',
'port' => 22,
'connect_timeout_sec' => 10
},
'network' => {
'wireguard_udp_port' => 56_710,
'wireguard_subnet' => '192.168.3.0/24',
# Optional: explicit server-side WireGuard IP. When nil, derived as subnet + 1 (i.e. .1).
# Set to a different address (e.g. 192.168.3.3) for a second VM sharing the same wg1 tunnel.
'wireguard_server_ip' => nil,
'ollama_port' => 11_434,
'allowed_ssh_cidrs' => ['auto'],
'allowed_wireguard_cidrs' => ['auto']
},
'bootstrap' => {
'enable_guest_bootstrap' => true,
'install_wireguard' => true,
'configure_ufw' => true,
'configure_ollama_host' => false
},
'ollama' => {
'install' => false,
'models_dir' => '/ephemeral/ollama/models',
'listen_host' => '0.0.0.0:11434',
'gpu_overhead_mb' => 2000,
'num_parallel' => 1,
'context_length' => 32_768,
'pull_models' => ['qwen3-coder:30b', 'gpt-oss:20b', 'gpt-oss:120b', 'nemotron-3-super']
},
'vllm' => {
'install' => true,
'model' => 'bullpoint/Qwen3-Coder-Next-AWQ-4bit',
'hug_cache_dir' => '/ephemeral/hug',
'container_name' => 'vllm_qwen3',
'max_model_len' => 262_144,
'gpu_memory_utilization' => 0.92,
'tensor_parallel_size' => 1,
'tool_call_parser' => 'qwen3_coder'
},
'wireguard' => {
'auto_setup' => true,
'setup_script' => './wg1-setup.sh'
},
'local_client' => {
'check_wg1_service' => true,
'interface_name' => 'wg1',
'config_path' => '/etc/wireguard/wg1.conf'
}
}.freeze
def validate!
%w[auth hyperstack state vm ssh network bootstrap ollama vllm wireguard local_client].each do |section|
raise Error, "Missing config section [#{section}]" unless @data.key?(section)
end
%w[environment_name flavor_name image_name].each do |key|
raise Error, "Missing [vm].#{key} in config #{path}" if blank?(dig('vm', key))
end
if fetch('vm', 'hostname') && fetch('vm', 'hostname') !~ /\A[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\z/
raise Error,
"Invalid [vm].hostname #{fetch('vm',
'hostname').inspect}; use lowercase letters, digits, and hyphens only."
end
%w[username hyperstack_key_name].each do |key|
raise Error, "Missing [ssh].#{key} in config #{path}" if blank?(dig('ssh', key))
end
ssh_cidrs = normalized_cidrs(fetch('network', 'allowed_ssh_cidrs'))
wireguard_cidrs = normalized_cidrs(fetch('network', 'allowed_wireguard_cidrs'))
raise Error, missing_cidr_message('allowed_ssh_cidrs') if ssh_cidrs.empty?
raise Error, missing_cidr_message('allowed_wireguard_cidrs') if wireguard_cidrs.empty?
[fetch('network', 'wireguard_subnet'), *ssh_cidrs, *wireguard_cidrs].each do |cidr|
next if cidr == 'auto'
IPAddr.new(cidr)
rescue IPAddr::InvalidAddressError => e
raise Error, "Invalid CIDR #{cidr.inspect}: #{e.message}"
end
server_ip = fetch('network', 'wireguard_server_ip')
if server_ip
# Validate that the explicit server WireGuard IP is within the configured subnet.
begin
subnet = IPAddr.new(fetch('network', 'wireguard_subnet'))
unless subnet.include?(IPAddr.new(server_ip))
raise Error,
"wireguard_server_ip #{server_ip.inspect} is not in wireguard_subnet #{fetch('network', 'wireguard_subnet')}"
end
rescue IPAddr::InvalidAddressError => e
raise Error, "Invalid wireguard_server_ip #{server_ip.inspect}: #{e.message}"
end
end
end
def fetch(section, key)
dig(section, key)
end
def dig(*keys)
keys.reduce(@data) do |memo, key|
memo.is_a?(Hash) ? memo[key] : nil
end
end
def blank?(value)
value.nil? || value.to_s.strip.empty?
end
def truthy?(value)
value == true
end
def normalized_cidrs(values)
Array(values).map { |value| value.to_s.strip }.reject(&:empty?)
end
def missing_cidr_message(key)
"Missing [network].#{key} in config #{path}; set it to one or more CIDRs, or ['auto'] to restrict access to the current public operator IP."
end
def deep_merge(left, right)
left.merge(right) do |_key, old_value, new_value|
if old_value.is_a?(Hash) && new_value.is_a?(Hash)
deep_merge(old_value, new_value)
else
new_value
end
end
end
end
class Config
attr_reader :path
def initialize(data, path = nil)
@data = data
@path = path
end
def api_key
key_path = expand_path(fetch('auth', 'api_key_file'))
raise Error, "API key file not found: #{key_path}" unless File.exist?(key_path)
token = File.readlines(key_path, chomp: true).find { |line| !line.strip.empty? }&.strip
raise Error, "API key file is empty: #{key_path}" if token.nil? || token.empty?
token
rescue Errno::EACCES => e
raise Error, "Cannot read API key file #{key_path}: #{e.message}"
end
def api_base_url
fetch('hyperstack', 'base_url')
end
def state_file
expand_path(fetch('state', 'file'))
end
def environment_name
fetch('vm', 'environment_name')
end
def flavor_name
fetch('vm', 'flavor_name')
end
def image_name
fetch('vm', 'image_name')
end
def vm_name_prefix
fetch('vm', 'name_prefix')
end
def generated_vm_name
"#{vm_name_prefix}-#{Time.now.utc.strftime('%Y%m%d%H%M%S')}"
end
def vm_hostname
value = fetch('vm', 'hostname')
return nil if blank?(value)
value.to_s.downcase
end
def assign_floating_ip?
truthy?(fetch('vm', 'assign_floating_ip'))
end
def create_bootable_volume?
truthy?(fetch('vm', 'create_bootable_volume'))
end
def enable_port_randomization?
truthy?(fetch('vm', 'enable_port_randomization'))
end
def labels
Array(fetch('vm', 'labels')).map(&:to_s)
end
def user_data
custom = custom_user_data
return custom unless custom.nil? || custom.empty?
return nil if vm_hostname.nil?
default_hostname_cloud_init
rescue Errno::ENOENT => e
raise Error, "User data file not found: #{e.message}"
rescue Errno::EACCES => e
raise Error, "Cannot read user data file: #{e.message}"
end
def ssh_username
fetch('ssh', 'username')
end
def ssh_private_key_path
expand_path(fetch('ssh', 'private_key_path'))
end
def ssh_known_hosts_path
"#{state_file}.known_hosts"
end
def ssh_key_name
fetch('ssh', 'hyperstack_key_name')
end
def ssh_port
Integer(fetch('ssh', 'port'))
end
def ssh_connect_timeout
Integer(fetch('ssh', 'connect_timeout_sec'))
end
def wireguard_udp_port
Integer(fetch('network', 'wireguard_udp_port'))
end
def wireguard_subnet
fetch('network', 'wireguard_subnet')
end
def ollama_port
Integer(fetch('network', 'ollama_port'))
end
# Returns the server-side WireGuard IP for this VM.
# Uses the explicitly configured address when set; otherwise derives it as subnet_base + 1.
# Example: 192.168.3.0/24 → 192.168.3.1 (default VM1); VM2 sets wireguard_server_ip=192.168.3.3.
def wireguard_gateway_ip
configured = fetch('network', 'wireguard_server_ip')
return configured.to_s if configured && !configured.to_s.strip.empty?
# Fall back to first usable address in the subnet.
base = IPAddr.new(wireguard_subnet).to_s
parts = base.split('.').map(&:to_i)
parts[-1] += 1
parts.join('.')
end
# Returns the WireGuard hostname for this VM: e.g. hyperstack1.wg1 or hyperstack2.wg1.
# Used as the DNS name to reach the VM over the tunnel (must be in /etc/hosts on the client).
def wireguard_gateway_hostname
host = vm_hostname || 'hyperstack'
"#{host}.#{local_interface_name}"
end
def allowed_ssh_cidrs
resolved_allowed_cidrs('allowed_ssh_cidrs')
end
def allowed_wireguard_cidrs
resolved_allowed_cidrs('allowed_wireguard_cidrs')
end
def guest_bootstrap_enabled?
truthy?(fetch('bootstrap', 'enable_guest_bootstrap'))
end
def install_wireguard?
truthy?(fetch('bootstrap', 'install_wireguard'))
end
def configure_ufw?
truthy?(fetch('bootstrap', 'configure_ufw'))
end
def configure_ollama_host?
truthy?(fetch('bootstrap', 'configure_ollama_host'))
end
def ollama_install_enabled?
truthy?(fetch('ollama', 'install'))
end
def ollama_models_dir
fetch('ollama', 'models_dir')
end
def ollama_listen_host
fetch('ollama', 'listen_host')
end
def ollama_gpu_overhead_mb
Integer(fetch('ollama', 'gpu_overhead_mb'))
end
def ollama_num_parallel
Integer(fetch('ollama', 'num_parallel'))
end
def ollama_context_length
Integer(fetch('ollama', 'context_length'))
end
def ollama_pull_models
Array(fetch('ollama', 'pull_models')).map(&:to_s)
end
def vllm_install_enabled?
truthy?(fetch('vllm', 'install'))
end
def vllm_model
fetch('vllm', 'model')
end
def vllm_hug_cache_dir
fetch('vllm', 'hug_cache_dir')
end
# Derived from hug_cache_dir: sibling directory for torch.compile artifacts.
# Persisted across container restarts so recompilation is skipped on warm switches.
def vllm_compile_cache_dir
File.join(File.dirname(fetch('vllm', 'hug_cache_dir')), 'vllm_cache')
end
def vllm_container_name
fetch('vllm', 'container_name')
end
def vllm_max_model_len
Integer(fetch('vllm', 'max_model_len'))
end
def vllm_gpu_memory_utilization
Float(fetch('vllm', 'gpu_memory_utilization'))
end
def vllm_tensor_parallel_size
Integer(fetch('vllm', 'tensor_parallel_size'))
end
def vllm_tool_call_parser
fetch('vllm', 'tool_call_parser')
end
# Whether to pass --trust-remote-code to vLLM for the default model.
# Required for architectures not yet in the vLLM upstream registry (e.g. nemotron_h).
def vllm_trust_remote_code
truthy?(fetch('vllm', 'trust_remote_code'))
end
# Extra vLLM CLI flags for the default model (e.g. reasoning-parser args).
def vllm_extra_args
Array(fetch('vllm', 'extra_vllm_args')).map(&:to_s)
end
# Extra Docker -e KEY=VALUE env vars for the vLLM container (e.g. VLLM_ALLOW_LONG_MAX_MODEL_LEN=1).
def vllm_extra_docker_env
Array(fetch('vllm', 'extra_docker_env')).map(&:to_s)
end
# Whether to pass --enable-prefix-caching to vLLM. Defaults to true.
# Disable for hybrid Mamba models (NemotronH): prefix caching forces Mamba into "all" cache
# mode which pre-allocates states for all sequences, consuming extra VRAM on startup.
def vllm_prefix_caching_enabled?
val = dig('vllm', 'enable_prefix_caching')
val.nil? ? true : truthy?(val)
end
def vllm_presets
Hash(dig('vllm', 'presets')).transform_keys(&:to_s)
end
def vllm_preset_names
vllm_presets.keys
end
def vllm_preset(name)
raw = vllm_presets[name.to_s]
unless raw
available = vllm_preset_names.empty? ? 'none configured' : vllm_preset_names.join(', ')
raise Error, "Unknown vLLM preset #{name.inspect}. Available: #{available}"
end
{
'model' => raw['model'] || vllm_model,
'container_name' => raw['container_name'] || vllm_container_name,
'max_model_len' => Integer(raw['max_model_len'] || vllm_max_model_len),
'gpu_memory_utilization' => Float(raw['gpu_memory_utilization'] || vllm_gpu_memory_utilization),
'tensor_parallel_size' => Integer(raw['tensor_parallel_size'] || vllm_tensor_parallel_size),
'tool_call_parser' => raw.key?('tool_call_parser') ? raw['tool_call_parser'] : vllm_tool_call_parser,
'trust_remote_code' => raw.key?('trust_remote_code') ? raw['trust_remote_code'] : false,
'extra_vllm_args' => raw.key?('extra_vllm_args') ? Array(raw['extra_vllm_args']) : [],
'extra_docker_env' => raw.key?('extra_docker_env') ? Array(raw['extra_docker_env']) : [],
# nil means "not set in preset" — fall back to the top-level [vllm] value in the script.
'enable_prefix_caching' => raw.key?('enable_prefix_caching') ? raw['enable_prefix_caching'] : nil
}
end
def local_client_checks_enabled?
truthy?(fetch('local_client', 'check_wg1_service'))
end
def local_interface_name
fetch('local_client', 'interface_name')
end
def local_wg_config_path
fetch('local_client', 'config_path')
end
def wireguard_auto_setup?
truthy?(fetch('wireguard', 'auto_setup'))
end
def wireguard_setup_script
expand_path(fetch('wireguard', 'setup_script'))
end
def desired_security_rules(include_ollama: ollama_install_enabled?, include_vllm: vllm_install_enabled?)
rules = []
allowed_ssh_cidrs.each do |cidr|
rules << firewall_rule('tcp', ssh_port, cidr)
end
allowed_wireguard_cidrs.each do |cidr|
rules << firewall_rule('udp', wireguard_udp_port, cidr)
end
rules << firewall_rule('tcp', ollama_port, wireguard_subnet) if include_ollama || include_vllm
rules.uniq
end
private
def fetch(section, key)
dig(section, key)
end
def dig(*keys)
keys.reduce(@data) do |memo, key|
memo.is_a?(Hash) ? memo[key] : nil
end
end
def blank?(value)
value.nil? || value.to_s.strip.empty?
end
def truthy?(value)
value == true
end
def resolved_allowed_cidrs(key)
values = Array(fetch('network', key)).map { |value| value.to_s.strip }.reject(&:empty?)
values.flat_map { |value| value == 'auto' ? [detected_operator_cidr] : [value] }.uniq
end
def detected_operator_cidr
return @detected_operator_cidr if defined?(@detected_operator_cidr)
configured = ENV['HYPERSTACK_OPERATOR_CIDR'].to_s.strip
@detected_operator_cidr = normalize_operator_cidr(configured) unless configured.empty?
return @detected_operator_cidr if defined?(@detected_operator_cidr)
@detected_operator_cidr = detect_public_operator_cidr
end
def normalize_operator_cidr(value)
ip = IPAddr.new(value)
suffix = ip.ipv4? ? 32 : 128
value.include?('/') ? value : "#{ip}/#{suffix}"
rescue IPAddr::InvalidAddressError => e
raise Error, "Invalid HYPERSTACK_OPERATOR_CIDR #{value.inspect}: #{e.message}"
end
def detect_public_operator_cidr
[
'https://api.ipify.org',
'https://ifconfig.me/ip',
'https://ipv4.icanhazip.com'
].each do |url|
cidr = fetch_public_cidr(url)
return cidr if cidr
end
source = path || 'the active config'
raise Error,
"Unable to detect the current public operator IP for [network].allowed_*_cidrs = ['auto']. Set HYPERSTACK_OPERATOR_CIDR or replace 'auto' with explicit CIDRs in #{source}."
end
def fetch_public_cidr(url)
uri = URI(url)
response = Net::HTTP.start(uri.host, uri.port, use_ssl: uri.scheme == 'https', open_timeout: 5, read_timeout: 5) do |http|
http.request(Net::HTTP::Get.new(uri))
end
return nil unless response.is_a?(Net::HTTPSuccess)
body = response.body.to_s.strip
return nil if body.empty?
ip = IPAddr.new(body)
suffix = ip.ipv4? ? 32 : 128
"#{ip}/#{suffix}"
rescue IPAddr::InvalidAddressError, SocketError, SystemCallError, Timeout::Error, Net::OpenTimeout,
Net::ReadTimeout, OpenSSL::SSL::SSLError
nil
end
def custom_user_data
inline = dig('vm', 'user_data')
return inline unless inline.nil? || inline.empty?
file = dig('vm', 'user_data_file')
return nil if file.nil? || file.empty?
File.read(expand_path(file))
end
def default_hostname_cloud_init
<<~CLOUD_INIT
#cloud-config
preserve_hostname: false
hostname: #{vm_hostname}
CLOUD_INIT
end
def expand_path(value)
return nil if value.nil?
string = value.to_s
return File.expand_path(string) if string.start_with?('~')
return string if string.start_with?('/')
File.expand_path(string, File.dirname(@path)) if @path
end
def firewall_rule(protocol, port, cidr)
ip = IPAddr.new(cidr)
{
'direction' => 'ingress',
'ethertype' => ip.ipv4? ? 'IPv4' : 'IPv6',
'protocol' => protocol,
'port_range_min' => port,
'port_range_max' => port,
'remote_ip_prefix' => cidr
}
end
end
class StateStore
def initialize(path)
@path = path
end
attr_reader :path
def load
return nil unless File.exist?(@path)
JSON.parse(File.read(@path))
rescue JSON::ParserError => e
raise Error, "Failed to parse state file #{@path}: #{e.message}"
end
def save(payload)
temp_path = "#{@path}.tmp"
File.write(temp_path, JSON.pretty_generate(payload))
File.rename(temp_path, @path)
end
def delete
File.delete(@path) if File.exist?(@path)
end
end
class HyperstackClient
def initialize(base_url:, api_key:)
@base_uri = URI(base_url)
@api_key = api_key
end
def list_environments
response = request(:get, '/core/environments')
response.fetch('environments', [])
end
def list_keypairs
response = request(:get, '/core/keypairs')
response.fetch('keypairs', [])
end
def list_flavors
response = request(:get, '/core/flavors')
Array(response['data']).flat_map do |entry|
Array(entry['flavors']).map do |flavor|
flavor.merge(
'region_name' => flavor['region_name'] || entry['region_name'],
'gpu' => flavor['gpu'] || entry['gpu']
)
end
end
end
def list_images
response = request(:get, '/core/images')
Array(response['images']).flat_map do |entry|
Array(entry['images']).map do |image|
image.merge(
'region_name' => image['region_name'] || entry['region_name'],
'type' => image['type'] || entry['type']
)
end
end
end
def list_vms
response = request(:get, '/core/virtual-machines')
response.fetch('instances', [])
end
def get_vm(vm_id)
response = request(:get, "/core/virtual-machines/#{vm_id}")
response.fetch('instance', nil)
end
def create_vm(payload)
request(:post, '/core/virtual-machines', payload)
end
def delete_vm(vm_id)
request(:delete, "/core/virtual-machines/#{vm_id}")
end
def create_vm_rule(vm_id, payload)
request(:post, "/core/virtual-machines/#{vm_id}/sg-rules", payload)
end
def delete_vm_rule(vm_id, rule_id)
request(:delete, "/core/virtual-machines/#{vm_id}/sg-rules/#{rule_id}")
end
private
def request(method, path, payload = nil)
uri = @base_uri.dup
uri.path = "#{@base_uri.path}#{path}"
request = case method
when :get
Net::HTTP::Get.new(uri)
when :post
Net::HTTP::Post.new(uri)
when :delete
Net::HTTP::Delete.new(uri)
else
raise Error, "Unsupported HTTP method: #{method}"
end
request['accept'] = 'application/json'
request['api_key'] = @api_key
if payload
request['content-type'] = 'application/json'
request.body = JSON.generate(payload)
end
retries_left = 4
begin
response = Net::HTTP.start(
uri.host,
uri.port,
use_ssl: uri.scheme == 'https',
open_timeout: 30,
read_timeout: 120
) { |http| http.request(request) }
parse_response(response)
rescue Timeout::Error, Errno::ECONNREFUSED, Errno::ECONNRESET,
Errno::EHOSTUNREACH, Errno::ENETUNREACH,
SocketError, OpenSSL::SSL::SSLError, Net::OpenTimeout => e
raise Error, "Hyperstack API request failed for #{path}: #{e.message}" if retries_left <= 0
retries_left -= 1
delay = (4 - retries_left) * 5
warn "API request to #{path} failed (#{e.class}: #{e.message}), retrying in #{delay}s (#{retries_left} left)..."
sleep delay
retry
end
end
def parse_response(response)
body = response.body.to_s
payload = body.empty? ? {} : JSON.parse(body)
if response.code.to_i >= 400 || payload['status'] == false
message = payload['message'] || payload['error_reason'] || response.message
raise Error, "Hyperstack API error (HTTP #{response.code}): #{message}"
end
payload
rescue JSON::ParserError => e
raise Error, "Failed to parse Hyperstack API response: #{e.message}"
end
end
class LocalWireGuard
def initialize(interface_name:, config_path:)
@interface_name = interface_name
@config_path = config_path
end
def status
endpoints = configured_endpoints
{
'service_state' => service_state,
'config_path' => @config_path,
'endpoint' => endpoints.last,
'endpoints' => endpoints,
'config_readable' => !config_contents.nil?
}
end
def remove_peers_by_allowed_ips(allowed_ips, dry_run: false)
targets = Array(allowed_ips).map(&:to_s).map(&:strip).reject(&:empty?).uniq
return [] if targets.empty?
content = config_contents
raise Error, "Unable to read #{@config_path} for peer cleanup." if content.nil?
updated, removed = prune_peer_blocks(content, targets)
return [] if removed.empty?
return removed if dry_run
write_config(updated)
restart_service_if_active
@config_contents = updated
removed
end
def remove_hostnames(hostnames, dry_run: false)
targets = Array(hostnames).map(&:to_s).map(&:strip).reject(&:empty?).uniq
return [] if targets.empty?
content = hosts_contents
raise Error, 'Unable to read /etc/hosts for hostname cleanup.' if content.nil?
updated, removed = prune_hosts_entries(content, targets)
return [] if removed.empty?
return removed if dry_run
write_hosts(updated)
@hosts_contents = updated
removed
end
private
def service_state
stdout, _stderr, status = Open3.capture3('systemctl', 'is-active', "wg-quick@#{@interface_name}")
value = stdout.to_s.strip
return value unless value.empty?
return 'active' if status.success?
'unknown'
end
def configured_endpoint
configured_endpoints.last
end
def configured_endpoints
content = config_contents
return [] if content.nil?
parse_wireguard_peers(content).filter_map { |peer| peer['Endpoint'] }.uniq
end
def parse_wireguard_peers(content)
current_section = nil
current_peer = nil
peers = []
content.each_line do |line|
stripped = line.strip
next if stripped.empty? || stripped.start_with?('#')
if stripped.start_with?('[') && stripped.end_with?(']')
peers << current_peer if current_section == 'Peer' && current_peer && !current_peer.empty?
current_section = stripped[1..-2]
current_peer = current_section == 'Peer' ? {} : nil
next
end
key, value = stripped.split('=', 2).map { |part| part&.strip }
next unless current_section == 'Peer' && key && value
current_peer[key] = value
end
peers << current_peer if current_section == 'Peer' && current_peer && !current_peer.empty?
peers
end
def prune_peer_blocks(content, allowed_ips)
kept = []
removed = []
parse_wireguard_blocks(content).each do |block|
if block[:section] == 'Peer' && allowed_ips.include?(block[:values]['AllowedIPs'].to_s.strip)
removed << block[:values]
else
kept << block[:lines].join
end
end
[kept.join, removed]
end
def parse_wireguard_blocks(content)
blocks = []
current_section = nil
current_lines = []
content.each_line do |line|
stripped = line.strip
if stripped.start_with?('[') && stripped.end_with?(']')
blocks << wireguard_block(current_section, current_lines) unless current_lines.empty?
current_section = stripped[1..-2]
current_lines = [line]
else
current_lines << line
end
end
blocks << wireguard_block(current_section, current_lines) unless current_lines.empty?
blocks
end
def wireguard_block(section, lines)
{
section: section,
lines: lines.dup,
values: parse_wireguard_section_values(section, lines)
}
end
def parse_wireguard_section_values(section, lines)
return {} unless section == 'Peer'
lines.each_with_object({}) do |line, values|
stripped = line.strip
next if stripped.empty? || stripped.start_with?('#') || stripped.start_with?('[')
key, value = stripped.split('=', 2).map { |part| part&.strip }
values[key] = value if key && value
end
end
def write_config(content)
File.write(@config_path, content)
rescue Errno::EACCES
_stdout, stderr, status = Open3.capture3('sudo', '-n', 'tee', @config_path, stdin_data: content)
raise Error, "Failed to update #{@config_path}: #{stderr.to_s.strip}" unless status.success?
_stdout, stderr, status = Open3.capture3('sudo', '-n', 'chmod', '600', @config_path)
raise Error, "Failed to chmod #{@config_path}: #{stderr.to_s.strip}" unless status.success?
end
def restart_service_if_active
return unless service_state == 'active'
_stdout, stderr, status = Open3.capture3('sudo', '-n', 'systemctl', 'restart', "wg-quick@#{@interface_name}")
raise Error, "Failed to restart wg-quick@#{@interface_name}: #{stderr.to_s.strip}" unless status.success?
end
def config_contents
return @config_contents if defined?(@config_contents)
@config_contents = File.read(@config_path)
rescue Errno::EACCES, Errno::ENOENT
stdout, _stderr, status = Open3.capture3('sudo', '-n', 'cat', @config_path)
@config_contents = status.success? ? stdout : nil
end
def hosts_contents
return @hosts_contents if defined?(@hosts_contents)
@hosts_contents = File.read('/etc/hosts')
rescue Errno::EACCES, Errno::ENOENT
stdout, _stderr, status = Open3.capture3('sudo', '-n', 'cat', '/etc/hosts')
@hosts_contents = status.success? ? stdout : nil
end
def prune_hosts_entries(content, hostnames)
removed = []
updated = content.each_line.filter_map do |line|
rewritten, line_removed = prune_host_line(line, hostnames)
removed.concat(line_removed)
rewritten
end
[updated.join, removed.uniq]
end
def prune_host_line(line, hostnames)
stripped = line.strip
return [line, []] if stripped.empty? || stripped.start_with?('#')
body, comment = line.split('#', 2)
tokens = body.split(/\s+/)
return [line, []] if tokens.empty?
ip = tokens.shift
removed = tokens & hostnames
return [line, []] if removed.empty?
remaining = tokens - hostnames
return [nil, removed] if remaining.empty?
rewritten = ([ip] + remaining).join("\t")
rewritten = "#{rewritten} # #{comment.strip}" if comment && !comment.strip.empty?
["#{rewritten}\n", removed]
end
def write_hosts(content)
File.write('/etc/hosts', content)
rescue Errno::EACCES
_stdout, stderr, status = Open3.capture3('sudo', '-n', 'tee', '/etc/hosts', stdin_data: content)
raise Error, "Failed to update /etc/hosts: #{stderr.to_s.strip}" unless status.success?
end
end
# Thread-safe output wrapper that prepends a fixed prefix to each line.
# Used by create-both so interleaved output from VM1 and VM2 threads is distinguishable.
# #print buffers partial lines until a newline is received, then flushes with the prefix.
class PrefixedOutput
def initialize(prefix, delegate, mutex)
@prefix = prefix
@delegate = delegate
@mutex = mutex
@buffer = +''
end
def puts(msg = '')
@mutex.synchronize { @delegate.puts("#{@prefix}#{msg}") }
end
def print(msg)
@buffer << msg.to_s
while (idx = @buffer.index("\n"))
line = @buffer.slice!(0, idx + 1)
@mutex.synchronize { @delegate.print("#{@prefix}#{line}") }
end
end
end
class ProvisioningScripts
def initialize(config:)
@config = config
end
def guest_bootstrap_script
script = []
script << 'set -euo pipefail'
# Wait for any running unattended-upgrades or apt locks to release
# before attempting package operations (transient lock on fresh VMs)
script << 'echo "Waiting for apt locks to clear..."'
script << 'for i in $(seq 1 30); do'
script << ' if ! fuser /var/lib/dpkg/lock-frontend /var/lib/apt/lists/lock /var/cache/apt/archives/lock >/dev/null 2>&1; then break; fi'
script << ' echo " apt lock held, waiting ($i/30)..."; sleep 10'
script << 'done'
script << 'sudo systemctl stop unattended-upgrades.service 2>/dev/null || true'
script << 'sudo systemctl disable unattended-upgrades.service 2>/dev/null || true'
if @config.install_wireguard?
script << 'which wg >/dev/null 2>&1 || (sudo apt-get update && sudo apt-get install -y wireguard)'
end
if @config.configure_ufw?
script << "sudo ufw allow #{@config.ssh_port}/tcp comment 'Allow SSH' >/dev/null 2>&1 || true"
script << 'sudo ufw --force enable >/dev/null 2>&1 || true'
script << "sudo ufw allow #{@config.wireguard_udp_port}/udp comment 'WireGuard #{@config.local_interface_name}' >/dev/null 2>&1 || true"
# Port 11434 is shared by Ollama and vLLM; open for both regardless of which is installed.
script << "sudo ufw allow from #{Shellwords.escape(@config.wireguard_subnet)} to any port #{@config.ollama_port} proto tcp comment 'Inference API (Ollama/vLLM) via #{@config.local_interface_name}' >/dev/null 2>&1 || true"
end
if @config.configure_ollama_host?
# Only write a minimal OLLAMA_HOST override if no override exists yet;
# ollama_setup_script writes the full override (OLLAMA_MODELS, GPU_OVERHEAD, etc.)
script << "if systemctl list-unit-files | grep -q '^ollama.service'; then"
script << ' if [ ! -f /etc/systemd/system/ollama.service.d/override.conf ]; then'
script << ' sudo mkdir -p /etc/systemd/system/ollama.service.d'
script << " cat <<'OVERRIDE' | sudo tee /etc/systemd/system/ollama.service.d/override.conf >/dev/null"
script << '[Service]'
script << "Environment=\"OLLAMA_HOST=0.0.0.0:#{@config.ollama_port}\""
script << 'OVERRIDE'
script << ' sudo systemctl daemon-reload'
script << ' sudo systemctl restart ollama || true'
script << ' fi'
script << 'fi'
end
script << 'echo bootstrap-ok'
script.join("\n")
end
def desired_ollama_models
normalized_model_list(@config.ollama_pull_models)
end
def model_list_signature(models)
normalized_model_list(models).sort
end
def ollama_install_script
models_dir = @config.ollama_models_dir
listen_host = @config.ollama_listen_host
script = []
script << 'set -euo pipefail'
script << 'sudo pkill -f unattended-upgrade >/dev/null 2>&1 || true'
script << 'if ! command -v ollama >/dev/null 2>&1; then curl -fsSL https://ollama.ai/install.sh | sh; fi'
if models_dir.start_with?('/ephemeral')
script << "mountpoint -q /ephemeral || { echo 'Expected /ephemeral mount is missing'; exit 1; }"
end
script << "sudo mkdir -p #{Shellwords.escape(models_dir)}"
script << "sudo chown -R ollama:ollama #{Shellwords.escape(File.dirname(models_dir))}"
script << 'sudo mkdir -p /etc/systemd/system/ollama.service.d'
script << "cat <<'OVERRIDE' | sudo tee /etc/systemd/system/ollama.service.d/override.conf >/dev/null"
script << '[Service]'
script << "Environment=\"OLLAMA_MODELS=#{models_dir}\""
script << "Environment=\"OLLAMA_GPU_OVERHEAD=#{@config.ollama_gpu_overhead_mb}\""
script << "Environment=\"OLLAMA_NUM_PARALLEL=#{@config.ollama_num_parallel}\""
script << "Environment=\"OLLAMA_CONTEXT_LENGTH=#{@config.ollama_context_length}\""
script << "Environment=\"OLLAMA_HOST=#{listen_host}\""
script << 'OVERRIDE'
script << 'sudo systemctl daemon-reload'
script << 'sudo systemctl enable --now ollama'
script << 'sudo systemctl restart ollama'
script << 'sleep 3'
script << 'systemctl is-active --quiet ollama'
script << 'echo ollama-install-ok'
script.join("\n")
end
def ollama_pull_script(models: desired_ollama_models)
models_dir = @config.ollama_models_dir
script = []
script << 'set -euo pipefail'
# Pull each model with retry (transient network failures) and verify
# it is actually present afterwards
models.each do |model|
escaped = Shellwords.escape(model)
script << "echo \"Pulling model #{model}...\""
script << 'for attempt in 1 2 3; do'
script << " if ollama pull #{escaped}; then break; fi"
script << " if [ \"$attempt\" -eq 3 ]; then echo \"FATAL: failed to pull #{model} after 3 attempts\"; exit 1; fi"
script << ' echo " pull attempt $attempt failed, retrying in 15s..."; sleep 15'
script << 'done'
script << "ollama show #{escaped} --modelfile >/dev/null 2>&1 || { echo \"FATAL: model #{model} not found after pull\"; exit 1; }"
end
# Final verification: ensure all expected models are listed
script << 'echo "Verifying all models are present..."'
models.each do |model|
escaped = Shellwords.escape(model)
script << "ollama show #{escaped} --modelfile >/dev/null 2>&1 || { echo \"FATAL: model #{model} missing in final check\"; exit 1; }"
end
script << "echo ollama-models-dir=#{models_dir}"
script << 'echo ollama-ok'
script.join("\n")
end
def vllm_stop_script(container_name)
script = []
script << 'set -euo pipefail'
script << "docker stop #{Shellwords.escape(container_name)} 2>/dev/null || true"
script << "docker rm #{Shellwords.escape(container_name)} 2>/dev/null || true"
script << 'echo vllm-stopped'
script.join("\n")
end
def vllm_install_script(preset_config: nil, pull_image: true)
cfg = preset_config || {}
model = cfg['model'] || @config.vllm_model
cache_dir = @config.vllm_hug_cache_dir
compile_cache = @config.vllm_compile_cache_dir
container = cfg['container_name'] || @config.vllm_container_name
max_len = Integer(cfg['max_model_len'] || @config.vllm_max_model_len)
gpu_util = Float(cfg['gpu_memory_utilization'] || @config.vllm_gpu_memory_utilization)
tp_size = Integer(cfg['tensor_parallel_size'] || @config.vllm_tensor_parallel_size)
parser = cfg['tool_call_parser']
# parser is nil only when preset explicitly omits the key and config has no default;
# empty string means "disable tool calling" (e.g. gpt-oss reasoning models).
parser = @config.vllm_tool_call_parser if parser.nil?
# Fall back to the top-level [vllm] config values when no preset is in use.
# This allows setting trust_remote_code / extra_vllm_args in the default [vllm] block
# without requiring a --model preset flag at create time.
trust_remote = cfg.key?('trust_remote_code') ? cfg['trust_remote_code'] : @config.vllm_trust_remote_code
# Prefix caching: preset value takes priority; nil means fall back to top-level [vllm] setting.
prefix_cache = if cfg.key?('enable_prefix_caching') && !cfg['enable_prefix_caching'].nil?
cfg['enable_prefix_caching'] == true
else
@config.vllm_prefix_caching_enabled?
end
extra_env = cfg.key?('extra_docker_env') ? Array(cfg['extra_docker_env']) : @config.vllm_extra_docker_env
port = @config.ollama_port
docker_args = [
'docker run -d',
'--gpus all', '--ipc=host', '--network host',
"--name #{Shellwords.escape(container)}",
'--restart always',
"-v #{Shellwords.escape(cache_dir)}:/root/.cache/huggingface",
# Mount torch.compile cache so CUDA kernel compilation is skipped on warm restarts.
# Without this, every container restart recompiles (~30-60 s extra).
"-v #{Shellwords.escape(compile_cache)}:/root/.cache/vllm"
]
# Extra Docker env vars (e.g. VLLM_ALLOW_LONG_MAX_MODEL_LEN=1) injected before the image name.
extra_env.each { |kv| docker_args << "-e #{Shellwords.escape(kv)}" }
docker_args += [
'vllm/vllm-openai:latest',
"--model #{Shellwords.escape(model)}",
"--tensor-parallel-size #{tp_size}",
"--gpu-memory-utilization #{gpu_util}",
"--max-model-len #{max_len}",
'--host 0.0.0.0',
"--port #{port}"
]
# Prefix caching is beneficial for most models but forces Mamba "all" cache mode on
# NemotronH, which pre-allocates states for all sequences and can OOM on startup.
docker_args << '--enable-prefix-caching' if prefix_cache
# Tool calling is optional: empty/nil parser disables it.
unless parser.nil? || parser.empty?
docker_args << '--enable-auto-tool-choice'
docker_args << "--tool-call-parser #{Shellwords.escape(parser)}"
end
docker_args << '--trust-remote-code' if trust_remote
extra_args = cfg.key?('extra_vllm_args') ? Array(cfg['extra_vllm_args']) : @config.vllm_extra_args
extra_args.each { |arg| docker_args << arg }
docker_run = docker_args.join(' ')
script = []
script << 'set -euo pipefail'
script << "sudo mkdir -p #{Shellwords.escape(cache_dir)} #{Shellwords.escape(compile_cache)}"
script << "sudo chmod -R 0777 #{Shellwords.escape(cache_dir)} #{Shellwords.escape(compile_cache)}"
script << "docker stop #{Shellwords.escape(container)} 2>/dev/null || true"
script << "docker rm #{Shellwords.escape(container)} 2>/dev/null || true"
script << 'docker pull vllm/vllm-openai:latest' if pull_image
script << docker_run
script << 'echo "Waiting for vLLM to become ready (up to 10 min for first model download)..."'
script << 'for i in $(seq 1 120); do'
script << " if curl -sf http://localhost:#{port}/v1/models >/dev/null 2>&1; then echo vllm-ready; break; fi"
script << " state=$(docker inspect --format='{{.State.Status}}' #{Shellwords.escape(container)} 2>/dev/null || echo unknown)"
script << ' echo " vLLM not ready yet ($i/120, container=$state)..."'
script << ' sleep 5'
script << 'done'
script << "curl -sf http://localhost:#{port}/v1/models >/dev/null || { echo 'FATAL: vLLM did not become ready within 10 minutes'; exit 1; }"
script << 'echo vllm-install-ok'
script.join("\n")
end
def litellm_decommission_script
script = []
script << 'set -euo pipefail'
script << 'sudo systemctl stop litellm 2>/dev/null || true'
script << 'sudo systemctl disable litellm 2>/dev/null || true'
script << 'sudo rm -f /etc/systemd/system/litellm.service'
script << 'sudo systemctl daemon-reload'
script << 'sudo rm -f /ephemeral/litellm-config.yaml'
script << 'sudo rm -rf /ephemeral/litellm-env'
script << 'sudo rm -f /ephemeral/litellm.log'
script << "sudo ufw --force delete allow from #{Shellwords.escape(@config.wireguard_subnet)} to any port 4000 proto tcp >/dev/null 2>&1 || true"
script << 'echo litellm-decommission-ok'
script.join("\n")
end
private
def normalized_model_list(models)
Array(models).each_with_object([]) do |model, ordered|
normalized = model.to_s.strip
next if normalized.empty? || ordered.include?(normalized)
ordered << normalized
end
end
end
class RemoteProvisioner
def initialize(config:, scripts:, out:, ssh_command_runner:, ssh_stream_runner:)
@config = config
@scripts = scripts
@out = out
@ssh_command_runner = ssh_command_runner
@ssh_stream_runner = ssh_stream_runner
end
def bootstrap_guest(host)
info 'Bootstrapping Ubuntu guest over SSH...'
retries = 3
retries.times do |attempt|
stdout, stderr, status = @ssh_command_runner.call(host, @scripts.guest_bootstrap_script)
return if status.success?
msg = stderr.strip.empty? ? stdout : stderr
raise Error, "Guest bootstrap failed after #{retries} attempts: #{msg}" if attempt == retries - 1
warn "Bootstrap attempt #{attempt + 1}/#{retries} failed (#{msg.lines.last&.strip}), retrying in 15s..."
sleep 15
end
end
def install_ollama_service(host)
info "Installing and configuring Ollama on #{host}..."
output, status = @ssh_stream_runner.call(host, @scripts.ollama_install_script)
raise Error, "Ollama install failed: #{output.strip}" unless status.success?
end
def pull_ollama_models(host)
info "Pulling Ollama models on #{host}..."
output, status = @ssh_stream_runner.call(host, @scripts.ollama_pull_script)
raise Error, "Ollama model pull failed: #{output.strip}" unless status.success?
verify_remote_models(host)
end
def stop_vllm_container(host, container_name)
info "Stopping old vLLM container #{container_name}..."
output, status = @ssh_stream_runner.call(host, @scripts.vllm_stop_script(container_name))
raise Error, "Failed to stop container #{container_name}: #{output.strip}" unless status.success?
end
def install_vllm(host, preset_config: nil, pull_image: true)
info "Setting up vLLM Docker container on #{host}..."
output, status = @ssh_stream_runner.call(host, @scripts.vllm_install_script(preset_config: preset_config,
pull_image: pull_image))
raise Error, "vLLM install failed: #{output.strip}" unless status.success?
end
def decommission_litellm(host)
info "Removing deprecated LiteLLM service from #{host} if present..."
output, status = @ssh_stream_runner.call(host, @scripts.litellm_decommission_script)
raise Error, "LiteLLM decommission failed: #{output.strip}" unless status.success?
end
def setup_vllm_stack(host, preset_config: nil)
install_vllm(host, preset_config: preset_config)
end
private
def verify_remote_models(host)
stdout, _stderr, status = @ssh_command_runner.call(host, 'ollama list')
return unless status.success?
remote_models = stdout.lines.drop(1).map { |line| line.split.first }.compact
missing = @scripts.desired_ollama_models.reject { |model| remote_models.any? { |remote| remote.start_with?(model) } }
return if missing.empty?
raise Error, "Models missing after setup: #{missing.join(', ')}. Remote has: #{remote_models.join(', ')}"
end
def info(message)
@out.puts(message)
end
def warn(message)
@out.puts("WARNING: #{message}")
end
end
class Manager
# wg_setup_pre: optional Proc called just before this VM's WireGuard setup step runs.
# Used by create-both to block VM2 until VM1 has written the base wg1.conf.
# wg_setup_post: optional Proc called after the WireGuard step completes (or is skipped).
# Used by create-both to signal that VM1's base config is ready for VM2.
def initialize(config:, client:, state_store:, local_wireguard:, out: $stdout,
wg_setup_pre: nil, wg_setup_post: nil)
@config = config
@client = client
@state_store = state_store
@local_wireguard = local_wireguard
@out = out
@scripts = ProvisioningScripts.new(config: config)
@provisioner = RemoteProvisioner.new(config: config, scripts: @scripts, out: out,
ssh_command_runner: method(:run_ssh_command),
ssh_stream_runner: method(:run_ssh_command_streaming))
@wg_setup_pre = wg_setup_pre
@wg_setup_post = wg_setup_post
end
def create(replace: false, dry_run: false, install_vllm: nil, install_ollama: nil, vllm_preset: nil)
# CLI flags override config; nil means "use config default".
@effective_vllm = install_vllm.nil? ? @config.vllm_install_enabled? : install_vllm
@effective_ollama = install_ollama.nil? ? @config.ollama_install_enabled? : install_ollama
# Validate preset name early so we fail before touching any remote state.
@effective_vllm_preset = vllm_preset
@config.vllm_preset(vllm_preset) if vllm_preset
existing_state = @state_store.load
if existing_state && existing_state['vm_id']
if replace
if dry_run
info "DRY RUN: would delete tracked VM #{existing_state['vm_id']} before creating a replacement."
else
delete(vm_id: existing_state['vm_id'], preserve_state_on_failure: true)
end
elsif resumable_state?(existing_state)
if dry_run
print_resume_dry_run(existing_state)
return
end
info "Resuming tracked VM #{existing_state['vm_id']} provisioning..."
continue_create(existing_state)
return
else
raise Error,
"State file #{@state_store.path} already tracks VM #{existing_state['vm_id']}. Use --replace or delete first."
end
end
resolved = resolve_dependencies
vm_name = @config.generated_vm_name
if dry_run
info "Planning VM #{vm_name} in #{resolved[:environment]['name']} using #{@config.flavor_name}..."
else
info "Creating VM #{vm_name} in #{resolved[:environment]['name']} using #{@config.flavor_name}..."
end
payload = build_create_payload(vm_name, resolved)
if dry_run
print_create_dry_run(vm_name, resolved, payload)
return
end
response = @client.create_vm(payload)
instance = Array(response['instances']).first
raise Error, 'Hyperstack create response did not include an instance ID.' unless instance && instance['id']
state = {
'vm_id' => instance['id'],
'vm_name' => vm_name,
'environment_name' => resolved[:environment]['name'],
'region' => resolved[:environment]['region'],
'flavor_name' => resolved[:flavor]['name'],
'image_name' => resolved[:image]['name'],
'key_name' => resolved[:keypair]['name'],
'public_ip' => instance['floating_ip'],
'created_at' => Time.now.utc.iso8601
}
sync_service_mode_state(state)
@state_store.save(state)
continue_create(state)
end
def delete(vm_id: nil, preserve_state_on_failure: false, dry_run: false, skip_local_cleanup: false)
state = @state_store.load
target_vm_id = vm_id || state&.dig('vm_id')
raise Error, "No VM ID provided and no state file found at #{@state_store.path}." if target_vm_id.nil?
cleanup_local = !skip_local_cleanup && state && target_vm_id == state['vm_id']
if dry_run
print_delete_dry_run(target_vm_id, state, preserve_state_on_failure: preserve_state_on_failure)
return
end
info "Deleting VM #{target_vm_id}..."
@client.delete_vm(target_vm_id)
wait_for_deletion(target_vm_id)
if cleanup_local
cleanup = cleanup_local_access(dry_run: false, hostnames: [@config.wireguard_gateway_hostname],
allowed_ips: ["#{@config.wireguard_gateway_ip}/32"])
report_local_cleanup(@out, cleanup, dry_run: false)
end
delete_ssh_known_hosts_file
@state_store.delete unless preserve_state_on_failure
info "VM #{target_vm_id} deleted."
rescue Error
raise if preserve_state_on_failure
@state_store.delete
raise
end
def status(include_local_wireguard: true)
state = @state_store.load
if state.nil?
info "No tracked VM state file at #{@state_store.path}."
else
begin
vm = @client.get_vm(state['vm_id'])
desired = desired_security_rules_for_state(state).map { |rule| normalize_rule(rule) }
current = Array(vm['security_rules']).map { |rule| normalize_rule(rule) }
missing_rules = desired - current
vllm_enabled = state_vllm_enabled?(state)
ollama_enabled = state_ollama_enabled?(state)
info "Tracked VM: #{state['vm_id']} #{vm['name']}"
info "Status: #{vm['status']} / #{vm['vm_state']}"
info "Public IP: #{connect_host_for(vm) || 'none'}"
info "Service mode: #{service_mode_summary(vllm_enabled: vllm_enabled, ollama_enabled: ollama_enabled)}"
info "Active model: #{state['vllm_model'] || @config.vllm_model}" if vllm_enabled
info "Missing firewall rules: #{missing_rules.empty? ? 'none' : missing_rules.size}"
rescue Error => e
warn "Unable to load VM #{state['vm_id']}: #{e.message}"
end
end
print_local_wireguard_summary(state&.dig('public_ip')) if include_local_wireguard
state&.dig('public_ip')
end
def show_local_wireguard(expected_ips = nil)
print_local_wireguard_summary(expected_ips)
end
# Lists configured model presets and marks the one currently running on the VM.
def list_models
presets = @config.vllm_preset_names
state = @state_store.load
current = state&.dig('vllm_model')
if presets.empty?
info 'No presets configured in [vllm.presets.*].'
info "Active model: #{current || @config.vllm_model}"
return
end
info 'Configured vLLM model presets:'
presets.each do |name|
p = @config.vllm_preset(name)
active = p['model'] == current
info " #{active ? '*' : ' '} #{name.ljust(24)} #{p['model']}"
end
info ''
info ' (* = currently loaded on VM)' if current
end
# Switches the running VM to a different named model preset.
# Stops the old container, then starts the new vLLM container in its place.
def switch_model(preset_name:, dry_run: false)
preset = @config.vllm_preset(preset_name) # raises if unknown
state = @state_store.load
old_container = state&.dig('vllm_container_name') || @config.vllm_container_name
new_container = preset['container_name']
current_model = state&.dig('vllm_model')
if dry_run
info "DRY RUN: model switch to preset '#{preset_name}'"
info " #{current_model || 'none'} → #{preset['model']}"
info " container: #{old_container} → #{new_container}"
trust_note = preset['trust_remote_code'] ? ', trust_remote_code: true' : ''
parser_note = preset['tool_call_parser'].to_s.empty? ? 'none' : preset['tool_call_parser']
extra_note = preset['extra_vllm_args']&.any? ? ", extra_args: #{preset['extra_vllm_args'].join(' ')}" : ''
info " max_model_len: #{preset['max_model_len']}, tool_call_parser: #{parser_note}#{trust_note}#{extra_note}"
return
end
raise Error, "No tracked VM. Run 'create' first." unless state&.dig('vm_id')
host = state['public_ip']
raise Error, 'No public IP in state file.' if host.nil? || host.empty?
@provisioner.decommission_litellm(host)
# Stop the old container only when it has a different name from the new one.
if old_container != new_container
@provisioner.stop_vllm_container(host, old_container)
end
info "Starting vLLM with preset '#{preset_name}' (#{preset['model']})..."
# Skip docker pull: image is already present; pulling on every switch risks a
# surprise multi-GB download if the upstream image was updated.
@provisioner.install_vllm(host, preset_config: preset, pull_image: false)
state['vllm_model'] = preset['model']
state['vllm_container_name'] = new_container
state['vllm_preset'] = preset_name
state['vllm_setup_at'] = Time.now.utc.iso8601
state['services'] ||= {}
state['services']['vllm_enabled'] = true
state['services']['ollama_enabled'] = state_ollama_enabled?(state)
@state_store.save(state)
info "Model switched to '#{preset_name}' (#{preset['model']})."
info "Run 'ruby hyperstack.rb test' to verify."
end
# Runs end-to-end inference tests against the active inference services over WireGuard.
# Requires wg1 to be active and the VM to be fully provisioned.
def test
state = @state_store.load
raise Error, "No tracked VM state file found at #{@state_store.path}." if state.nil?
wg_ip = @config.wireguard_gateway_hostname
vllm_enabled = state_vllm_enabled?(state)
ollama_enabled = state_ollama_enabled?(state)
info "Running end-to-end inference tests via WireGuard (#{wg_ip})..."
if vllm_enabled
test_vllm(wg_ip)
end
info " Ollama test: connect via SSH and run 'ollama list' to verify models." if ollama_enabled
info 'All inference tests passed.'
end
private
def resumable_state?(state)
state['vm_id'] && (
state['bootstrapped_at'].nil? ||
ollama_setup_needed?(state) ||
vllm_setup_needed?(state) ||
wireguard_setup_needed?(state)
)
end
def continue_create(state)
vm_id = state['vm_id']
sync_service_mode_state(state)
vm = wait_for_vm_ready(vm_id)
ensure_security_rules(vm)
vm = wait_for_connect_ip(vm_id)
state['public_ip'] = connect_host_for(vm)
state['security_rules'] = Array(vm['security_rules']).map { |rule| normalize_rule(rule) }
@state_store.save(state)
wait_for_ssh(state['public_ip'])
@provisioner.decommission_litellm(state['public_ip'])
if @config.guest_bootstrap_enabled? && state['bootstrapped_at'].nil?
@provisioner.bootstrap_guest(state['public_ip'])
state['bootstrapped_at'] = Time.now.utc.iso8601
@state_store.save(state)
end
# Install Ollama binary and configure the service (fast), but defer
# model pulls until after the WireGuard tunnel is up so that the user
# can monitor progress over the tunnel.
if effective_ollama? && state['ollama_installed_at'].nil?
@provisioner.install_ollama_service(state['public_ip'])
state['ollama_installed_at'] = Time.now.utc.iso8601
@state_store.save(state)
end
# Call pre-hook before deciding whether WireGuard setup is needed; this allows a concurrent
# sibling VM (e.g. VM2 in create-both) to block here until the primary VM (VM1) has
# already written the base wg1.conf, which VM2's setup will then extend with its own peer.
@wg_setup_pre&.call
if wireguard_setup_needed?(state)
run_wireguard_setup(state['public_ip'])
state['wireguard_setup_at'] = Time.now.utc.iso8601
@state_store.save(state)
end
# Always signal post-hook so that a waiting sibling VM is unblocked even when
# WireGuard setup was not needed (e.g. already done on a resume).
@wg_setup_post&.call
# Pull and verify Ollama models after the tunnel is established.
if ollama_setup_needed?(state)
@provisioner.pull_ollama_models(state['public_ip'])
state['ollama_setup_at'] = Time.now.utc.iso8601
state['ollama_models_dir'] = @config.ollama_models_dir
state['ollama_pulled_models'] = @scripts.desired_ollama_models
@state_store.save(state)
end
# Set up vLLM after
# the tunnel is up so that model-download progress is visible locally.
if vllm_setup_needed?(state)
preset_cfg = effective_vllm_preset_config
@provisioner.setup_vllm_stack(state['public_ip'], preset_config: preset_cfg)
state['vllm_setup_at'] = Time.now.utc.iso8601
state['vllm_model'] = preset_cfg&.dig('model') || @config.vllm_model
state['vllm_container_name'] = preset_cfg&.dig('container_name') || @config.vllm_container_name
state['vllm_preset'] = @effective_vllm_preset
@state_store.save(state)
end
vm = @client.get_vm(vm_id)
state['security_rules'] = Array(vm['security_rules']).map { |rule| normalize_rule(rule) }
state['status'] = vm['status']
state['vm_state'] = vm['vm_state']
state['provisioned_at'] = Time.now.utc.iso8601
@state_store.save(state)
info "VM ready: #{state['public_ip']} (id=#{state['vm_id']})"
print_local_wireguard_summary(state['public_ip'])
return unless effective_vllm?
wg_ip = @config.wireguard_gateway_hostname
info "Run 'ruby hyperstack.rb test' to verify vLLM."
info " vLLM: http://#{wg_ip}:#{@config.ollama_port}/v1/models"
end
def build_create_payload(vm_name, resolved)
payload = {
'name' => vm_name,
'count' => 1,
'environment_name' => resolved[:environment]['name'],
'flavor_name' => resolved[:flavor]['name'],
'image_name' => resolved[:image]['name'],
'key_name' => resolved[:keypair]['name'],
'assign_floating_ip' => @config.assign_floating_ip?,
'create_bootable_volume' => @config.create_bootable_volume?,
'enable_port_randomization' => @config.enable_port_randomization?,
'security_rules' => desired_security_rules
}
payload['labels'] = @config.labels unless @config.labels.empty?
payload['user_data'] = @config.user_data if @config.user_data
payload
end
def resolve_dependencies
environment = @client.list_environments.find { |item| item['name'] == @config.environment_name }
raise Error, "Environment #{@config.environment_name.inspect} was not found in Hyperstack." unless environment
flavor = @client.list_flavors.find do |item|
item['name'] == @config.flavor_name && item['region_name'] == environment['region']
end
raise Error, "Flavor #{@config.flavor_name.inspect} is not available in #{environment['region']}." unless flavor
if flavor['stock_available'] == false
raise Error,
"Flavor #{@config.flavor_name.inspect} exists in #{environment['region']} but is out of stock."
end
image = @client.list_images.find do |item|
item['name'] == @config.image_name && item['region_name'] == environment['region']
end
raise Error, "Image #{@config.image_name.inspect} is not available in #{environment['region']}." unless image
keypair = @client.list_keypairs.find do |item|
item['name'] == @config.ssh_key_name && item.dig('environment', 'name') == environment['name']
end
unless keypair
raise Error,
"Keypair #{@config.ssh_key_name.inspect} was not found in environment #{environment['name']}."
end
{
environment: environment,
flavor: flavor,
image: image,
keypair: keypair
}
end
def wait_for_vm_ready(vm_id)
with_polling("VM #{vm_id} to become ready for firewall updates") do
vm = @client.get_vm(vm_id)
next nil if vm.nil?
raise Error, "VM #{vm_id} entered failed state #{vm['status']} / #{vm['vm_state']}." if failed_vm?(vm)
vm_ready_for_updates?(vm) ? vm : nil
end
end
def wait_for_connect_ip(vm_id)
ip_label = @config.assign_floating_ip? ? 'floating IP' : 'reachable IP'
with_polling("VM #{vm_id} to receive a #{ip_label}") do
vm = @client.get_vm(vm_id)
raise Error, "VM #{vm_id} entered failed state #{vm['status']} / #{vm['vm_state']}." if failed_vm?(vm)
connect_host_for(vm) ? vm : nil
end
end
def wait_for_ssh(host)
info "Waiting for SSH on #{host}:#{@config.ssh_port}..."
with_polling("SSH on #{host}:#{@config.ssh_port}") do
next nil unless tcp_open?(host, @config.ssh_port)
next nil unless ensure_trusted_ssh_host(host)
_, stderr, status = run_ssh_command(host, 'true')
if status.success?
true
else
warn "SSH not ready yet: #{stderr.strip}" unless stderr.to_s.strip.empty?
nil
end
end
end
def ensure_security_rules(vm)
existing_rules = Array(vm['security_rules'])
existing = existing_rules.map { |rule| normalize_rule(rule) }
desired = desired_security_rules.map { |rule| normalize_rule(rule) }
(desired - existing).each do |rule|
info "Adding Hyperstack firewall rule #{rule['protocol']} #{rule['remote_ip_prefix']} #{rule['port_range_min']}..."
@client.create_vm_rule(vm['id'], rule)
end
legacy_litellm_rules(existing_rules).each do |rule|
rule_id = rule['id'] || rule['rule_id']
unless rule_id
warn 'Found legacy Hyperstack firewall rule for port 4000, but the API payload has no rule id; remove it manually from the Hyperstack console.'
next
end
info "Removing legacy Hyperstack firewall rule #{rule['protocol']} #{rule['remote_ip_prefix']} #{rule['port_range_min']}..."
@client.delete_vm_rule(vm['id'], rule_id)
rescue Error => e
warn "Failed to remove legacy Hyperstack firewall rule #{rule_id}: #{e.message}"
end
end
def ollama_setup_needed?(state)
return false unless effective_ollama?
# Re-run setup if state has no record, or if desired models changed
return true if state['ollama_setup_at'].nil?
@scripts.model_list_signature(@scripts.desired_ollama_models) !=
@scripts.model_list_signature(state['ollama_pulled_models'])
end
def wireguard_setup_needed?(state)
return false unless @config.wireguard_auto_setup?
public_ip = state['public_ip'].to_s.strip
return true if public_ip.empty?
expected_endpoint = "#{public_ip}:#{@config.wireguard_udp_port}"
!Array(@local_wireguard.status['endpoints']).include?(expected_endpoint)
end
def run_wireguard_setup(host)
validate_wireguard_setup_script!
retries = 3
retries.times do |attempt|
info "Running WireGuard auto-setup via #{@config.wireguard_setup_script} #{host}..."
status = run_wireguard_script(host)
return if status.success?
if attempt == retries - 1
raise Error, "WireGuard setup failed after #{retries} attempts (exit #{status.exitstatus})."
end
delay = (attempt + 1) * 15
warn "WireGuard setup attempt #{attempt + 1}/#{retries} failed (exit #{status.exitstatus}), retrying in #{delay}s..."
sleep delay
end
end
def run_wireguard_script(host)
# Pass server WireGuard IP and WireGuard hostname as positional args so that
# wg1-setup.sh can configure the correct server-side tunnel address and update
# /etc/hosts on the client. The Enter keystroke via stdin bypasses the interactive prompt.
server_ip = @config.wireguard_gateway_ip
wg_hostname = @config.wireguard_gateway_hostname
env = {
'HYPERSTACK_SSH_PORT' => @config.ssh_port.to_s,
'HYPERSTACK_SSH_CONNECT_TIMEOUT' => @config.ssh_connect_timeout.to_s,
'HYPERSTACK_SSH_KNOWN_HOSTS_PATH' => @config.ssh_known_hosts_path,
'HYPERSTACK_SSH_PRIVATE_KEY_PATH' => (File.exist?(@config.ssh_private_key_path) ? @config.ssh_private_key_path : '')
}
Open3.popen2e(env, 'bash', @config.wireguard_setup_script, host, server_ip, wg_hostname) do |stdin, output, wait_thr|
stdin.sync = true
stdin.puts
stdin.close
output.each { |line| @out.print(line) }
wait_thr.value
end
end
def wait_for_deletion(vm_id)
info "Waiting for VM #{vm_id} deletion to complete..."
with_polling("VM #{vm_id} deletion", timeout: 300) do
@client.get_vm(vm_id)
nil
rescue Error => e
raise unless e.message.include?('not_found') || e.message.include?('does not exists')
true
end
end
def connect_host_for(vm)
return vm['floating_ip'] if @config.assign_floating_ip?
vm['floating_ip'] || vm['fixed_ip']
end
def validate_wireguard_setup_script!
script_path = @config.wireguard_setup_script
raise Error, "WireGuard setup script not found: #{script_path}" unless File.exist?(script_path)
mismatches = []
mismatches << "ssh.username must be 'ubuntu'" unless @config.ssh_username == 'ubuntu'
mismatches << "local_client.interface_name must be 'wg1'" unless @config.local_interface_name == 'wg1'
mismatches << 'network.wireguard_udp_port must be 56710' unless @config.wireguard_udp_port == 56_710
unless @config.wireguard_subnet == '192.168.3.0/24'
mismatches << "network.wireguard_subnet must be '192.168.3.0/24'"
end
# Validate that the resolved server IP is actually within the configured subnet.
begin
subnet = IPAddr.new(@config.wireguard_subnet)
server_ip = IPAddr.new(@config.wireguard_gateway_ip)
unless subnet.include?(server_ip)
mismatches << "wireguard_server_ip #{@config.wireguard_gateway_ip.inspect} is outside #{@config.wireguard_subnet}"
end
rescue IPAddr::InvalidAddressError => e
mismatches << "Invalid wireguard_server_ip: #{e.message}"
end
return if mismatches.empty?
raise Error, "Configured WireGuard settings do not match #{script_path}: #{mismatches.join('; ')}"
end
def ensure_trusted_ssh_host(host)
scanned = scan_ssh_host_keys(host)
return false if scanned.empty?
existing = known_host_entries
if existing.empty?
write_known_host_entries(scanned)
info "Pinned SSH host key for #{host} in #{@config.ssh_known_hosts_path}."
return true
end
return true if existing == scanned
raise Error,
"SSH host key mismatch for #{host}. Refusing to continue. Delete #{@config.ssh_known_hosts_path} only if you intentionally replaced this VM."
end
def scan_ssh_host_keys(host)
stdout, stderr, status = Open3.capture3('ssh-keyscan', '-T', @config.ssh_connect_timeout.to_s,
'-p', @config.ssh_port.to_s, host)
unless status.success?
warn "ssh-keyscan not ready yet: #{stderr.strip}" unless stderr.to_s.strip.empty?
return []
end
stdout.lines.map(&:strip).reject { |line| line.empty? || line.start_with?('#') }.sort.uniq
rescue Errno::ENOENT
raise Error, 'ssh-keyscan is required to pin SSH host keys but was not found in PATH.'
end
def known_host_entries
path = @config.ssh_known_hosts_path
return [] unless File.exist?(path)
File.readlines(path, chomp: true).map(&:strip).reject(&:empty?).sort.uniq
rescue Errno::EACCES => e
raise Error, "Cannot read SSH known_hosts file #{path}: #{e.message}"
end
def write_known_host_entries(entries)
path = @config.ssh_known_hosts_path
FileUtils.mkdir_p(File.dirname(path))
temp_path = "#{path}.tmp"
File.write(temp_path, "#{entries.join("\n")}\n")
File.chmod(0o600, temp_path)
File.rename(temp_path, path)
rescue Errno::EACCES => e
raise Error, "Cannot write SSH known_hosts file #{path}: #{e.message}"
end
def delete_ssh_known_hosts_file
File.delete(@config.ssh_known_hosts_path) if File.exist?(@config.ssh_known_hosts_path)
rescue Errno::EACCES => e
raise Error, "Cannot delete SSH known_hosts file #{@config.ssh_known_hosts_path}: #{e.message}"
end
def failed_vm?(vm)
[vm['status'], vm['vm_state'], vm['power_state']].compact.any? do |value|
value.to_s.downcase.match?(/error|failed|deleted|shelved/)
end
end
def vm_ready_for_updates?(vm)
%w[ACTIVE SHUTOFF HIBERNATED].include?(vm['status'].to_s.upcase)
end
def tcp_open?(host, port)
Socket.tcp(host, port, connect_timeout: @config.ssh_connect_timeout) do |sock|
sock.close
true
end
rescue Errno::ECONNREFUSED, Errno::ETIMEDOUT, Errno::EHOSTUNREACH, Errno::ENETUNREACH, SocketError, IOError
false
end
def run_ssh_command(host, remote_script)
Open3.capture3(*ssh_command(host), stdin_data: remote_script)
end
def run_ssh_command_streaming(host, remote_script)
combined_output = +''
Open3.popen2e(*ssh_command(host)) do |stdin, output, wait_thr|
stdin.write(remote_script)
stdin.close
output.each do |line|
combined_output << line
@out.print(line)
end
return [combined_output, wait_thr.value]
end
end
def ssh_command(host)
command = [
'ssh',
'-o', 'BatchMode=yes',
'-o', 'StrictHostKeyChecking=yes',
'-o', "UserKnownHostsFile=#{@config.ssh_known_hosts_path}",
'-o', "ConnectTimeout=#{@config.ssh_connect_timeout}",
'-p', @config.ssh_port.to_s
]
if File.exist?(@config.ssh_private_key_path)
command.concat(['-i', @config.ssh_private_key_path])
else
warn "SSH private key #{@config.ssh_private_key_path} does not exist; falling back to default ssh-agent identity."
end
command << "#{@config.ssh_username}@#{host}"
command << 'bash -se'
command
end
def with_polling(description, timeout: 900, interval: 5)
deadline = Time.now + timeout
loop do
result = yield
return result if result
raise Error, "Timed out waiting for #{description}." if Time.now >= deadline
sleep interval
end
end
def normalize_rule(rule)
{
'direction' => rule['direction'].to_s.downcase,
'ethertype' => rule['ethertype'].to_s,
'protocol' => rule['protocol'].to_s.downcase,
'port_range_min' => integer_or_nil(rule['port_range_min']),
'port_range_max' => integer_or_nil(rule['port_range_max']),
'remote_ip_prefix' => rule['remote_ip_prefix'].to_s
}
end
def sync_service_mode_state(state)
state['services'] = {
'vllm_enabled' => effective_vllm?,
'ollama_enabled' => effective_ollama?
}
end
def desired_security_rules(include_vllm: effective_vllm?, include_ollama: effective_ollama?)
@config.desired_security_rules(include_vllm: include_vllm, include_ollama: include_ollama)
end
def desired_security_rules_for_state(state)
desired_security_rules(include_vllm: state_vllm_enabled?(state), include_ollama: state_ollama_enabled?(state))
end
def legacy_litellm_rules(rules)
Array(rules).select do |rule|
normalized = normalize_rule(rule)
normalized['protocol'] == 'tcp' &&
normalized['port_range_min'] == 4000 &&
normalized['port_range_max'] == 4000 &&
normalized['remote_ip_prefix'] == @config.wireguard_subnet
end
end
def state_vllm_enabled?(state)
recorded = state&.dig('services', 'vllm_enabled')
return recorded unless recorded.nil?
return true if state&.key?('vllm_setup_at')
@config.vllm_install_enabled?
end
def state_ollama_enabled?(state)
recorded = state&.dig('services', 'ollama_enabled')
return recorded unless recorded.nil?
return true if state&.key?('ollama_installed_at') || state&.key?('ollama_setup_at')
@config.ollama_install_enabled?
end
def service_mode_summary(vllm_enabled:, ollama_enabled:)
return 'vLLM enabled, Ollama enabled' if vllm_enabled && ollama_enabled
return 'vLLM enabled, Ollama disabled' if vllm_enabled
return 'Ollama enabled, vLLM disabled' if ollama_enabled
'All inference services disabled'
end
def cleanup_local_access(dry_run:, hostnames:, allowed_ips:)
{
peers: @local_wireguard.remove_peers_by_allowed_ips(allowed_ips, dry_run: dry_run),
hostnames: @local_wireguard.remove_hostnames(hostnames, dry_run: dry_run)
}
end
def report_local_cleanup(output, cleanup, dry_run:)
peer_summary = cleanup[:peers].map { |peer| peer['AllowedIPs'] || peer['Endpoint'] }.join(', ')
host_summary = cleanup[:hostnames].join(', ')
if dry_run
if cleanup[:peers].empty? && cleanup[:hostnames].empty?
output.puts('DRY RUN: no matching local WireGuard peers or host entries would be removed.')
return
end
output.puts("DRY RUN: local WireGuard peers would be removed for #{peer_summary}.") unless cleanup[:peers].empty?
output.puts("DRY RUN: local host entries would be removed for #{host_summary}.") unless cleanup[:hostnames].empty?
return
end
output.puts('No matching local WireGuard peers needed removal.') if cleanup[:peers].empty?
output.puts('No matching local host entries needed removal.') if cleanup[:hostnames].empty?
output.puts("Local WireGuard peers removed for #{peer_summary}.") unless cleanup[:peers].empty?
output.puts("Local host entries removed for #{host_summary}.") unless cleanup[:hostnames].empty?
end
def print_create_dry_run(vm_name, resolved, payload)
info 'DRY RUN: no VM or state file will be created.'
info "State file: #{@state_store.path}"
info "Resolved environment: #{resolved[:environment]['name']} (region #{resolved[:environment]['region']})"
info "Resolved flavor: #{format_flavor(resolved[:flavor])}"
info "Resolved image: #{resolved[:image]['name']}"
info "Resolved SSH keypair: #{resolved[:keypair]['name']}"
info "Planned VM name: #{vm_name}"
info "Allowed SSH CIDRs: #{@config.allowed_ssh_cidrs.join(', ')}"
info "Allowed WireGuard CIDRs: #{@config.allowed_wireguard_cidrs.join(', ')}"
info 'Create payload:'
@out.puts(JSON.pretty_generate(payload))
if @config.guest_bootstrap_enabled?
info 'Guest bootstrap script:'
@out.puts(@scripts.guest_bootstrap_script)
else
info 'Guest bootstrap is disabled in config.'
end
if effective_ollama?
info "Ollama will be installed with models stored under #{@config.ollama_models_dir}"
models = @scripts.desired_ollama_models
info "Ollama models to pre-pull: #{models.join(', ')}" unless models.empty?
end
if effective_vllm?
preset_cfg = effective_vllm_preset_config
vllm_m = preset_cfg&.dig('model') || @config.vllm_model
vllm_cname = preset_cfg&.dig('container_name') || @config.vllm_container_name
vllm_maxlen = preset_cfg&.dig('max_model_len') || @config.vllm_max_model_len
preset_note = @effective_vllm_preset ? " (preset: #{@effective_vllm_preset})" : ''
info "vLLM will be installed: #{vllm_m}#{preset_note}"
info " Container: #{vllm_cname}, port #{@config.ollama_port}, max_model_len #{vllm_maxlen}"
end
if @config.wireguard_auto_setup?
info "WireGuard auto-setup script: #{@config.wireguard_setup_script} <vm_public_ip>"
end
print_local_wireguard_summary(nil)
end
def print_resume_dry_run(state)
info "DRY RUN: would resume provisioning tracked VM #{state['vm_id']}."
begin
vm = @client.get_vm(state['vm_id'])
info "Tracked VM status: #{vm['status']} / #{vm['vm_state']}"
info "Tracked VM public IP: #{connect_host_for(vm) || 'none'}"
rescue Error => e
warn "Unable to inspect tracked VM #{state['vm_id']}: #{e.message}"
end
if @config.guest_bootstrap_enabled?
info 'Guest bootstrap script:'
@out.puts(@scripts.guest_bootstrap_script)
end
if ollama_setup_needed?(state)
info "Ollama would be installed with models stored under #{@config.ollama_models_dir}"
models = @scripts.desired_ollama_models
info "Ollama models to pre-pull: #{models.join(', ')}" unless models.empty?
end
if vllm_setup_needed?(state)
info "vLLM would be installed: #{@config.vllm_model}"
end
if wireguard_setup_needed?(state)
info "WireGuard auto-setup script would run: #{@config.wireguard_setup_script} #{state['public_ip'] || '<pending-public-ip>'}"
end
print_local_wireguard_summary(state['public_ip'])
end
def print_delete_dry_run(target_vm_id, state, preserve_state_on_failure:)
info 'DRY RUN: no VM will be deleted.'
begin
vm = @client.get_vm(target_vm_id)
info "Delete target: #{target_vm_id} #{vm['name']} (#{vm['status']} / #{vm['vm_state']})"
info "Delete target public IP: #{connect_host_for(vm) || 'none'}"
rescue Error => e
warn "Unable to inspect VM #{target_vm_id} before delete: #{e.message}"
end
if state && state['vm_id'].to_i == target_vm_id.to_i
action = preserve_state_on_failure ? 'would remain unchanged' : 'would be removed'
info "Tracked state file #{@state_store.path} #{action}."
cleanup = cleanup_local_access(dry_run: true, hostnames: [@config.wireguard_gateway_hostname],
allowed_ips: ["#{@config.wireguard_gateway_ip}/32"])
report_local_cleanup(@out, cleanup, dry_run: true)
else
info 'No tracked state entry would be modified.'
end
end
def format_flavor(flavor)
gpu = flavor['gpu'].to_s.empty? ? 'CPU-only' : flavor['gpu']
[
flavor['name'],
gpu,
"#{flavor['gpu_count']} GPU",
"#{flavor['ram']} GB RAM",
"#{flavor['cpu']} vCPU",
"stock=#{flavor['stock_available']}"
].join(', ')
end
# Returns the effective Ollama flag: CLI override if set, else config default.
def effective_ollama?
defined?(@effective_ollama) ? @effective_ollama : @config.ollama_install_enabled?
end
# Returns the effective vLLM flag: CLI override if set, else config default.
def effective_vllm?
defined?(@effective_vllm) ? @effective_vllm : @config.vllm_install_enabled?
end
# Returns the resolved preset config hash when a preset was selected via
# --model, or nil when using the top-level [vllm] defaults directly.
def effective_vllm_preset_config
name = defined?(@effective_vllm_preset) ? @effective_vllm_preset : nil
return nil unless name
@config.vllm_preset(name)
end
def vllm_setup_needed?(state)
return false unless effective_vllm?
return true if state['vllm_setup_at'].nil?
# Re-run if the active model changed (direct config edit or --model preset flag).
desired = effective_vllm_preset_config&.dig('model') || @config.vllm_model
state['vllm_model'] != desired
end
# Tests the vLLM OpenAI-compatible API: lists loaded models and runs a
# short inference request to confirm the model accepts requests.
def test_vllm(wg_ip)
port = @config.ollama_port
info " Testing vLLM models list at http://#{wg_ip}:#{port}/v1/models..."
uri = URI("http://#{wg_ip}:#{port}/v1/models")
resp = Net::HTTP.get_response(uri)
raise Error, "vLLM /v1/models returned HTTP #{resp.code}" unless resp.code == '200'
models = JSON.parse(resp.body).fetch('data', []).map { |m| m['id'] }
raise Error, 'vLLM returned an empty model list' if models.empty?
# Use the currently loaded model (may differ from config default after a switch).
model = models.first
info " Models loaded: #{models.join(', ')}"
info ' Testing vLLM inference...'
reply = vllm_chat(wg_ip, port, model, 'Say hello in five words.')
info " vLLM response: #{reply}"
rescue Errno::ECONNREFUSED, Errno::EHOSTUNREACH, SocketError => e
raise Error, "Cannot reach vLLM at #{wg_ip}:#{port} — is WireGuard (wg1) active? (#{e.message})"
end
# Sends a single OpenAI chat completion request and returns the reply text.
def vllm_chat(host, port, model, prompt)
uri = URI("http://#{host}:#{port}/v1/chat/completions")
req = Net::HTTP::Post.new(uri)
req['Content-Type'] = 'application/json'
req['Authorization'] = 'Bearer EMPTY'
req.body = JSON.generate(
'model' => model,
'messages' => [{ 'role' => 'user', 'content' => prompt }],
# 500 tokens: reasoning models (e.g. gpt-oss) use tokens for chain-of-thought
# before content; 50 is too small and yields an empty content field.
'max_tokens' => 500
)
resp = Net::HTTP.start(uri.host, uri.port, open_timeout: 10, read_timeout: 120) { |h| h.request(req) }
raise Error, "vLLM inference returned HTTP #{resp.code}" unless resp.code == '200'
JSON.parse(resp.body).dig('choices', 0, 'message', 'content').to_s.strip
end
def integer_or_nil(value)
value.nil? ? nil : Integer(value)
end
def print_local_wireguard_summary(expected_ips)
return unless @config.local_client_checks_enabled?
wg_status = @local_wireguard.status
endpoints = Array(wg_status['endpoints']).compact.uniq
info "Local WireGuard #{@config.local_interface_name}: #{wg_status['service_state']}"
if endpoints.empty?
if wg_status['config_readable']
info 'Local WireGuard has no configured peers.'
else
warn "Unable to read #{@config.local_wg_config_path} for local WireGuard endpoint validation."
end
return
end
label = endpoints.one? ? 'endpoint' : 'endpoints'
info "Local WireGuard #{label}: #{endpoints.join(', ')}"
expected = Array(expected_ips).compact.map(&:to_s).map(&:strip).reject(&:empty?).uniq
return if expected.empty?
expected_endpoints = expected.map { |ip| "#{ip}:#{@config.wireguard_udp_port}" }
missing = expected_endpoints.reject { |endpoint| endpoints.include?(endpoint) }
if expected_endpoints.one?
if missing.empty?
info 'Local WireGuard endpoint matches the managed VM IP.'
else
hosts = endpoints.map { |endpoint| endpoint.split(':', 2).first }.uniq
warn "Local WireGuard endpoints point to #{hosts.join(', ')}, expected #{expected.first}."
end
return
end
if missing.empty?
info 'Local WireGuard has peers for all managed VM IPs.'
else
present = expected_endpoints - missing
info "Local WireGuard has peers for: #{present.map { |endpoint| endpoint.split(':', 2).first }.join(', ')}" unless present.empty?
warn "Local WireGuard missing peers for: #{missing.map { |endpoint| endpoint.split(':', 2).first }.join(', ')}."
end
end
def info(message)
@out.puts(message)
end
def warn(message)
@out.puts("WARN: #{message}")
end
end
# Continuously polls all active VMs for vLLM Prometheus metrics (over HTTP/WireGuard)
# and GPU stats (over SSH) and redraws a compact terminal dashboard every 60 seconds.
class VllmWatcher
REFRESH_INTERVAL = 5
# ANSI escape helpers
BOLD = "\033[1m"
DIM = "\033[2m"
GREEN = "\033[32m"
YELLOW = "\033[33m"
CYAN = "\033[36m"
RED = "\033[31m"
RESET = "\033[0m"
CLEAR = "\033[2J\033[H"
# Snapshot of one VM's stats at a point in time.
VmSnapshot = Struct.new(
:label, :wg_host, :vllm_model, :container_name,
:metrics, :gpus,
:vllm_error, :gpu_error,
:fetched_at,
keyword_init: true
)
# Parsed per-GPU row from nvidia-smi.
GpuInfo = Struct.new(
:index, :name, :temp_c, :util_pct, :power_w,
:mem_used_mib, :mem_total_mib,
keyword_init: true
)
def initialize(config_loaders:)
@config_loaders = config_loaders
end
# Runs the watch loop until the user presses Ctrl-C.
def run
$stdout.print "\033[?25l" # hide cursor
loop do
snapshots = fetch_all_parallel
draw(snapshots)
sleep REFRESH_INTERVAL
end
rescue Interrupt
nil
ensure
$stdout.print "\033[?25h\n" # restore cursor
end
private
# Fetches stats for every VM concurrently and returns an array of VmSnapshot.
def fetch_all_parallel
threads = @config_loaders.map { |loader| Thread.new { fetch_vm(loader) } }
threads.map(&:value)
end
# Fetches GPU stats and vLLM engine stats for a single VM via one SSH session.
# nvidia-smi covers hardware metrics; docker logs provide the throughput and
# cache hit rate numbers that vLLM logs every few seconds as "Engine 0" lines.
def fetch_vm(loader)
config = loader.config
label = File.basename(loader.path, '.toml')
wg_host = config.wireguard_gateway_hostname
state = load_state(config.state_file)
unless state
return VmSnapshot.new(label: label, wg_host: wg_host,
vllm_model: nil, container_name: nil,
metrics: nil, gpus: nil,
vllm_error: 'no state file', gpu_error: nil,
fetched_at: Time.now)
end
vllm_model = state['vllm_model'] || config.vllm_model
container_name = state['vllm_container_name'] || config.vllm_container_name
gpus, metrics, ssh_error = fetch_vm_stats(config, wg_host, container_name)
VmSnapshot.new(label: label, wg_host: wg_host,
vllm_model: vllm_model, container_name: container_name,
metrics: metrics, gpus: gpus,
vllm_error: ssh_error, gpu_error: ssh_error,
fetched_at: Time.now)
rescue StandardError => e
VmSnapshot.new(label: label || '?', wg_host: wg_host || '?',
vllm_model: nil, container_name: nil,
metrics: nil, gpus: nil,
vllm_error: e.message, gpu_error: nil,
fetched_at: Time.now)
end
def load_state(path)
JSON.parse(File.read(path))
rescue Errno::ENOENT, JSON::ParserError
nil
end
# Single SSH call that runs nvidia-smi and tails the vLLM container logs.
# The two sections are separated by a sentinel line so we can split them.
# Returns [gpus, metrics, error_or_nil].
def fetch_vm_stats(config, wg_host, container_name)
gpu_query = 'index,name,temperature.gpu,utilization.gpu,power.draw,memory.used,memory.total'
# --tail 200 instead of --since N so we always get the last stats line
# even when the VM has been idle for longer than the refresh interval.
script = <<~BASH
nvidia-smi --query-gpu=#{gpu_query} --format=csv,noheader,nounits
echo ===VLLM===
docker logs --tail 200 #{container_name} 2>&1 | grep 'Engine 0' | tail -1
BASH
ssh = build_ssh_command(config, wg_host)
stdout, stderr, status = Timeout.timeout(15) { Open3.capture3(*ssh, stdin_data: script) }
unless status.success?
return [nil, nil, "exit #{status.exitstatus}: #{stderr.strip}"]
end
gpu_section, vllm_section = stdout.split("===VLLM===\n", 2)
gpus = parse_nvidia_smi(gpu_section.to_s)
metrics = parse_engine_log_line(vllm_section.to_s.strip)
[gpus, metrics, nil]
end
# Parse a vLLM "Engine 0" log line into a plain Hash.
# Actual log format (loggers.py):
# (APIServer pid=1) INFO ... [loggers.py:259] Engine 000:
# Avg prompt throughput: 6154.6 tokens/s,
# Avg generation throughput: 27.4 tokens/s,
# Running: 1 reqs, Waiting: 0 reqs,
# GPU KV cache usage: 0.7%, Prefix cache hit rate: 0.0%
# Returns an empty hash when no matching line was found (container still loading).
def parse_engine_log_line(line)
return {} if line.empty?
{
'avg_prompt_throughput' => extract_float(line, /Avg prompt throughput:\s*([\d.]+)/),
'avg_generation_throughput' => extract_float(line, /Avg generation throughput:\s*([\d.]+)/),
'running' => extract_float(line, /Running:\s*(\d+)\s*reqs/),
'pending' => extract_float(line, /Waiting:\s*(\d+)\s*reqs/),
'swapped' => extract_float(line, /Swapped:\s*(\d+)\s*reqs/),
'gpu_cache_usage_pct' => extract_float(line, /GPU KV cache usage:\s*([\d.]+)%/),
'gpu_prefix_cache_hit_rate_pct' => extract_float(line, /Prefix cache hit rate:\s*([\d.]+)%/),
}.compact
end
def extract_float(text, pattern)
m = text.match(pattern)
m ? m[1].to_f : nil
end
# Build an SSH command array for the watcher.
# Uses accept-new rather than yes because the known-hosts file was populated
# with the VM's public IP during provisioning; the WireGuard hostname
# (hyperstack1.wg1 etc.) won't be in it yet. accept-new auto-trusts the first
# connection and caches the key — safe here because we're connecting over the
# already-authenticated WireGuard tunnel.
def build_ssh_command(config, host)
cmd = [
'ssh',
'-o', 'BatchMode=yes',
'-o', 'StrictHostKeyChecking=accept-new',
'-o', "UserKnownHostsFile=#{config.ssh_known_hosts_path}",
'-o', "ConnectTimeout=#{config.ssh_connect_timeout}",
'-p', config.ssh_port.to_s
]
key = config.ssh_private_key_path
cmd.concat(['-i', key]) if File.exist?(key)
cmd << "#{config.ssh_username}@#{host}"
cmd << 'bash -se'
cmd
end
def parse_nvidia_smi(text)
text.lines.filter_map do |line|
parts = line.strip.split(',').map(&:strip)
next if parts.length < 7
GpuInfo.new(
index: parts[0].to_i,
name: parts[1],
temp_c: parts[2].to_f,
util_pct: parts[3].to_f,
power_w: parts[4].to_f,
mem_used_mib: parts[5].to_f,
mem_total_mib: parts[6].to_f
)
end
end
# ── Rendering ────────────────────────────────────────────────────────────
# Clears the screen and redraws the full dashboard for all VMs.
def draw(snapshots)
time_str = Time.now.strftime('%H:%M:%S')
header = "#{BOLD}#{CYAN}vLLM watch#{RESET} " \
"#{DIM}#{time_str} Ctrl-C to stop " \
"refreshing every #{REFRESH_INTERVAL}s#{RESET}"
panels = snapshots.map { |snap| render_vm(snap) }
if panels.size >= 2
# Lay out VM panels side-by-side, padding each to its own visible width
# so the separator column stays aligned regardless of content length.
panel_widths = panels.map { |p| p.map { |l| strip_ansi(l).length }.max.to_i }
max_rows = panels.map(&:size).max
panels.each { |p| p.fill('', p.size...max_rows) }
sep = " #{DIM}│#{RESET} "
panel_lines = (0...max_rows).map do |i|
panels.each_with_index.map do |panel, j|
cell = panel[i] || ''
# Pad every column except the last so the separator stays in column.
next cell if j == panels.size - 1
visible_len = strip_ansi(cell).length
cell + ' ' * [panel_widths[j] - visible_len, 0].max
end.join(sep)
end
rule_w = [strip_ansi(panel_lines.first || '').length, 72].max
rule = DIM + ('─' * rule_w) + RESET
lines = [header, rule, *panel_lines, '']
else
# Single VM: simple vertical layout.
rule = DIM + ('─' * 72) + RESET
lines = [header, rule]
panels.each { |p| lines << ''; lines.concat(p) }
lines << ''
end
$stdout.write(CLEAR + lines.join("\n"))
$stdout.flush
end
# Width of the label column used in every metric row, keeping bars aligned.
LABEL_W = 10
# Renders a single VM panel as an array of strings (one per display line).
def render_vm(snap)
lines = []
model_label = snap.vllm_model ? DIM + snap.vllm_model.split('/').last + RESET : ''
lines << "#{BOLD}#{snap.label}#{RESET} #{DIM}#{snap.wg_host}#{RESET} #{model_label}"
# Both GPU and vLLM stats come from the same SSH call; show one error if it failed.
if snap.gpu_error
lines << " #{RED}#{snap.gpu_error}#{RESET}"
else
snap.gpus&.each do |gpu|
mem_pct = gpu.mem_total_mib > 0 ? (gpu.mem_used_mib / gpu.mem_total_mib * 100.0) : 0.0
lines << format(' GPU%-2d %-26s %3.0f°C %5.0fW',
gpu.index, gpu.name, gpu.temp_c, gpu.power_w)
lines << bar_row('util', gpu.util_pct)
lines << bar_row('VRAM', mem_pct)
end
if snap.metrics&.any?
lines.concat(render_vllm_metrics(snap.metrics))
elsif snap.metrics&.empty?
lines << " #{DIM}(no Engine log line yet — container may still be loading)#{RESET}"
end
end
lines
end
# Formats the vLLM engine log stats into display lines.
# All values come directly from the "Engine 0" log line that vLLM emits
# every few seconds, so tok/s figures are the rolling averages vLLM computes
# internally — no client-side rate derivation needed.
def render_vllm_metrics(m)
lines = []
# Throughput: rolling averages already computed by vLLM
prefill_tps = m['avg_prompt_throughput']
decode_tps = m['avg_generation_throughput']
tput_parts = []
tput_parts << "prefill #{format('%.1f', prefill_tps)} tok/s" if prefill_tps
tput_parts << "decode #{format('%.1f', decode_tps)} tok/s" if decode_tps
lines << row('throughput', tput_parts.empty? ? 'n/a' : tput_parts.join(' '))
# Request queue depth
running = m['running']
swapped = m['swapped']
pending = m['pending']
q_parts = []
q_parts << "#{running.to_i} running" if running
q_parts << "#{pending.to_i} waiting" if pending
q_parts << "#{swapped.to_i} swapped" if swapped && swapped > 0
lines << row('requests', q_parts.empty? ? 'n/a' : q_parts.join(' '))
# KV-cache fill and prefix-cache hit rate, each with an aligned bar
gpu_cache = m['gpu_cache_usage_pct']
hit_rate_gpu = m['gpu_prefix_cache_hit_rate_pct']
lines << bar_row('KV cache', gpu_cache) if gpu_cache
lines << bar_row('cache hits', hit_rate_gpu) if hit_rate_gpu
lines
end
# Formats one metric row: fixed-width label then value, giving all rows the same indent.
def row(label, value)
" #{label.ljust(LABEL_W)} #{value}"
end
# Formats one bar row: fixed-width label, proportional bar, percentage number.
# All bar rows share the same column for '[', aligning bars across GPU and vLLM sections.
def bar_row(label, pct)
row(label, "#{pct_bar(pct, 10)} #{format('%5.1f', pct)}%")
end
# Renders a proportional bar for any percentage (0–100).
# Colour: green below 50%, yellow 50–79%, red 80%+.
def pct_bar(pct, width)
filled = [(pct / 100.0 * width).round, width].min
color = pct >= 80 ? RED : pct >= 50 ? YELLOW : GREEN
"[#{color}#{'█' * filled}#{RESET}#{' ' * (width - filled)}]"
end
# Strips ANSI escape sequences to measure the visible length of a string.
def strip_ansi(str)
str.gsub(/\033\[[0-9;]*m/, '')
end
# Formats an integer with thousands separators, e.g. 1234567 → "1,234,567".
def fmt_num(n)
n.to_i.to_s.reverse.scan(/\d{1,3}/).join(',').reverse
end
end
class CLI
def initialize(argv)
@argv = argv.dup
@config_path = File.join(__dir__, 'hyperstack-vm.toml')
@config_explicit = false
end
def show_help
puts @global_parser
puts
puts 'Commands:'
puts ' create [--replace] [--dry-run] [--vllm|--no-vllm] [--ollama|--no-ollama] [--model PRESET]'
puts ' create-both [--replace] [--dry-run] [--vllm|--no-vllm] [--ollama|--no-ollama]'
puts ' Provision hyperstack-vm1.toml and hyperstack-vm2.toml concurrently.'
puts ' WireGuard setup is serialized: VM1 writes the base wg1.conf first,'
puts ' then VM2 adds its peer. Requires both TOML files next to the script.'
puts ' delete [--vm-id ID] [--dry-run]'
puts ' delete-both [--dry-run]'
puts ' Delete the VMs tracked by hyperstack-vm1.toml and hyperstack-vm2.toml.'
puts ' status'
puts ' watch'
puts ' Poll all active VMs for vLLM and GPU stats every 60 s.'
puts ' test'
puts ' model list'
puts ' model switch PRESET [--dry-run]'
end
def run
@global_parser = OptionParser.new do |opts|
opts.banner = 'Usage: ruby hyperstack.rb [--config path] <create|delete|status> [options]'
opts.on('--config PATH', "Path to TOML config (default: #{@config_path})") do |value|
@config_path = value
@config_explicit = true
end
opts.on('-h', '--help', 'Show help') do
show_help
exit 0
end
end
@global_parser.order!(@argv)
command = @argv.shift
if command.nil?
show_help
exit 0
end
# create-both loads its own config files and does not use the default config path.
# Parse it before building the manager so we avoid loading the default config needlessly.
if command == 'create-both'
opts = parse_create_options(@argv, include_model_preset: false)
run_create_both(**opts)
return
end
if command == 'delete-both'
opts = parse_delete_both_options(@argv)
run_delete_both(**opts)
return
end
if command == 'status'
run_status
return
end
if command == 'watch'
run_watch
return
end
# All other commands operate on a single VM defined by the --config path.
config_loader = ConfigLoader.load(@config_path)
manager = build_manager(config_loader.config)
case command
when 'create'
opts = parse_create_options(@argv)
manager.create(**opts)
when 'delete'
vm_id = nil
dry_run = false
parser = OptionParser.new do |opts|
opts.on('--vm-id ID', Integer, 'Delete a VM by ID instead of using the local state file') do |value|
vm_id = value
end
opts.on('--dry-run', 'Show which VM would be deleted without deleting it') { dry_run = true }
end
parser.parse!(@argv)
manager.delete(vm_id: vm_id, dry_run: dry_run)
when 'test'
manager.test
when 'model'
sub = @argv.shift
raise Error, 'Missing model subcommand. Use: model list | model switch PRESET [--dry-run]' if sub.nil?
case sub
when 'list'
manager.list_models
when 'switch'
preset = @argv.shift
raise Error, 'Missing preset name. Usage: model switch PRESET [--dry-run]' if preset.nil?
dry_run = false
OptionParser.new { |o| o.on('--dry-run') { dry_run = true } }.parse!(@argv)
manager.switch_model(preset_name: preset, dry_run: dry_run)
else
raise Error, "Unknown model subcommand #{sub.inspect}. Use list or switch."
end
else
raise Error, "Unknown command #{command.inspect}. Use create, create-both, delete, delete-both, status, watch, test, or model."
end
end
private
# Parses the shared --replace / --dry-run / --vllm / --ollama / --model flags
# used by both 'create' and 'create-both'. When include_model_preset is false
# (create-both), the --model flag is not registered because each VM uses its own
# TOML default. Returns a hash suitable for splatting into Manager#create.
def parse_create_options(argv, include_model_preset: true)
opts = { replace: false, dry_run: false, install_vllm: nil, install_ollama: nil, vllm_preset: nil }
OptionParser.new do |o|
o.on('--replace', 'Delete the tracked VM before creating a new one') { opts[:replace] = true }
o.on('--dry-run', 'Print the create plan without creating a VM') { opts[:dry_run] = true }
o.on('--vllm', 'Enable vLLM setup (overrides config)') { opts[:install_vllm] = true }
o.on('--no-vllm', 'Disable vLLM setup (overrides config)') { opts[:install_vllm] = false }
o.on('--ollama', 'Enable Ollama setup (overrides config)') { opts[:install_ollama] = true }
o.on('--no-ollama', 'Disable Ollama setup (overrides config)') { opts[:install_ollama] = false }
o.on('--model PRESET', 'Use a named vLLM preset at create time') { |v| opts[:vllm_preset] = v } if include_model_preset
end.parse!(argv)
opts
end
def parse_delete_both_options(argv)
opts = { dry_run: false }
OptionParser.new do |o|
o.on('--dry-run', 'Show which VMs would be deleted without deleting them') { opts[:dry_run] = true }
end.parse!(argv)
opts
end
# Constructs a Manager and all its dependencies from a Config object.
# Accepts optional output destination and WireGuard concurrency hooks.
def build_manager(config, out: $stdout, wg_setup_pre: nil, wg_setup_post: nil)
state_store = StateStore.new(config.state_file)
client = HyperstackClient.new(base_url: config.api_base_url, api_key: config.api_key)
local_wireguard = build_local_wireguard(config)
Manager.new(
config: config,
client: client,
state_store: state_store,
local_wireguard: local_wireguard,
out: out,
wg_setup_pre: wg_setup_pre,
wg_setup_post: wg_setup_post
)
end
def build_local_wireguard(config)
LocalWireGuard.new(
interface_name: config.local_interface_name,
config_path: config.local_wg_config_path
)
end
# Starts the VllmWatcher dashboard for all active VMs.
# Reuses status_config_loaders so it auto-discovers the same set of VMs
# that `status` would show (honours --config if given explicitly).
def run_watch
loaders = status_config_loaders
if loaders.empty?
raise Error, 'No active VMs found. Run `create` or `create-both` first.'
end
VllmWatcher.new(config_loaders: loaders).run
end
def run_status
loaders = status_config_loaders
if loaders.one?
build_manager(loaders.first.config).status
return
end
expected_ips = []
loaders.each_with_index do |loader, index|
puts if index.positive?
puts "[#{File.basename(loader.path)}]"
expected_ip = build_manager(loader.config).status(include_local_wireguard: false)
expected_ips << expected_ip if expected_ip
end
puts
puts '[local-wireguard]'
build_manager(loaders.first.config).show_local_wireguard(expected_ips)
end
def status_config_loaders
return [ConfigLoader.load(@config_path)] if @config_explicit
candidates = [
@config_path,
File.join(__dir__, 'hyperstack-vm1.toml'),
File.join(__dir__, 'hyperstack-vm2.toml')
].uniq.select { |path| File.exist?(path) }
loaders = candidates.map { |path| ConfigLoader.load(path) }
tracked = loaders.select { |loader| File.exist?(loader.config.state_file) }
tracked.empty? ? [ConfigLoader.load(@config_path)] : tracked
end
def pair_config_loaders
[
ConfigLoader.load(File.join(__dir__, 'hyperstack-vm1.toml')),
ConfigLoader.load(File.join(__dir__, 'hyperstack-vm2.toml'))
]
end
# Provisions hyperstack-vm1 and hyperstack-vm2 concurrently in separate threads.
# WireGuard setup is serialized: VM1 runs first (replacing the base wg1.conf), then
# VM2 adds its peer. A Mutex+ConditionVariable acts as a one-shot latch between threads.
# If VM1 fails before reaching the WG step the latch is still released so VM2 doesn't hang.
# vllm_preset is accepted but ignored — each VM uses its own TOML default preset.
def run_create_both(replace:, dry_run:, install_vllm:, install_ollama:, vllm_preset: nil) # rubocop:disable Lint/UnusedMethodArgument
vm1_loader, vm2_loader = pair_config_loaders
vm1_config = vm1_loader.config
vm2_config = vm2_loader.config
out_mutex = Mutex.new
wg_mutex = Mutex.new
wg_cv = ConditionVariable.new
vm1_wg_state = { done: false, error: nil }
# VM1 signals the latch after its WG step (whether WG ran or was already done).
vm1_wg_post = proc do
wg_mutex.synchronize { vm1_wg_state[:done] = true; wg_cv.broadcast }
end
# VM2 blocks here until VM1's WG step resolves, then raises if VM1 failed.
vm2_wg_pre = proc do
wg_mutex.synchronize { wg_cv.wait(wg_mutex) until vm1_wg_state[:done] || vm1_wg_state[:error] }
raise Error, "VM1 WireGuard setup failed; cannot add VM2 peer." if vm1_wg_state[:error]
end
manager1 = build_manager(vm1_config,
out: PrefixedOutput.new('[vm1] ', $stdout, out_mutex),
wg_setup_post: vm1_wg_post)
manager2 = build_manager(vm2_config,
out: PrefixedOutput.new('[vm2] ', $stdout, out_mutex),
wg_setup_pre: vm2_wg_pre)
errors = {}
create_opts = { replace: replace, dry_run: dry_run,
install_vllm: install_vllm, install_ollama: install_ollama }
vm1_thread = Thread.new do
manager1.create(**create_opts)
rescue Error => e
errors[:vm1] = e.message
# Unblock VM2 even if VM1 failed so the process doesn't hang.
wg_mutex.synchronize { vm1_wg_state[:error] = e.message; wg_cv.broadcast }
end
vm2_thread = Thread.new do
manager2.create(**create_opts)
rescue Error => e
errors[:vm2] = e.message
end
[vm1_thread, vm2_thread].each(&:join)
errors.each { |vm, msg| $stderr.puts("ERROR [#{vm}]: #{msg}") }
exit 1 unless errors.empty?
end
def run_delete_both(dry_run:)
out_mutex = Mutex.new
errors_mutex = Mutex.new
errors = {}
loaders = pair_config_loaders
local_wg_out = PrefixedOutput.new('[local-wireguard] ', $stdout, out_mutex)
threads = loaders.each_with_index.map do |loader, index|
label = "vm#{index + 1}"
manager = build_manager(loader.config, out: PrefixedOutput.new("[#{label}] ", $stdout, out_mutex))
Thread.new do
manager.delete(dry_run: dry_run, skip_local_cleanup: true)
rescue Error => e
errors_mutex.synchronize { errors[label.to_sym] = e.message }
end
end
threads.each(&:join)
if errors.empty?
allowed_ips = loaders.map { |loader| "#{loader.config.wireguard_gateway_ip}/32" }
hostnames = loaders.map { |loader| loader.config.wireguard_gateway_hostname }
begin
local_manager = build_manager(loaders.first.config, out: local_wg_out)
cleanup = local_manager.send(:cleanup_local_access, dry_run: dry_run, hostnames: hostnames,
allowed_ips: allowed_ips)
local_manager.send(:report_local_cleanup, local_wg_out, cleanup, dry_run: dry_run)
rescue Error => e
errors[:local_wireguard] = e.message
end
end
errors.each { |vm, msg| $stderr.puts("ERROR [#{vm}]: #{msg}") }
exit 1 unless errors.empty?
end
end
end
begin
HyperstackVM::CLI.new(ARGV).run
rescue HyperstackVM::Error => e
warn "ERROR: #{e.message}"
exit 1
end
|