Skip to content

Commit

Permalink
add new LinodeClusterTemplate and LinodeMachineTemplate types
Browse files Browse the repository at this point in the history
  • Loading branch information
AshleyDumaine committed Jan 26, 2024
1 parent fb2b611 commit b0ad3b6
Show file tree
Hide file tree
Showing 18 changed files with 783 additions and 0 deletions.
14 changes: 14 additions & 0 deletions PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,18 @@ 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
kind: LinodeClusterTemplate
path: github.com/linode/cluster-api-provider-linode/api/v1alpha1
version: v1alpha1
- api:
crdVersion: v1
namespaced: true
domain: cluster.x-k8s.io
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

0 comments on commit b0ad3b6

Please sign in to comment.