forked from redhat-developer/mapt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.go
More file actions
26 lines (24 loc) · 684 Bytes
/
Copy pathapi.go
File metadata and controls
26 lines (24 loc) · 684 Bytes
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
package rhelai
import (
cr "github.com/redhat-developer/mapt/pkg/provider/api/compute-request"
spotTypes "github.com/redhat-developer/mapt/pkg/provider/api/spot"
)
type RHELAIArgs struct {
Prefix string
Accelerator string
Version string
CustomImage string
Marketplace bool
Arch string
ComputeRequest *cr.ComputeRequestArgs
Spot *spotTypes.SpotArgs
ServiceEndpoints []string
// If timeout is set a severless scheduled task will be created to self destroy the resources
Timeout string
Model string
HFToken string
APIKey string
AutoStart bool
VLLMExtraArgs string
ExposePorts []int
}