Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Cmd = &cobra.Command{ Use: "deployment-cell [operation] [flags]", Short: "Manage Deployment Cells", Long: `This command helps you manage Deployment Cells.`, Run: run, SilenceUsage: true, }
Functions ¶
This section is empty.
Types ¶
type DeploymentCellWorkflowListItem ¶ added in v1.0.48
type DeploymentCellWorkflowListItem struct {
ID string `json:"id" table:"ID"`
Status string `json:"status" table:"Status"`
WorkflowType string `json:"workflowType" table:"Workflow Type"`
StartTime string `json:"startTime" table:"Start Time"`
EndTime string `json:"endTime" table:"End Time"`
OrgName string `json:"orgName" table:"Organization"`
}
type KubeConfig ¶ added in v0.13.37
type KubeConfig struct {
APIVersion string `yaml:"apiVersion"`
Kind string `yaml:"kind"`
Clusters []KubeConfigCluster `yaml:"clusters"`
Contexts []KubeConfigContext `yaml:"contexts"`
CurrentContext string `yaml:"current-context"`
Users []KubeConfigUser `yaml:"users"`
}
type KubeConfigCluster ¶ added in v0.13.37
type KubeConfigCluster struct {
Name string `yaml:"name"`
Cluster KubeConfigClusterData `yaml:"cluster"`
}
type KubeConfigClusterData ¶ added in v0.13.37
type KubeConfigContext ¶ added in v0.13.37
type KubeConfigContext struct {
Name string `yaml:"name"`
Context KubeConfigContextData `yaml:"context"`
}
type KubeConfigContextData ¶ added in v0.13.37
type KubeConfigUser ¶ added in v0.13.37
type KubeConfigUser struct {
Name string `yaml:"name"`
User KubeConfigUserData `yaml:"user"`
}
type KubeConfigUserData ¶ added in v0.13.37
type WorkflowEventItem ¶ added in v1.0.48
type WorkflowEventItem struct {
StepName string `json:"stepName" table:"Step Name"`
EventTime string `json:"eventTime" table:"Event Time"`
EventType string `json:"eventType" table:"Event Type"`
Message string `json:"message" table:"Message"`
Error string `json:"error,omitempty" table:"Error"`
Metadata string `json:"metadata,omitempty" table:"Metadata"`
}
Source Files
¶
- adopt.go
- apply_pending_changes.go
- debug.go
- delete.go
- delete_nodepool.go
- deploymentcell.go
- describe_nodepool.go
- describe_template.go
- generate_template.go
- list.go
- list_nodepools.go
- scale_down_nodepool.go
- scale_up_nodepool.go
- status.go
- update-kubeconfig.go
- update_template.go
- workflow.go
- workflow_describe.go
- workflow_events.go
- workflow_list.go
- workflow_resume.go
- workflow_retry.go
- workflow_terminate.go
Click to show internal directories.
Click to hide internal directories.