Skip to content

Commit

Permalink
add preparation of clusterclass
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Jansen <[email protected]>
  • Loading branch information
farodin91 committed Apr 8, 2024
1 parent 4912c18 commit 5f0cb76
Show file tree
Hide file tree
Showing 4 changed files with 262 additions and 0 deletions.
53 changes: 53 additions & 0 deletions api/v1alpha1/ionoscloudclustertemplate_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/*
Copyright 2024 IONOS Cloud.
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"
)

// IonosCloudClusterTemplateSpec defines the desired state of IonosCloudClusterTemplate.
type IonosCloudClusterTemplateSpec struct {
Template IonosCloudClusterTemplateResource `json:"template"`
}

type IonosCloudClusterTemplateResource struct {

Check failure on line 28 in api/v1alpha1/ionoscloudclustertemplate_types.go

View workflow job for this annotation

GitHub Actions / go_test

exported: exported type IonosCloudClusterTemplateResource should have comment or be unexported (revive)

Check failure on line 28 in api/v1alpha1/ionoscloudclustertemplate_types.go

View workflow job for this annotation

GitHub Actions / lint

exported: exported type IonosCloudClusterTemplateResource should have comment or be unexported (revive)
Spec IonosCloudClusterSpec `json:"spec"`
}

//+kubebuilder:object:root=true

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

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

//+kubebuilder:object:root=true

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

func init() {
objectTypes = append(objectTypes, &IonosCloudClusterTemplate{}, &IonosCloudClusterTemplateList{})
}
90 changes: 90 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.

Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.14.0
name: ionoscloudclustertemplates.infrastructure.cluster.x-k8s.io
spec:
group: infrastructure.cluster.x-k8s.io
names:
kind: IonosCloudClusterTemplate
listKind: IonosCloudClusterTemplateList
plural: ionoscloudclustertemplates
singular: ionoscloudclustertemplate
scope: Namespaced
versions:
- name: v1alpha1
schema:
openAPIV3Schema:
description: IonosCloudClusterTemplate is the Schema for the ionoscloudclustertemplates
API.
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: IonosCloudClusterTemplateSpec defines the desired state of
IonosCloudClusterTemplate.
properties:
template:
properties:
spec:
description: IonosCloudClusterSpec defines the desired state of
IonosCloudCluster.
properties:
contractNumber:
description: Contract number is the contract number of the
IONOS Cloud account.
type: string
x-kubernetes-validations:
- message: contractNumber is immutable
rule: self == oldSelf
controlPlaneEndpoint:
description: |-
ControlPlaneEndpoint represents the endpoint used to communicate with the control plane.
TODO(gfariasalves): as of now, IP must be provided by the user as we still don't insert the
provider-provided block IP into the kube-vip manifest.
properties:
host:
description: The hostname on which the API server is serving.
type: string
port:
description: The port on which the API server is serving.
format: int32
type: integer
required:
- host
- port
type: object
x-kubernetes-validations:
- message: control plane endpoint host cannot be updated
rule: self.host == oldSelf.host || oldSelf.host == ''
- message: control plane endpoint port cannot be updated
rule: self.port == oldSelf.port || oldSelf.port == 0
credentialsRef:
description: CredentialsRef is a reference to the secret containing
the credentials to access the IONOS Cloud API.
properties:
name:
description: |-
Name of the referent.
More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion, kind, uid?
type: string
type: object
x-kubernetes-map-type: atomic
x-kubernetes-validations:
- message: credentialsRef.name must be provided
rule: has(self.name) && self.name != ''
location:
description: Location is the location where the data centers
should be located.
example: de/txl
minLength: 1
type: string
x-kubernetes-validations:
- message: location is immutable
rule: self == oldSelf
required:
- contractNumber
- credentialsRef
- location
type: object
required:
- spec
type: object
required:
- template
type: object
type: object
served: true
storage: true
1 change: 1 addition & 0 deletions config/crd/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# It should be run by config/default
resources:
- bases/infrastructure.cluster.x-k8s.io_ionoscloudclusters.yaml
- bases/infrastructure.cluster.x-k8s.io_ionoscloudclustertemplates.yaml
- bases/infrastructure.cluster.x-k8s.io_ionoscloudmachines.yaml
- bases/infrastructure.cluster.x-k8s.io_ionoscloudmachinetemplates.yaml
#+kubebuilder:scaffold:crdkustomizeresource
Expand Down

0 comments on commit 5f0cb76

Please sign in to comment.