commands

package
v0.27.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 12, 2025 License: MIT Imports: 52 Imported by: 0

Documentation

Index

Constants

View Source
const (

	//Defaults:
	DefaultCPUs           = 4
	DefaultGPUs           = 0
	DefaultMemoryMiB      = 16384
	DefaultSharedMemoryMB = 64
)
View Source
const ConfigPath = "$HOME/.resim"
View Source
const CredentialCacheFilename = "cache.json"
View Source
const (
	LogIngestURI = "public.ecr.aws/resim/open-builds/log-ingest:latest"
)
View Source
const METRICS_2_POOL_LABEL = "resim:metrics2"

Variables

View Source
var BffClient graphql.Client
View Source
var FlagSetUsageTemplate string = `` /* 163-byte string literal not displayed */
View Source
var ReSimUsageTemplate string = `` /* 1503-byte string literal not displayed */

Functions

func AddMetrics2PoolLabels added in v0.27.0

func AddMetrics2PoolLabels(poolLabels *[]api.PoolLabel)

Add Metrics 2.0 Pool labels to the list of pool labels:

func AliasNormalizeFunc added in v0.1.20

func AliasNormalizeFunc(f *pflag.FlagSet, name string) pflag.NormalizedName

func ApplyReSimStyle added in v0.1.20

func ApplyReSimStyle(cmd *cobra.Command)

func DetermineTriggerMethod added in v0.3.5

func DetermineTriggerMethod() *api.TriggeredVia

Attempt to determine the environment we're in. i.e. are we running in Gitlab CI? Github CI? or maybe just running locally on a customer's machine? This information is useful downstream, for understanding where a batch was triggered from.

func Execute

func Execute() error

func GetBffClient added in v0.12.0

func GetBffClient(ctx context.Context, cache CredentialCache) graphql.Client

func GetCIEnvironmentVariableAccount added in v0.3.1

func GetCIEnvironmentVariableAccount() string

func GetClient

func GetClient(ctx context.Context, cache CredentialCache) (*api.ClientWithResponses, error)

func GetConfigDir added in v0.1.31

func GetConfigDir() (string, error)

func OutputJson added in v0.1.20

func OutputJson(data interface{})

func ParseBuildSpec added in v0.17.0

func ParseBuildSpec(buildSpecLocation string, withOsEnv bool, withEnvFiles []string, profiles []string, quiet bool) (*compose_types.Project, error)

func ParseParameterString added in v0.7.0

func ParseParameterString(parameterString string) (string, string, error)

ParseParameterString parses a string in the format "key=value" or "key:value" into a key-value pair. It first tries to split on "=" and falls back to ":" if that fails. This is especially useful for cases where parameter names contain colons, which is often the case in ros-based systems (e.g., "namespace::param").

func ProcessMetricsSet added in v0.24.0

func ProcessMetricsSet(metricsSetKey string, poolLabels *[]api.PoolLabel) *string

ProcessMetricsSet handles the common logic for processing metrics sets and automatically adding the special metrics 2.0 pool label when needed. Returns the metrics set name if set, nil otherwise.

func RegisterViperFlags added in v0.1.10

func RegisterViperFlags(cmd *cobra.Command, args []string)

func RegisterViperFlagsAndSetClient added in v0.1.19

func RegisterViperFlagsAndSetClient(cmd *cobra.Command, args []string)

func SetClient added in v0.1.31

func SetClient(cmd *cobra.Command, args []string)

func ValidateResponse added in v0.1.14

func ValidateResponse(expectedStatusCode int, message string, response *http.Response, body []byte)

Validate Response fails the command if the response is nil, or the status code is not what we expect.

Types

type AuthMode added in v0.3.6

type AuthMode string
const (
	ClientCredentials AuthMode = "clientcredentials"
	DeviceCode        AuthMode = "devicecode"
	Password          AuthMode = "password"
)

type CredentialCache added in v0.1.18

type CredentialCache struct {
	Tokens      map[string]oauth2.Token `json:"tokens"`
	TokenSource oauth2.TokenSource
	ClientID    string
}

func Authenticate added in v0.12.0

func Authenticate(ctx context.Context) (*CredentialCache, error)

func (*CredentialCache) SaveCredentialCache added in v0.1.18

func (c *CredentialCache) SaveCredentialCache()

type DownloadableLog added in v0.13.0

type DownloadableLog struct {
	FileName          string
	LogOutputLocation string
	FileSize          int64
	LogType           api.LogType
}

func DownloadableLogsFromBatchLogs added in v0.13.0

func DownloadableLogsFromBatchLogs(batchLogs []api.BatchLog) []DownloadableLog

func DownloadableLogsFromJobLogs added in v0.13.0

func DownloadableLogsFromJobLogs(jobLogs []api.JobLog) []DownloadableLog

type FlagSets added in v0.1.20

type FlagSets struct {
	// contains filtered or unexported fields
}

func (FlagSets) HasOptional added in v0.1.20

func (fs FlagSets) HasOptional() bool

func (FlagSets) HasRequired added in v0.1.20

func (fs FlagSets) HasRequired() bool

func (FlagSets) OptionalUsages added in v0.1.20

func (fs FlagSets) OptionalUsages() string

func (FlagSets) RequiredUsages added in v0.1.20

func (fs FlagSets) RequiredUsages() string

type LogConfig added in v0.11.0

type LogConfig struct {
	Name     string `yaml:"name"`
	Location string `yaml:"location"`
}

type LogsFile added in v0.11.0

type LogsFile struct {
	Logs []LogConfig `yaml:"logs"`
}

type Spinner added in v0.10.0

type Spinner struct {
	// contains filtered or unexported fields
}

func NewSpinner added in v0.10.0

func NewSpinner(ccmd *cobra.Command) *Spinner

func (*Spinner) Fatal added in v0.13.0

func (s *Spinner) Fatal(v ...any)

func (*Spinner) Start added in v0.10.0

func (s *Spinner) Start(msg string)

func (*Spinner) Stop added in v0.10.0

func (s *Spinner) Stop(finalMsg *string)

func (*Spinner) Update added in v0.10.0

func (s *Spinner) Update(msg string)

type SuperviseParams added in v0.26.0

type SuperviseParams struct {
	ProjectID                uuid.UUID
	MaxRerunAttempts         int
	RerunMaxFailurePercent   float64
	UndesiredConflatedStates []api.ConflatedJobStatus
	Timeout                  time.Duration
	PollInterval             time.Duration
	BatchID                  string
	BatchName                string
}

SuperviseParams contains the parameters needed for actualSuperviseBatch

type SuperviseResult added in v0.26.0

type SuperviseResult struct {
	Batch *api.Batch
	Error error
}

SuperviseResult contains the result information from actualSuperviseBatch

type TimeoutError added in v0.26.0

type TimeoutError struct {
	// contains filtered or unexported fields
}

TimeoutError represents a timeout condition

func (*TimeoutError) Error added in v0.26.0

func (e *TimeoutError) Error() string

func (*TimeoutError) IsTimeout added in v0.26.0

func (e *TimeoutError) IsTimeout() bool

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL