Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions nebius/ai/v1/endpoint.proto
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ message EndpointSpec {
// Public keys to be authorized for SSH access to the job.
repeated string ssh_authorized_keys = 26;

// Whether to use a preemptible VM for the endpoint.
// Preemptible VMs are cheaper but can be stopped by the platform at any time.
bool preemptible = 27;

// Authentication token needed to access the endpoint.
//
// Authentication can only be enabled if the endpoint exposes one and only one HTTP port.
Expand Down
4 changes: 4 additions & 0 deletions nebius/ai/v1/job.proto
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ message JobSpec {
// Public keys to be authorized for SSH access to the job.
repeated string ssh_authorized_keys = 26;

// Whether to use a preemptible VM for the job.
// Preemptible VMs are cheaper but can be stopped by the platform at any time.
bool preemptible = 27;

// Restart attempts for the job.
int64 restart_attempts = 30 [(buf.validate.field) = {
int64: {gte: -1}
Expand Down