From ab8bba8bf1daa89e76b5d3742bffc2c0c94c0298 Mon Sep 17 00:00:00 2001 From: Drew Malin Date: Fri, 10 Jul 2026 20:03:17 -0700 Subject: [PATCH] fix: ensure nebius instances are decorated as stoppable --- v1/providers/nebius/instance.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/v1/providers/nebius/instance.go b/v1/providers/nebius/instance.go index b069350..8635e9c 100644 --- a/v1/providers/nebius/instance.go +++ b/v1/providers/nebius/instance.go @@ -381,7 +381,8 @@ func (c *NebiusClient) convertNebiusInstanceToV1(ctx context.Context, instance * PublicDNS: publicIP, // Nebius doesn't provide separate DNS, use public IP Hostname: hostname, SSHUser: sshUser, - SSHPort: 22, // Standard SSH port + SSHPort: 22, // Standard SSH port + Stoppable: true, // All Nebius instances support stop/start operations } inst.InstanceTypeID = v1.MakeGenericInstanceTypeIDFromInstance(*inst) return inst, nil