Documentation ¶
Overview ¶
Package v1 contains API Schema definitions for the operator v1 API group +kubebuilder:object:generate=true +groupName=operator.scc-digitalhub.github.io
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "operator.scc-digitalhub.github.io", 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 ApiGw ¶
type ApiGw struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ApiGwSpec `json:"spec,omitempty"` Status ApiGwStatus `json:"status,omitempty"` }
ApiGw is the Schema for the apigws API
func (*ApiGw) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApiGw.
func (*ApiGw) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ApiGw) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ApiGwList ¶
type ApiGwList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []ApiGw `json:"items"` }
ApiGwList contains a list of ApiGw
func (*ApiGwList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApiGwList.
func (*ApiGwList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ApiGwList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ApiGwSpec ¶
type ApiGwSpec struct { Host string `json:"host,omitempty"` Path string `json:"path,omitempty"` Service string `json:"service,omitempty"` Port int32 `json:"port,omitempty"` Auth Auth `json:"auth,omitempty"` }
ApiGwSpec defines the desired state of ApiGw
func (*ApiGwSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApiGwSpec.
func (*ApiGwSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ApiGwStatus ¶
type ApiGwStatus struct { // +operator-sdk:csv:customresourcedefinitions:type=status State string `json:"state,omitempty" patchStrategy:"merge"` Hash string `json:"hash,omitempty" patchStrategy:"merge"` }
ApiGwStatus defines the observed state of ApiGw
func (*ApiGwStatus) DeepCopy ¶
func (in *ApiGwStatus) DeepCopy() *ApiGwStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApiGwStatus.
func (*ApiGwStatus) DeepCopyInto ¶
func (in *ApiGwStatus) DeepCopyInto(out *ApiGwStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Auth ¶
type Auth struct { // Valid types: none, basic Type string `json:"type,omitempty"` Basic BasicAuth `json:"basic,omitempty"` }
func (*Auth) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Auth.
func (*Auth) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BasicAuth ¶
type BasicAuth struct { User string `json:"user,omitempty"` Password string `json:"password,omitempty"` }
func (*BasicAuth) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BasicAuth.
func (*BasicAuth) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.