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

feat: add new LinodeClusterTemplate and LinodeMachineTemplate CRDs #66

Merged
merged 1 commit into from
Jan 26, 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
16 changes: 16 additions & 0 deletions PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,20 @@ resources:
kind: LinodeMachine
path: github.com/linode/cluster-api-provider-linode/api/v1alpha1
version: v1alpha1
- api:
crdVersion: v1
namespaced: true
domain: cluster.x-k8s.io
group: infrastructure
kind: LinodeClusterTemplate
path: github.com/linode/cluster-api-provider-linode/api/v1alpha1
version: v1alpha1
- api:
crdVersion: v1
namespaced: true
domain: cluster.x-k8s.io
group: infrastructure
kind: LinodeMachineTemplate
path: github.com/linode/cluster-api-provider-linode/api/v1alpha1
version: v1alpha1
version: "3"
55 changes: 55 additions & 0 deletions api/v1alpha1/linodeclustertemplate_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
Copyright 2023 Akamai Technologies, Inc.

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"
)

// LinodeClusterTemplateSpec defines the desired state of LinodeClusterTemplate
type LinodeClusterTemplateSpec struct {
Template LinodeClusterTemplateResource `json:"template"`
}

// LinodeClusterTemplateResource describes the data needed to create a LinodeCluster from a template.
type LinodeClusterTemplateResource struct {
Spec LinodeClusterSpec `json:"spec"`
}

// +kubebuilder:object:root=true
// +kubebuilder:resource:path=linodeclustertemplates,scope=Namespaced,categories=cluster-api,shortName=lct

// LinodeClusterTemplate is the Schema for the linodeclustertemplates API
type LinodeClusterTemplate struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`

Spec LinodeClusterTemplateSpec `json:"spec,omitempty"`
}

//+kubebuilder:object:root=true

// LinodeClusterTemplateList contains a list of LinodeClusterTemplate
type LinodeClusterTemplateList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []LinodeClusterTemplate `json:"items"`
}

func init() {
SchemeBuilder.Register(&LinodeClusterTemplate{}, &LinodeClusterTemplateList{})
}
55 changes: 55 additions & 0 deletions api/v1alpha1/linodemachinetemplate_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
Copyright 2023 Akamai Technologies, Inc.

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"
)

// LinodeMachineTemplateSpec defines the desired state of LinodeMachineTemplate
type LinodeMachineTemplateSpec struct {
Template LinodeMachineTemplateResource `json:"template"`
}

// LinodeMachineTemplateResource describes the data needed to create a LinodeMachine from a template.
type LinodeMachineTemplateResource struct {
Spec LinodeMachineSpec `json:"spec"`
}

// +kubebuilder:object:root=true
// +kubebuilder:resource:path=linodemachinetemplates,scope=Namespaced,categories=cluster-api,shortName=lmt

// LinodeMachineTemplate is the Schema for the linodemachinetemplates API
type LinodeMachineTemplate struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`

Spec LinodeMachineTemplateSpec `json:"spec,omitempty"`
}

//+kubebuilder:object:root=true

// LinodeMachineTemplateList contains a list of LinodeMachineTemplate
type LinodeMachineTemplateList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []LinodeMachineTemplate `json:"items"`
}

func init() {
SchemeBuilder.Register(&LinodeMachineTemplate{}, &LinodeMachineTemplateList{})
}
180 changes: 180 additions & 0 deletions api/v1alpha1/zz_generated.deepcopy.go

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

Loading
Loading