Documentation
¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the ndb v1alpha1 API group +kubebuilder:object:generate=true +groupName=ndb.nutanix.com
Index ¶
- Variables
- type DBTimeMachineInfo
- type Database
- func (in *Database) DeepCopy() *Database
- func (in *Database) DeepCopyInto(out *Database)
- func (in *Database) DeepCopyObject() runtime.Object
- func (r *Database) Default()
- func (r *Database) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *Database) ValidateCreate() error
- func (r *Database) ValidateDelete() error
- func (r *Database) ValidateUpdate(old runtime.Object) error
- type DatabaseList
- type DatabaseSpec
- type DatabaseStatus
- type Instance
- type NDB
- type Profile
- type Profiles
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "ndb.nutanix.com", Version: "v1alpha1"} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
This section is empty.
Types ¶
type DBTimeMachineInfo ¶ added in v0.0.6
type DBTimeMachineInfo struct { // +optional Name string `json:"name"` // +optional Description string `json:"description"` // +optional // Name of the SLA to be used, default NONE SLAName string `json:"sla"` // +optional // Daily snapshot time in HH:MM:SS (24 hour format) DailySnapshotTime string `json:"dailySnapshotTime"` // +optional // Number of snapshots per day SnapshotsPerDay int `json:"snapshotsPerDay"` // +optional // Log catch up frequency in minutes LogCatchUpFrequency int `json:"logCatchUpFrequency"` // +optional // Day of the week for weekly snapshot WeeklySnapshotDay string `json:"weeklySnapshotDay"` // +optional // Day of the month for monthly snapshot MonthlySnapshotDay int `json:"monthlySnapshotDay"` // +optional // Start month for the quarterly snapshot // Jan => Jan, Apr, Jul, Oct. // Feb => Feb, May, Aug, Nov. // Mar => Mar, Jun, Sep, Dec. QuarterlySnapshotMonth string `json:"quarterlySnapshotMonth"` }
Time Machine details
func (*DBTimeMachineInfo) DeepCopy ¶ added in v0.0.6
func (in *DBTimeMachineInfo) DeepCopy() *DBTimeMachineInfo
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DBTimeMachineInfo.
func (*DBTimeMachineInfo) DeepCopyInto ¶ added in v0.0.6
func (in *DBTimeMachineInfo) DeepCopyInto(out *DBTimeMachineInfo)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Database ¶
type Database struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec DatabaseSpec `json:"spec,omitempty"` Status DatabaseStatus `json:"status,omitempty"` }
Database is the Schema for the databases API +kubebuilder:object:root=true +kubebuilder:subresource:status +kubebuilder:resource:shortName={"db","dbs"} +kubebuilder:printcolumn:name="IP Address",type=string,JSONPath=`.status.ipAddress` +kubebuilder:printcolumn:name="Status",type=string,JSONPath=`.status.status` +kubebuilder:printcolumn:name="Type",type=string,JSONPath=`.status.type`
func (*Database) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Database.
func (*Database) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Database) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Database) Default ¶ added in v0.0.6
func (r *Database) Default()
Default implements webhook.Defaulter so a webhook will be registered for the type
func (*Database) SetupWebhookWithManager ¶ added in v0.0.6
func (*Database) ValidateCreate ¶ added in v0.0.6
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*Database) ValidateDelete ¶ added in v0.0.6
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type DatabaseList ¶
type DatabaseList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Database `json:"items"` }
+kubebuilder:object:root=true DatabaseList contains a list of Database
func (*DatabaseList) DeepCopy ¶
func (in *DatabaseList) DeepCopy() *DatabaseList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatabaseList.
func (*DatabaseList) DeepCopyInto ¶
func (in *DatabaseList) DeepCopyInto(out *DatabaseList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*DatabaseList) DeepCopyObject ¶
func (in *DatabaseList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type DatabaseSpec ¶
DatabaseSpec defines the desired state of Database
func (*DatabaseSpec) DeepCopy ¶
func (in *DatabaseSpec) DeepCopy() *DatabaseSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatabaseSpec.
func (*DatabaseSpec) DeepCopyInto ¶
func (in *DatabaseSpec) DeepCopyInto(out *DatabaseSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DatabaseStatus ¶
type DatabaseStatus struct { IPAddress string `json:"ipAddress"` Id string `json:"id"` Status string `json:"status"` DatabaseServerId string `json:"dbServerId"` Type string `json:"type"` }
DatabaseStatus defines the observed state of Database
func (*DatabaseStatus) DeepCopy ¶
func (in *DatabaseStatus) DeepCopy() *DatabaseStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatabaseStatus.
func (*DatabaseStatus) DeepCopyInto ¶
func (in *DatabaseStatus) DeepCopyInto(out *DatabaseStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Instance ¶
type Instance struct { // Name of the database instance DatabaseInstanceName string `json:"databaseInstanceName"` // Name(s) of the database(s) to be provisiond inside the database instance // default [ "database_one", "database_two", "database_three" ] // +optional DatabaseNames []string `json:"databaseNames"` // Name of the secret holding the credentials for the database instance (password and ssh key) CredentialSecret string `json:"credentialSecret"` // Size of the database instance, minimum 10 (GBs) Size int `json:"size"` // default UTC // +optional TimeZone string `json:"timezone"` Type string `json:"type"` // +optional Profiles *Profiles `json:"profiles"` // +optional // Information related to time machine that is to be associated with this database TMInfo *DBTimeMachineInfo `json:"timeMachine"` }
Database instance specific details
func (*Instance) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Instance.
func (*Instance) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NDB ¶
type NDB struct { ClusterId string `json:"clusterId"` // Name of the secret holding the credentials for NDB (username and password) CredentialSecret string `json:"credentialSecret"` // NDB Server URL Server string `json:"server"` // Skip server's certificate and hostname verification SkipCertificateVerification bool `json:"skipCertificateVerification"` }
Details of the NDB installation
func (*NDB) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NDB.
func (*NDB) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Profile ¶
func (*Profile) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Profile.
func (*Profile) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Profiles ¶
type Profiles struct { // +optional Software Profile `json:"software"` // +optional Compute Profile `json:"compute"` // +optional Network Profile `json:"network"` // +optional DbParam Profile `json:"dbParam"` // +optional DbParamInstance Profile `json:"dbParamInstance"` }
func (*Profiles) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Profiles.
func (*Profiles) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.