Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ClickHouse API #1212

Merged
merged 7 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions apis/catalog/v1alpha1/clickhouse_version_helpers.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
/*
Copyright AppsCode Inc. and Contributors

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package v1alpha1

import (
"fmt"

"kubedb.dev/apimachinery/apis"
"kubedb.dev/apimachinery/apis/catalog"
"kubedb.dev/apimachinery/crds"

"kmodules.xyz/client-go/apiextensions"
)

func (_ ClickHouseVersion) CustomResourceDefinition() *apiextensions.CustomResourceDefinition {
return crds.MustCustomResourceDefinition(SchemeGroupVersion.WithResource(ResourcePluralClickHouseVersion))
}

var _ apis.ResourceInfo = &ClickHouseVersion{}

func (r ClickHouseVersion) ResourceFQN() string {
return fmt.Sprintf("%s.%s", ResourcePluralClickHouseVersion, catalog.GroupName)
}

func (r ClickHouseVersion) ResourceShortCode() string {
return ResourceCodeClickHouseVersion
}

func (r ClickHouseVersion) ResourceKind() string {
return ResourceKindClickHouseVersion
}

func (r ClickHouseVersion) ResourceSingular() string {
return ResourceSingularClickHouseVersion
}

func (r ClickHouseVersion) ResourcePlural() string {
return ResourcePluralClickHouseVersion
}

func (r ClickHouseVersion) ValidateSpecs() error {
if r.Spec.Version == "" ||
r.Spec.DB.Image == "" {
return fmt.Errorf(`atleast one of the following specs is not set for ClickHouseVersion "%v":
spec.version,
spec.db.image`, r.Name)
}
return nil
}
97 changes: 97 additions & 0 deletions apis/catalog/v1alpha1/clickhouse_version_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
/*
Copyright 2024.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package v1alpha1

import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

const (
ResourceCodeClickHouseVersion = "chversion"
ResourceKindClickHouseVersion = "ClickHouseVersion"
ResourceSingularClickHouseVersion = "clickhouseversion"
ResourcePluralClickHouseVersion = "clickhouseversions"
)

// EDIT THIS FILE! THIS IS SCAFFOLDING FOR YOU TO OWN!
// NOTE: json tags are required. Any new fields you add must have json tags for the fields to be serialized.

// ClickHouseVersion defines a ClickHouse database version.

// +genclient
// +genclient:nonNamespaced
// +genclient:skipVerbs=updateStatus
// +k8s:openapi-gen=true
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

// +kubebuilder:object:root=true
// +kubebuilder:resource:path=clickhouseversions,singular=clickhouseversion,scope=Cluster,shortName=chversion,categories={datastore,kubedb,appscode}
// +kubebuilder:printcolumn:name="Version",type="string",JSONPath=".spec.version"
// +kubebuilder:printcolumn:name="DB_IMAGE",type="string",JSONPath=".spec.db.image"
// +kubebuilder:printcolumn:name="Deprecated",type="boolean",JSONPath=".spec.deprecated"
// +kubebuilder:printcolumn:name="Age",type="date",JSONPath=".metadata.creationTimestamp"
type ClickHouseVersion struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`

Spec ClickHouseVersionSpec `json:"spec,omitempty"`
Status ClickHouseVersionStatus `json:"status,omitempty"`
}

// ClickHouseVersionSpec defines the desired state of ClickHouseVersion
type ClickHouseVersionSpec struct {
// INSERT ADDITIONAL SPEC FIELDS - desired state of cluster
// Important: Run "make" to regenerate code after modifying this file

// Version
Version string `json:"version"`

// Database Image
DB ClickHouseVersionDatabase `json:"db"`

// Database Image
InitContainer ClickHouseInitContainer `json:"initContainer"`

// SecurityContext is for the additional config for the DB container
// +optional
SecurityContext SecurityContext `json:"securityContext"`
}

// ClickHouseVersionDatabase is the ClickHouse Database image
type ClickHouseVersionDatabase struct {
Image string `json:"image"`
}

// ClickHouseInitContainer is the ClickHouse init Container image
type ClickHouseInitContainer struct {
Image string `json:"image"`
}

// ClickHouseVersionStatus defines the observed state of ClickHouseVersion
type ClickHouseVersionStatus struct {
// INSERT ADDITIONAL STATUS FIELD - define observed state of cluster
// Important: Run "make" to regenerate code after modifying this file
}

// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

// ClickHouseVersionList contains a list of ClickHouseVersion
type ClickHouseVersionList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []ClickHouseVersion `json:"items"`
}
199 changes: 199 additions & 0 deletions apis/catalog/v1alpha1/openapi_generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions apis/catalog/v1alpha1/register.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ func Resource(resource string) schema.GroupResource {
// Adds the list of known types to api.Scheme.
func addKnownTypes(scheme *runtime.Scheme) error {
scheme.AddKnownTypes(SchemeGroupVersion,
&ClickHouseVersion{},
&ClickHouseVersionList{},
&DruidVersion{},
&DruidVersionList{},
&ElasticsearchVersion{},
Expand Down
Loading
Loading