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

Introduce VPC controller #62

Merged
merged 7 commits into from
Feb 5, 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
5 changes: 5 additions & 0 deletions api/v1alpha1/linodecluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ limitations under the License.
package v1alpha1

import (
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
clusterv1 "sigs.k8s.io/cluster-api/api/v1beta1"
"sigs.k8s.io/cluster-api/errors"
Expand All @@ -35,6 +36,10 @@ type LinodeClusterSpec struct {
// NetworkSpec encapsulates all things related to Linode network.
// +optional
Network NetworkSpec `json:"network"`

// +kubebuilder:validation:XValidation:rule="self == oldSelf",message="Value is immutable"
// +optional
VPCRef *corev1.ObjectReference `json:"vpcRef,omitempty"`
eljohnson92 marked this conversation as resolved.
Show resolved Hide resolved
}

// LinodeClusterStatus defines the observed state of LinodeCluster
Expand Down
15 changes: 11 additions & 4 deletions api/v1alpha1/linodemachine_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ type LinodeMachineSpec struct {
// +kubebuilder:validation:Required
// +kubebuilder:validation:XValidation:rule="self == oldSelf",message="Value is immutable"
Type string `json:"type"`
// +kubebuilder:validation:MinLength=3
// +kubebuilder:validation:MaxLength=63
// +kubebuilder:validation:XValidation:rule="self == oldSelf",message="Value is immutable"
// +optional
Label string `json:"label,omitempty"`
// +kubebuilder:validation:XValidation:rule="self == oldSelf",message="Value is immutable"
Group string `json:"group,omitempty"`
Expand Down Expand Up @@ -82,10 +85,13 @@ type InstanceMetadataOptions struct {

// InstanceConfigInterfaceCreateOptions defines network interface config
type InstanceConfigInterfaceCreateOptions struct {
IPAMAddress string `json:"ipamAddress,omitempty"`
Label string `json:"label,omitempty"`
Purpose linodego.ConfigInterfacePurpose `json:"purpose,omitempty"`
Primary bool `json:"primary,omitempty"`
IPAMAddress string `json:"ipamAddress,omitempty"`
// +kubebuilder:validation:MinLength=3
// +kubebuilder:validation:MaxLength=63
// +optional
Label string `json:"label,omitempty"`
Purpose linodego.ConfigInterfacePurpose `json:"purpose,omitempty"`
Primary bool `json:"primary,omitempty"`
// +optional
SubnetID *int `json:"subnetId,omitempty"`
// +optional
Expand All @@ -103,6 +109,7 @@ type VPCIPv4 struct {
type LinodeMachineStatus struct {
// Ready is true when the provider resource is ready.
// +optional
// +kubebuilder:default=false
Ready bool `json:"ready"`

// Addresses contains the Linode instance associated addresses.
Expand Down
154 changes: 154 additions & 0 deletions api/v1alpha1/linodevpc_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,154 @@
/*
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"
clusterv1 "sigs.k8s.io/cluster-api/api/v1beta1"
)

// 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.

// LinodeVPCSpec defines the desired state of LinodeVPC
type LinodeVPCSpec struct {
// +optional
VPCID *int `json:"vpcID,omitempty"`

// +kubebuilder:validation:MinLength=3
// +kubebuilder:validation:MaxLength=63
// +kubebuilder:validation:XValidation:rule="self == oldSelf",message="Value is immutable"
// +optional
Label string `json:"label,omitempty"`
// +optional
Description string `json:"description,omitempty"`
// +kubebuilder:validation:XValidation:rule="self == oldSelf",message="Value is immutable"
Region string `json:"region"`
// +kubebuilder:validation:XValidation:rule="self == oldSelf",message="Value is immutable"
// +optional
Subnets []VPCSubnetCreateOptions `json:"subnets,omitempty"`
}

// VPCSubnetCreateOptions defines subnet options
type VPCSubnetCreateOptions struct {
// +kubebuilder:validation:MinLength=3
// +kubebuilder:validation:MaxLength=63
// +optional
Label string `json:"label,omitempty"`
// +optional
IPv4 string `json:"ipv4,omitempty"`
}

// LinodeVPCStatus defines the observed state of LinodeVPC
type LinodeVPCStatus struct {
// Ready is true when the provider resource is ready.
// +optional
// +kubebuilder:default=false
Ready bool `json:"ready"`

// FailureReason will be set in the event that there is a terminal problem
// reconciling the VPC and will contain a succinct value suitable
// for machine interpretation.
//
// This field should not be set for transitive errors that a controller
// faces that are expected to be fixed automatically over
// time (like service outages), but instead indicate that something is
// fundamentally wrong with the VPC's spec or the configuration of
// the controller, and that manual intervention is required. Examples
// of terminal errors would be invalid combinations of settings in the
// spec, values that are unsupported by the controller, or the
// responsible controller itself being critically misconfigured.
//
// Any transient errors that occur during the reconciliation of VPCs
// can be added as events to the VPC object and/or logged in the
// controller's output.
// +optional
FailureReason *VPCStatusError `json:"failureReason,omitempty"`

// FailureMessage will be set in the event that there is a terminal problem
// reconciling the VPC and will contain a more verbose string suitable
// for logging and human consumption.
//
// This field should not be set for transitive errors that a controller
// faces that are expected to be fixed automatically over
// time (like service outages), but instead indicate that something is
// fundamentally wrong with the VPC's spec or the configuration of
// the controller, and that manual intervention is required. Examples
// of terminal errors would be invalid combinations of settings in the
// spec, values that are unsupported by the controller, or the
// responsible controller itself being critically misconfigured.
//
// Any transient errors that occur during the reconciliation of VPCs
// can be added as events to the VPC object and/or logged in the
// controller's output.
// +optional
FailureMessage *string `json:"failureMessage,omitempty"`

// Conditions defines current service state of the LinodeVPC.
// +optional
Conditions clusterv1.Conditions `json:"conditions,omitempty"`
}

//+kubebuilder:object:root=true
//+kubebuilder:subresource:status

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

Spec LinodeVPCSpec `json:"spec,omitempty"`
Status LinodeVPCStatus `json:"status,omitempty"`
}

func (lm *LinodeVPC) GetConditions() clusterv1.Conditions {
return lm.Status.Conditions
}

func (lm *LinodeVPC) SetConditions(conditions clusterv1.Conditions) {
lm.Status.Conditions = conditions
}

//+kubebuilder:object:root=true

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

func init() {
SchemeBuilder.Register(&LinodeVPC{}, &LinodeVPCList{})
}

// VPCStatusError defines errors states for VPC objects.
type VPCStatusError string

const (
// CreateVPCError indicates that an error was encountered
// when trying to create the VPC.
CreateVPCError VPCStatusError = "CreateError"

// UpdateVPCError indicates that an error was encountered
// when trying to update the VPC.
UpdateVPCError VPCStatusError = "UpdateError"

// DeleteVPCError indicates that an error was encountered
// when trying to delete the VPC.
DeleteVPCError VPCStatusError = "DeleteError"
)
Loading