Documentation ¶
Index ¶
- Variables
- func NewCommand(o *Options) *cobra.Command
- func NewConfigCommand(o *ConfigOptions) *cobra.Command
- func NewControllerCommand(o *ControllerOptions) *cobra.Command
- func NewExperimentCommand(o *ExperimentOptions) *cobra.Command
- func NewVersionCommand(o *VersionOptions) *cobra.Command
- type APIError
- type Asset
- type ConfigOptions
- type ControllerOptions
- type ExperimentOptions
- type Options
- type Release
- type ReleaseList
- type VersionOptions
Constants ¶
This section is empty.
Variables ¶
var GitHubReleasesURL = "https://api.github.com/repos/thestormforge/optimize-controller/releases"
Functions ¶
func NewCommand ¶
NewCommand creates a new command for checking components
func NewConfigCommand ¶
func NewConfigCommand(o *ConfigOptions) *cobra.Command
NewConfigCommand creates a new command for checking the Red Sky Configuration
func NewControllerCommand ¶
func NewControllerCommand(o *ControllerOptions) *cobra.Command
NewControllerCommand creates a new command for checking a Red Sky controller
func NewExperimentCommand ¶
func NewExperimentCommand(o *ExperimentOptions) *cobra.Command
NewExperimentCommand creates a new command for checking an experiment manifest
func NewVersionCommand ¶
func NewVersionCommand(o *VersionOptions) *cobra.Command
NewVersionCommand creates a new command for checking the current version of the product
Types ¶
type APIError ¶
type ConfigOptions ¶
type ConfigOptions struct { // Config is the Red Sky Configuration to check Config *config.RedSkyConfig // ExperimentsAPI is used to interact with the Red Sky Experiments API ExperimentsAPI experimentsv1alpha1.API // IOStreams are used to access the standard process streams commander.IOStreams }
ConfigOptions are the options for checking a Red Sky Configuration
type ControllerOptions ¶
type ControllerOptions struct { // Config is the Red Sky Configuration for connecting to the cluster Config *config.RedSkyConfig // IOStreams are used to access the standard process streams commander.IOStreams // Wait for the controller to be ready Wait bool }
ControllerOptions are the options for checking a Red Sky controller
func (*ControllerOptions) CheckController ¶ added in v1.12.0
func (o *ControllerOptions) CheckController(ctx context.Context) error
type ExperimentOptions ¶
type ExperimentOptions struct { // IOStreams are used to access the standard process streams commander.IOStreams Filename string }
ExperimentOptions are the options for checking an experiment manifest
type Options ¶
type Options struct { // Config is the Red Sky Configuration Config *config.RedSkyConfig }
Options includes the configuration for the subcommands
type Release ¶
type Release struct { Name string `json:"name"` TagName string `json:"tag_name"` Draft bool `json:"draft"` Prerelease bool `json:"prerelease"` Assets []Asset `json:"assets"` }
func (*Release) AssetByName ¶
type ReleaseList ¶
type ReleaseList []Release
func (ReleaseList) Latest ¶
func (rl ReleaseList) Latest() *Release
type VersionOptions ¶
type VersionOptions struct { // IOStreams are used to access the standard process streams commander.IOStreams }
VersionOptions are the options for checking the current version of the product