Documentation
¶
Index ¶
- Constants
- Variables
- func Execute()
- func GetClient(cf *genericclioptions.ConfigFlags) (*kubernetes.Clientset, error)
- func GetExperimentLogs(client *kubernetes.Clientset, ns string, id string) (err error)
- func GetExperimentSecret(client *kubernetes.Clientset, ns string, id string, app string) (s *corev1.Secret, err error)
- func GetExperimentSecrets(client *kubernetes.Clientset, ns string, app string) (experimentSecrets []corev1.Secret, err error)
- type K8sExperimentOptions
- type KubernetesExpIO
- type PayloadValue
Constants ¶
View Source
const ( AppHeader = "APP" IdHeader = "ID" CompletedHeader = "COMPLETED" FailedHeader = "FAILED" NumTasksHeader = "TASKS" NumTasksCompletedHeader = "TASKS_COMPLETED" )
View Source
const ( SpecSecretPrefix = "experiment-" NameLabel = "app.kubernetes.io/name" IdLabel = "app.kubernetes.io/instance" VersionLabel = "app.kubernetes.io/version" ComponentLabel = "app.kubernetes.io/component" CreatedByLabel = "app.kubernetes.io/created-by" AppLabel = "iter8.tools/app" ComponentSpec = "spec" ComponentResult = "result" ComponentJob = "job" ComponentRbac = "rbac" MaxGetRetries = 2 GetRetryInterval = 1 * time.Second )
Variables ¶
View Source
var RootCmd = basecli.RootCmd
Functions ¶
func Execute ¶
func Execute()
Execute adds all child commands to the root command and sets flags appropriately. This is called by main.main(). It only needs to happen once to the rootCmd.
func GetClient ¶
func GetClient(cf *genericclioptions.ConfigFlags) (*kubernetes.Clientset, error)
func GetExperimentLogs ¶
func GetExperimentLogs(client *kubernetes.Clientset, ns string, id string) (err error)
func GetExperimentSecret ¶
func GetExperimentSecrets ¶
Types ¶
type K8sExperimentOptions ¶
type K8sExperimentOptions struct { ConfigFlags *genericclioptions.ConfigFlags // contains filtered or unexported fields }
type KubernetesExpIO ¶
type KubernetesExpIO struct { Client *kubernetes.Clientset Namespace string Name string }
KubernetesExpIO enables reading and writing through files
func (*KubernetesExpIO) ReadResult ¶
func (f *KubernetesExpIO) ReadResult() (*base.ExperimentResult, error)
read experiment result from Kubernetes context
func (*KubernetesExpIO) ReadSpec ¶
func (f *KubernetesExpIO) ReadSpec() ([]base.TaskSpec, error)
read experiment spec from secret in the Kubernetes context
func (*KubernetesExpIO) WriteResult ¶
func (f *KubernetesExpIO) WriteResult(r *basecli.Experiment) error
write experiment result to secret in Kubernetes context
type PayloadValue ¶
Source Files
¶
Click to show internal directories.
Click to hide internal directories.