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
|
# frozen_string_literal: true
require_relative 'provisioning'
require_relative 'ssh_runner'
require_relative 'vm_lifecycle'
require_relative 'wireguard_setup'
require_relative 'model_switcher'
require_relative 'inference_tester'
require_relative 'provisioning_orchestrator'
module HyperstackVM
# Thin facade that coordinates focused collaborators.
class Manager
def initialize(config:, client:, state_store:, local_wireguard:, out: $stdout,
local_wg_config_path: nil, wg_setup_pre: nil, wg_setup_post: nil)
@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
@scripts = ProvisioningScripts.new(config: config)
@ssh_runner = SshRunner.new(config: config, out: out)
@vm_lifecycle = VmLifecycle.new(
config: config,
client: client,
state_store: state_store,
local_wireguard: local_wireguard,
out: out
)
@wireguard_setup = WireGuardSetup.new(
config: config,
ssh_runner: @ssh_runner,
local_wireguard: local_wireguard,
out: out,
wg_setup_pre: wg_setup_pre,
wg_setup_post: wg_setup_post
)
@provisioner = RemoteProvisioner.new(
config: config,
scripts: @scripts,
out: out,
ssh_command_runner: @ssh_runner.method(:run),
ssh_stream_runner: @ssh_runner.method(:run_streaming)
)
@inference_tester = InferenceTester.new(
config: config,
out: out
)
@orchestrator = ProvisioningOrchestrator.new(
config: config,
client: client,
state_store: state_store,
scripts: @scripts,
provisioner: @provisioner,
ssh_runner: @ssh_runner,
wireguard_setup: @wireguard_setup,
inference_tester: @inference_tester,
out: out
)
@model_switcher = ModelSwitcher.new(
config: config,
provisioner: @provisioner,
state_store: state_store,
out: out
)
end
def create(replace: false, dry_run: false, install_vllm: nil, install_ollama: nil,
flavor_name: nil, vllm_preset: nil)
install_vllm = @config.vllm_install_enabled? if install_vllm.nil?
install_ollama = @config.ollama_install_enabled? if install_ollama.nil?
state = @vm_lifecycle.create(
replace: replace,
dry_run: dry_run,
flavor_name: flavor_name,
vllm_preset: vllm_preset,
install_vllm: install_vllm,
install_ollama: install_ollama
) { |s| show_local_wireguard([s['public_ip']].compact) }
return if state.nil?
@orchestrator.run(
state,
vllm_preset: vllm_preset,
install_vllm: install_vllm,
install_ollama: install_ollama
)
rescue Error => e
@state_store.save(state) if state
raise
end
def delete(vm_id: nil, preserve_state_on_failure: false, dry_run: false, skip_local_cleanup: false)
@vm_lifecycle.delete(
vm_id: vm_id,
preserve_state_on_failure: preserve_state_on_failure,
dry_run: dry_run,
skip_local_cleanup: skip_local_cleanup
)
end
def status(include_local_wireguard: true)
ip = @vm_lifecycle.status
show_local_wireguard([ip].compact) if include_local_wireguard
ip
end
def show_local_wireguard(expected_ips)
@vm_lifecycle.show_local_wireguard(expected_ips)
end
def switch_model(preset_name:, dry_run: false)
@model_switcher.switch(preset_name: preset_name, dry_run: dry_run)
end
def test
state = @state_store.load
@inference_tester.test(state)
end
def list_models
@vm_lifecycle.list_models
end
def cleanup_local_access(dry_run:, hostnames:, allowed_ips:)
peers = @local_wireguard.remove_peers_by_allowed_ips(allowed_ips, dry_run: dry_run)
removed_hosts = @local_wireguard.remove_hostnames(hostnames, dry_run: dry_run)
{ peers: peers, hostnames: removed_hosts }
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
unless cleanup[:peers].empty?
output.puts("DRY RUN: local WireGuard peers would be removed for #{peer_summary}.")
end
unless cleanup[:hostnames].empty?
output.puts("DRY RUN: local host entries would be removed for #{host_summary}.")
end
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
end
end
|