infrastructure

package
v1.7.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 15, 2024 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Overview

Package infrastructure defines the types for a generic infrastructure provider used for tests. +kubebuilder:object:generate=true +groupName=infrastructure.cluster.x-k8s.io

Index

Constants

This section is empty.

Variables

View Source
var (
	// GroupVersion is group version used to register these objects.
	GroupVersion = schema.GroupVersion{Group: "infrastructure.cluster.x-k8s.io", Version: "v1beta1"}

	// SchemeBuilder is used to add go types to the GroupVersionKind scheme.
	SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion}

	// AddToScheme adds the types in this group-version to the given scheme.
	AddToScheme = SchemeBuilder.AddToScheme
)

Functions

This section is empty.

Types

type GenericClusterInfrastructureIdentity added in v0.4.0

type GenericClusterInfrastructureIdentity struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
}

func (*GenericClusterInfrastructureIdentity) DeepCopy added in v0.4.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericClusterInfrastructureIdentity.

func (*GenericClusterInfrastructureIdentity) DeepCopyInto added in v0.4.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*GenericClusterInfrastructureIdentity) DeepCopyObject added in v0.4.0

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type GenericClusterInfrastructureIdentityList added in v0.4.0

type GenericClusterInfrastructureIdentityList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []GenericClusterInfrastructureIdentity `json:"items"`
}

func (*GenericClusterInfrastructureIdentityList) DeepCopy added in v0.4.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericClusterInfrastructureIdentityList.

func (*GenericClusterInfrastructureIdentityList) DeepCopyInto added in v0.4.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*GenericClusterInfrastructureIdentityList) DeepCopyObject added in v0.4.0

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type GenericInfrastructureCluster added in v0.3.7

type GenericInfrastructureCluster struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
}

func (*GenericInfrastructureCluster) DeepCopy added in v0.3.7

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericInfrastructureCluster.

func (*GenericInfrastructureCluster) DeepCopyInto added in v0.3.7

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*GenericInfrastructureCluster) DeepCopyObject added in v0.3.7

func (in *GenericInfrastructureCluster) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type GenericInfrastructureClusterList added in v0.3.7

type GenericInfrastructureClusterList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []GenericInfrastructureCluster `json:"items"`
}

func (*GenericInfrastructureClusterList) DeepCopy added in v0.3.7

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericInfrastructureClusterList.

func (*GenericInfrastructureClusterList) DeepCopyInto added in v0.3.7

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*GenericInfrastructureClusterList) DeepCopyObject added in v0.3.7

func (in *GenericInfrastructureClusterList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type GenericInfrastructureMachine added in v0.3.7

type GenericInfrastructureMachine struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
}

func (*GenericInfrastructureMachine) DeepCopy added in v0.3.7

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericInfrastructureMachine.

func (*GenericInfrastructureMachine) DeepCopyInto added in v0.3.7

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*GenericInfrastructureMachine) DeepCopyObject added in v0.3.7

func (in *GenericInfrastructureMachine) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type GenericInfrastructureMachineList added in v0.3.7

type GenericInfrastructureMachineList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []GenericInfrastructureMachine `json:"items"`
}

func (*GenericInfrastructureMachineList) DeepCopy added in v0.3.7

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericInfrastructureMachineList.

func (*GenericInfrastructureMachineList) DeepCopyInto added in v0.3.7

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*GenericInfrastructureMachineList) DeepCopyObject added in v0.3.7

func (in *GenericInfrastructureMachineList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type GenericInfrastructureMachineTemplate added in v0.3.7

type GenericInfrastructureMachineTemplate struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
}

func (*GenericInfrastructureMachineTemplate) DeepCopy added in v0.3.7

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericInfrastructureMachineTemplate.

func (*GenericInfrastructureMachineTemplate) DeepCopyInto added in v0.3.7

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*GenericInfrastructureMachineTemplate) DeepCopyObject added in v0.3.7

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type GenericInfrastructureMachineTemplateList added in v0.3.7

type GenericInfrastructureMachineTemplateList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []GenericInfrastructureMachineTemplate `json:"items"`
}

func (*GenericInfrastructureMachineTemplateList) DeepCopy added in v0.3.7

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericInfrastructureMachineTemplateList.

func (*GenericInfrastructureMachineTemplateList) DeepCopyInto added in v0.3.7

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*GenericInfrastructureMachineTemplateList) DeepCopyObject added in v0.3.7

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL