Documentation
¶
Index ¶
Constants ¶
View Source
const ( DefaultGreptimeDBChartVersion = "0.1.1-alpha.2" DefaultGreptimeDBOperatorChartVersion = "0.1.1-alpha.2" DefaultEtcdChartVersion = "0.1.1-alpha.1" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CreateClusterOptions ¶
type CreateEtcdOptions ¶
type CreateOperatorOptions ¶
type DeleteClusterOption ¶
type DeleteEtcdClusterOption ¶
type GetClusterOptions ¶
type ListClusterOptions ¶
type ListClusterOptions struct{}
type Manager ¶
type Manager interface { GetCluster(ctx context.Context, options *GetClusterOptions) (*greptimedbv1alpha1.GreptimeDBCluster, error) ListClusters(ctx context.Context, options *ListClusterOptions) (*greptimedbv1alpha1.GreptimeDBClusterList, error) CreateCluster(ctx context.Context, options *CreateClusterOptions) error UpdateCluster(ctx context.Context, options *UpdateClusterOptions) error DeleteCluster(ctx context.Context, options *DeleteClusterOption) error CreateOperator(ctx context.Context, options *CreateOperatorOptions) error DeleteEtcdCluster(ctx context.Context, options *DeleteEtcdClusterOption) error CreateEtcdCluster(ctx context.Context, options *CreateEtcdOptions) error }
Manager manage the cluster resources.
type UpdateClusterOptions ¶
type UpdateClusterOptions struct { ClusterName string Namespace string Timeout time.Duration NewCluster *greptimedbv1alpha1.GreptimeDBCluster }
Click to show internal directories.
Click to hide internal directories.