Server Runtime
Learn about SeldonRuntime, a Kubernetes resource for creating and managing Seldon Core instances in specific namespaces with configurable settings.
type SeldonRuntimeSpec struct {
SeldonConfig string `json:"seldonConfig"`
Overrides []*OverrideSpec `json:"overrides,omitempty"`
Config SeldonConfiguration `json:"config,omitempty"`
// +Optional
// If set then when the referenced SeldonConfig changes we will NOT update the SeldonRuntime immediately.
// Explicit changes to the SeldonRuntime itself will force a reconcile though
DisableAutoUpdate bool `json:"disableAutoUpdate,omitempty"`
}
type OverrideSpec struct {
Name string `json:"name"`
Disable bool `json:"disable,omitempty"`
Replicas *int32 `json:"replicas,omitempty"`
ServiceType v1.ServiceType `json:"serviceType,omitempty"`
PodSpec *PodSpec `json:"podSpec,omitempty"`
}SeldonConfig Update Propagation
Last updated
Was this helpful?

