v1alpha4

package
v0.0.0-...-a26001a Latest Latest
Warning

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

Go to latest
Published: Oct 23, 2021 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Overview

Package v1alpha4 contains API Schema definitions for the infrastructure v1alpha4 API group +kubebuilder:object:generate=true +groupName=infrastructure.cluster.x-k8s.io

Index

Constants

View Source
const (
	PriorityHigh   = Priority("High")
	PriorityMedium = Priority("Medium")
	PriorityLow    = Priority("Low")
)

Variables

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

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

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

	Spec   ChumichClusterSpec   `json:"spec,omitempty"`
	Status ChumichClusterStatus `json:"status,omitempty"`
}

ChumichCluster is the Schema for the chumichclusters API

func (*ChumichCluster) DeepCopy

func (in *ChumichCluster) DeepCopy() *ChumichCluster

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

func (*ChumichCluster) DeepCopyInto

func (in *ChumichCluster) DeepCopyInto(out *ChumichCluster)

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

func (*ChumichCluster) DeepCopyObject

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

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

type ChumichClusterList

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

ChumichClusterList contains a list of ChumichCluster

func (*ChumichClusterList) DeepCopy

func (in *ChumichClusterList) DeepCopy() *ChumichClusterList

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

func (*ChumichClusterList) DeepCopyInto

func (in *ChumichClusterList) DeepCopyInto(out *ChumichClusterList)

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

func (*ChumichClusterList) DeepCopyObject

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

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

type ChumichClusterSpec

type ChumichClusterSpec struct {
	Priority  Priority `json:"priority"`
	Request   string   `json:"request"`
	Requester string   `json:"requester"`
}

ChumichClusterSpec defines the desired state of ChumichCluster

func (*ChumichClusterSpec) DeepCopy

func (in *ChumichClusterSpec) DeepCopy() *ChumichClusterSpec

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

func (*ChumichClusterSpec) DeepCopyInto

func (in *ChumichClusterSpec) DeepCopyInto(out *ChumichClusterSpec)

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

type ChumichClusterStatus

type ChumichClusterStatus struct {
	// INSERT ADDITIONAL STATUS FIELD - define observed state of cluster
	// Important: Run "make" to regenerate code after modifying this file
	MessageID *string `json:"response"`
}

ChumichClusterStatus defines the observed state of ChumichCluster

func (*ChumichClusterStatus) DeepCopy

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

func (*ChumichClusterStatus) DeepCopyInto

func (in *ChumichClusterStatus) DeepCopyInto(out *ChumichClusterStatus)

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

type ChumichMachine

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

	Spec   ChumichMachineSpec   `json:"spec,omitempty"`
	Status ChumichMachineStatus `json:"status,omitempty"`
}

ChumichMachine is the Schema for the chumichmachines API

func (*ChumichMachine) DeepCopy

func (in *ChumichMachine) DeepCopy() *ChumichMachine

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

func (*ChumichMachine) DeepCopyInto

func (in *ChumichMachine) DeepCopyInto(out *ChumichMachine)

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

func (*ChumichMachine) DeepCopyObject

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

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

type ChumichMachineList

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

ChumichMachineList contains a list of ChumichMachine

func (*ChumichMachineList) DeepCopy

func (in *ChumichMachineList) DeepCopy() *ChumichMachineList

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

func (*ChumichMachineList) DeepCopyInto

func (in *ChumichMachineList) DeepCopyInto(out *ChumichMachineList)

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

func (*ChumichMachineList) DeepCopyObject

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

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

type ChumichMachineSpec

type ChumichMachineSpec struct {

	// Foo is an example field of ChumichMachine. Edit chumichmachine_types.go to remove/update
	Foo string `json:"foo,omitempty"`
}

ChumichMachineSpec defines the desired state of ChumichMachine

func (*ChumichMachineSpec) DeepCopy

func (in *ChumichMachineSpec) DeepCopy() *ChumichMachineSpec

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

func (*ChumichMachineSpec) DeepCopyInto

func (in *ChumichMachineSpec) DeepCopyInto(out *ChumichMachineSpec)

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

type ChumichMachineStatus

type ChumichMachineStatus struct {
}

ChumichMachineStatus defines the observed state of ChumichMachine

func (*ChumichMachineStatus) DeepCopy

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

func (*ChumichMachineStatus) DeepCopyInto

func (in *ChumichMachineStatus) DeepCopyInto(out *ChumichMachineStatus)

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

Jump to

Keyboard shortcuts

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