mirror of
https://github.com/getcompanion-ai/computer-host.git
synced 2026-04-15 09:01:12 +00:00
feat: freeze ssh and vnc port contracts
Define the minimum machine networking surface for the next host slice and limit exposed guest ports to SSH and VNC.
This commit is contained in:
parent
04575d111c
commit
4028bb5a1d
3 changed files with 33 additions and 10 deletions
|
|
@ -3,15 +3,16 @@ package host
|
|||
import "time"
|
||||
|
||||
type Machine struct {
|
||||
ID MachineID `json:"id"`
|
||||
Artifact ArtifactRef `json:"artifact"`
|
||||
SystemVolumeID VolumeID `json:"system_volume_id,omitempty"`
|
||||
UserVolumeIDs []VolumeID `json:"user_volume_ids,omitempty"`
|
||||
Phase MachinePhase `json:"phase"`
|
||||
RuntimeHost string `json:"runtime_host,omitempty"`
|
||||
Error string `json:"error,omitempty"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
StartedAt *time.Time `json:"started_at,omitempty"`
|
||||
ID MachineID `json:"id"`
|
||||
Artifact ArtifactRef `json:"artifact"`
|
||||
SystemVolumeID VolumeID `json:"system_volume_id,omitempty"`
|
||||
UserVolumeIDs []VolumeID `json:"user_volume_ids,omitempty"`
|
||||
RuntimeHost string `json:"runtime_host,omitempty"`
|
||||
Ports []MachinePort `json:"ports,omitempty"`
|
||||
Phase MachinePhase `json:"phase"`
|
||||
Error string `json:"error,omitempty"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
StartedAt *time.Time `json:"started_at,omitempty"`
|
||||
}
|
||||
|
||||
type CreateMachineRequest struct {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue