Documentation
¶
Overview ¶
Package v1beta1 contains API Schema definitions for the sandbox v1beta1 API group +kubebuilder:object:generate=true +groupName=sandbox.rvmiller.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "sandbox.rvmiller.com", 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 WebPage ¶
type WebPage struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec WebPageSpec `json:"spec,omitempty"` Status WebPageStatus `json:"status,omitempty"` }
WebPage is the Schema for the webpages API
func (*WebPage) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebPage.
func (*WebPage) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*WebPage) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type WebPageList ¶
type WebPageList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []WebPage `json:"items"` }
WebPageList contains a list of WebPage
func (*WebPageList) DeepCopy ¶
func (in *WebPageList) DeepCopy() *WebPageList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebPageList.
func (*WebPageList) DeepCopyInto ¶
func (in *WebPageList) DeepCopyInto(out *WebPageList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*WebPageList) DeepCopyObject ¶
func (in *WebPageList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type WebPageSpec ¶
type WebPageSpec struct { // Html field stores the static web page contents // +kubebuilder:validation:MinLength=1 Html string `json:"html"` }
WebPageSpec defines the desired state of WebPage
func (*WebPageSpec) DeepCopy ¶
func (in *WebPageSpec) DeepCopy() *WebPageSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebPageSpec.
func (*WebPageSpec) DeepCopyInto ¶
func (in *WebPageSpec) DeepCopyInto(out *WebPageSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type WebPageStatus ¶
type WebPageStatus struct { // Stores the last time the job was successfully scheduled. // +optional LastUpdateTime *metav1.Time `json:"lastUpdateTime,omitempty"` }
WebPageStatus defines the observed state of WebPage
func (*WebPageStatus) DeepCopy ¶
func (in *WebPageStatus) DeepCopy() *WebPageStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebPageStatus.
func (*WebPageStatus) DeepCopyInto ¶
func (in *WebPageStatus) DeepCopyInto(out *WebPageStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.