Documentation
¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the docker.com v1alpha1 API group +kubebuilder:object:generate=true +groupName=docker.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "docker.com", Version: "v1alpha1"} // 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 Compose ¶
type Compose struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ComposeSpec `json:"spec,omitempty"` Status ComposeStatus `json:"status,omitempty"` }
Compose is the Schema for the composes API +kubebuilder:subresource:status
func (*Compose) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Compose.
func (*Compose) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Compose) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ComposeList ¶
type ComposeList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Compose `json:"items"` }
ComposeList contains a list of Compose
func (*ComposeList) DeepCopy ¶
func (in *ComposeList) DeepCopy() *ComposeList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComposeList.
func (*ComposeList) DeepCopyInto ¶
func (in *ComposeList) DeepCopyInto(out *ComposeList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ComposeList) DeepCopyObject ¶
func (in *ComposeList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ComposeSpec ¶
type ComposeSpec struct {
Spec string `json:"spec"`
}
ComposeSpec defines the desired state of Compose
func (*ComposeSpec) DeepCopy ¶
func (in *ComposeSpec) DeepCopy() *ComposeSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComposeSpec.
func (*ComposeSpec) DeepCopyInto ¶
func (in *ComposeSpec) DeepCopyInto(out *ComposeSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ComposeStatus ¶
type ComposeStatus struct {
Services int `json:"services"`
}
ComposeStatus defines the observed state of Compose
func (*ComposeStatus) DeepCopy ¶
func (in *ComposeStatus) DeepCopy() *ComposeStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComposeStatus.
func (*ComposeStatus) DeepCopyInto ¶
func (in *ComposeStatus) DeepCopyInto(out *ComposeStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.