Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ControlInterface ¶
type ControlInterface interface { // UpdateTidbCluster implements the control logic for StatefulSet creation, update, and deletion UpdateTidbCluster(*v1alpha1.TidbCluster) error }
ControlInterface implements the control logic for updating TidbClusters and their children StatefulSets. It is implemented as an interface to allow for extensions that provide different semantics. Currently, there is only one implementation.
func NewDefaultTidbClusterControl ¶
func NewDefaultTidbClusterControl( tcControl controller.TidbClusterControlInterface, pdMemberManager manager.Manager, tikvMemberManager manager.Manager, tidbMemberManager manager.Manager, reclaimPolicyManager manager.Manager, metaManager manager.Manager, recorder record.EventRecorder) ControlInterface
NewDefaultTidbClusterControl returns a new instance of the default implementation TidbClusterControlInterface that implements the documented semantics for TidbClusters.
type Controller ¶
type Controller struct {
// contains filtered or unexported fields
}
Controller controls tidbclusters.
func NewController ¶
func NewController( kubeCli kubernetes.Interface, cli versioned.Interface, informerFactory informers.SharedInformerFactory, kubeInformerFactory kubeinformers.SharedInformerFactory, autoFailover bool, pdFailoverPeriod time.Duration, tidbFailoverPeriod time.Duration, ) *Controller
NewController creates a tidbcluster controller.
func (*Controller) Run ¶
func (tcc *Controller) Run(workers int, stopCh <-chan struct{})
Run runs the tidbcluster controller.
Click to show internal directories.
Click to hide internal directories.