Documentation ¶
Index ¶
- Constants
- Variables
- func Scheme(ctx context.Context) meta.Scheme
- type AIOpsPlugin
- func (p *AIOpsPlugin) ClusterWorkloadAggregation(_ context.Context, in *corev1.Reference) (*modeltraining.WorkloadAggregationList, error)
- func (s *AIOpsPlugin) DeleteAISettings(ctx context.Context, _ *emptypb.Empty) (*emptypb.Empty, error)
- func (s *AIOpsPlugin) DoUpgrade(ctx context.Context, _ *emptypb.Empty) (*emptypb.Empty, error)
- func (p *AIOpsPlugin) GPUInfo(ctx context.Context, _ *emptypb.Empty) (*modeltraining.GPUInfoList, error)
- func (s *AIOpsPlugin) GetAISettings(ctx context.Context, _ *emptypb.Empty) (*admin.AISettings, error)
- func (p *AIOpsPlugin) GetModelStatus(_ context.Context, _ *emptypb.Empty) (*modeltraining.ModelStatus, error)
- func (p *AIOpsPlugin) GetModelTrainingParameters(_ context.Context, _ *emptypb.Empty) (*modeltraining.ModelTrainingParametersList, error)
- func (s *AIOpsPlugin) GetRuntimeClasses(ctx context.Context, _ *emptypb.Empty) (*admin.RuntimeClassResponse, error)
- func (s *AIOpsPlugin) PutAISettings(ctx context.Context, settings *admin.AISettings) (*emptypb.Empty, error)
- func (p *AIOpsPlugin) PutModelTrainingStatus(_ context.Context, in *modeltraining.ModelTrainingStatistics) (*emptypb.Empty, error)
- func (p *AIOpsPlugin) TrainModel(ctx context.Context, in *modeltraining.ModelTrainingParametersList) (*modeltraining.ModelTrainingResponse, error)
- func (s *AIOpsPlugin) UpgradeAvailable(ctx context.Context, _ *emptypb.Empty) (*admin.UpgradeAvailableResponse, error)
- func (p *AIOpsPlugin) UseManagementAPI(_ managementv1.ManagementClient)
- type Aggregations
- type AggregationsSpec
- type Bucket
- type BucketSpec
- type ClusterAggregation
- type DeploymentLogCount
- type Key
- type NamespaceAggregation
- type PluginOption
- type PluginOptions
- type SearchResponse
Constants ¶
View Source
const (
OpniServicesName = "opni"
)
Variables ¶
View Source
var ( DefaultModelSources = map[pretrainedModelType]*string{ // contains filtered or unexported fields } ModelHyperParameters = map[pretrainedModelType]map[string]intstr.IntOrString{ // contains filtered or unexported fields } )
Functions ¶
Types ¶
type AIOpsPlugin ¶
type AIOpsPlugin struct { PluginOptions modeltraining.UnsafeModelTrainingServer admin.UnsafeAIAdminServer system.UnimplementedSystemPluginClient Logger *zap.SugaredLogger // contains filtered or unexported fields }
func NewPlugin ¶
func NewPlugin(ctx context.Context, opts ...PluginOption) *AIOpsPlugin
func (*AIOpsPlugin) ClusterWorkloadAggregation ¶
func (p *AIOpsPlugin) ClusterWorkloadAggregation(_ context.Context, in *corev1.Reference) (*modeltraining.WorkloadAggregationList, error)
func (*AIOpsPlugin) DeleteAISettings ¶
func (*AIOpsPlugin) GPUInfo ¶
func (p *AIOpsPlugin) GPUInfo(ctx context.Context, _ *emptypb.Empty) (*modeltraining.GPUInfoList, error)
func (*AIOpsPlugin) GetAISettings ¶
func (s *AIOpsPlugin) GetAISettings(ctx context.Context, _ *emptypb.Empty) (*admin.AISettings, error)
func (*AIOpsPlugin) GetModelStatus ¶
func (p *AIOpsPlugin) GetModelStatus(_ context.Context, _ *emptypb.Empty) (*modeltraining.ModelStatus, error)
func (*AIOpsPlugin) GetModelTrainingParameters ¶
func (p *AIOpsPlugin) GetModelTrainingParameters(_ context.Context, _ *emptypb.Empty) (*modeltraining.ModelTrainingParametersList, error)
func (*AIOpsPlugin) GetRuntimeClasses ¶
func (s *AIOpsPlugin) GetRuntimeClasses(ctx context.Context, _ *emptypb.Empty) (*admin.RuntimeClassResponse, error)
func (*AIOpsPlugin) PutAISettings ¶
func (s *AIOpsPlugin) PutAISettings(ctx context.Context, settings *admin.AISettings) (*emptypb.Empty, error)
func (*AIOpsPlugin) PutModelTrainingStatus ¶
func (p *AIOpsPlugin) PutModelTrainingStatus(_ context.Context, in *modeltraining.ModelTrainingStatistics) (*emptypb.Empty, error)
func (*AIOpsPlugin) TrainModel ¶
func (p *AIOpsPlugin) TrainModel(ctx context.Context, in *modeltraining.ModelTrainingParametersList) (*modeltraining.ModelTrainingResponse, error)
func (*AIOpsPlugin) UpgradeAvailable ¶
func (s *AIOpsPlugin) UpgradeAvailable(ctx context.Context, _ *emptypb.Empty) (*admin.UpgradeAvailableResponse, error)
func (*AIOpsPlugin) UseManagementAPI ¶
func (p *AIOpsPlugin) UseManagementAPI(_ managementv1.ManagementClient)
type Aggregations ¶
type Aggregations struct {
ByCluster map[string]*ClusterAggregation `json:",inline,omitEmpty"`
}
func (*Aggregations) Add ¶
func (a *Aggregations) Add(bucket Bucket)
type AggregationsSpec ¶
type AggregationsSpec struct {
Bucket BucketSpec `json:"bucket"`
}
type BucketSpec ¶
type ClusterAggregation ¶
type ClusterAggregation struct {
ByNamespace map[string]*NamespaceAggregation `json:",inline,omitEmpty"`
}
type DeploymentLogCount ¶
type NamespaceAggregation ¶
type NamespaceAggregation struct {
ByDeployment map[string]*DeploymentLogCount `json:",inline,omitEmpty"`
}
type PluginOption ¶
type PluginOption func(*PluginOptions)
func WithNamespace ¶
func WithNamespace(namespace string) PluginOption
func WithOpensearchCluster ¶
func WithOpensearchCluster(cluster *opnimeta.OpensearchClusterRef) PluginOption
func WithRestConfig ¶
func WithRestConfig(restconfig *rest.Config) PluginOption
func WithVersion ¶
func WithVersion(version string) PluginOption
type PluginOptions ¶
type PluginOptions struct {
// contains filtered or unexported fields
}
type SearchResponse ¶
type SearchResponse struct {
Aggregations AggregationsSpec `json:"aggregations"`
}
Click to show internal directories.
Click to hide internal directories.