Documentation
¶
Overview ¶
Package v1 contains API Schema definitions for the presentation v1 API group +kubebuilder:object:generate=true +groupName=presentation.example.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "presentation.example.com", Version: "v1"} // 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 Presentation ¶
type Presentation struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec PresentationSpec `json:"spec,omitempty"`
Status PresentationStatus `json:"status,omitempty"`
}
Presentation is the Schema for the presentations API
func (*Presentation) DeepCopy ¶
func (in *Presentation) DeepCopy() *Presentation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Presentation.
func (*Presentation) DeepCopyInto ¶
func (in *Presentation) DeepCopyInto(out *Presentation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Presentation) DeepCopyObject ¶
func (in *Presentation) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type PresentationList ¶
type PresentationList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []Presentation `json:"items"`
}
PresentationList contains a list of Presentation
func (*PresentationList) DeepCopy ¶
func (in *PresentationList) DeepCopy() *PresentationList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PresentationList.
func (*PresentationList) DeepCopyInto ¶
func (in *PresentationList) DeepCopyInto(out *PresentationList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*PresentationList) DeepCopyObject ¶
func (in *PresentationList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type PresentationSpec ¶
type PresentationSpec struct {
// Foo is an example field of Presentation. Edit Presentation_types.go to remove/update
Markdown string `json:"markdown,omitempty"`
Size int32 `json:"size"`
}
PresentationSpec defines the desired state of Presentation
func (*PresentationSpec) DeepCopy ¶
func (in *PresentationSpec) DeepCopy() *PresentationSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PresentationSpec.
func (*PresentationSpec) DeepCopyInto ¶
func (in *PresentationSpec) DeepCopyInto(out *PresentationSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PresentationStatus ¶
type PresentationStatus struct {
// INSERT ADDITIONAL STATUS FIELD - define observed state of cluster
// Important: Run "make" to regenerate code after modifying this file
// Nodes are the names of the presentation pods
Nodes []string `json:"nodes"`
}
PresentationStatus defines the observed state of Presentation
func (*PresentationStatus) DeepCopy ¶
func (in *PresentationStatus) DeepCopy() *PresentationStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PresentationStatus.
func (*PresentationStatus) DeepCopyInto ¶
func (in *PresentationStatus) DeepCopyInto(out *PresentationStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.