Documentation ¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the tools v1alpha1 API group +kubebuilder:object:generate=true +groupName=tools.analytical-platform.justice
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "tools.analytical-platform.justice", 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 JupyterLab ¶
type JupyterLab struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec JupyterLabSpec `json:"spec,omitempty"` Status JupyterLabStatus `json:"status,omitempty"` }
JupyterLab is the Schema for the jupyterlabs API
func (*JupyterLab) DeepCopy ¶
func (in *JupyterLab) DeepCopy() *JupyterLab
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JupyterLab.
func (*JupyterLab) DeepCopyInto ¶
func (in *JupyterLab) DeepCopyInto(out *JupyterLab)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*JupyterLab) DeepCopyObject ¶
func (in *JupyterLab) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type JupyterLabList ¶
type JupyterLabList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []JupyterLab `json:"items"` }
JupyterLabList contains a list of JupyterLab
func (*JupyterLabList) DeepCopy ¶
func (in *JupyterLabList) DeepCopy() *JupyterLabList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JupyterLabList.
func (*JupyterLabList) DeepCopyInto ¶
func (in *JupyterLabList) DeepCopyInto(out *JupyterLabList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*JupyterLabList) DeepCopyObject ¶
func (in *JupyterLabList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type JupyterLabSpec ¶
type JupyterLabSpec struct { // Image is the image to use for the JupyterLab instance Image string `json:"image,omitempty"` // Version is the image tag or version to use for the JupyterLab instance Version string `json:"version"` }
JupyterLabSpec defines the desired state of JupyterLab
func (*JupyterLabSpec) DeepCopy ¶
func (in *JupyterLabSpec) DeepCopy() *JupyterLabSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JupyterLabSpec.
func (*JupyterLabSpec) DeepCopyInto ¶
func (in *JupyterLabSpec) DeepCopyInto(out *JupyterLabSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type JupyterLabStatus ¶
type JupyterLabStatus struct { }
JupyterLabStatus defines the observed state of JupyterLab
func (*JupyterLabStatus) DeepCopy ¶
func (in *JupyterLabStatus) DeepCopy() *JupyterLabStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JupyterLabStatus.
func (*JupyterLabStatus) DeepCopyInto ¶
func (in *JupyterLabStatus) DeepCopyInto(out *JupyterLabStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Tool ¶
type Tool struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ToolSpec `json:"spec,omitempty"` Status ToolStatus `json:"status,omitempty"` }
Tool is the Schema for the tools API
func (*Tool) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Tool.
func (*Tool) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Tool) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ToolList ¶
type ToolList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Tool `json:"items"` }
ToolList contains a list of Tool
func (*ToolList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ToolList.
func (*ToolList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ToolList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ToolSpec ¶
type ToolSpec struct { // Image defines the name of the container image to use Image string `json:"image,omitempty"` // ImageVersion refers to the version of the pushed image ImageVersion string `json:"version"` // Username of the initialed user Username string `json:"user"` // IamRole assigned at initialisation IamRole string `json:"iamrole,omitempty"` }
ToolSpec defines the desired state of Tool
func (*ToolSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ToolSpec.
func (*ToolSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ToolStatus ¶
type ToolStatus struct { // INSERT ADDITIONAL STATUS FIELD - define observed state of cluster // Important: Run "make" to regenerate code after modifying this file // DateLastUsed is the date the tool was last used by the user DateLastUsed string `json:"DateLastUsed,omitempty"` // PreviousVersions is a list of previous versions of the tool used by the user PreviousVersions []string `json:"PreviousVersions,omitempty"` // Url is the url of the tool Url string `json:"Url,omitempty"` }
ToolStatus defines the observed state of Tool
func (*ToolStatus) DeepCopy ¶
func (in *ToolStatus) DeepCopy() *ToolStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ToolStatus.
func (*ToolStatus) DeepCopyInto ¶
func (in *ToolStatus) DeepCopyInto(out *ToolStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.