Documentation
¶
Overview ¶
Package v1beta1 contains API Schema definitions for the request.infra.doodle.com v1beta1 API group +kubebuilder:object:generate=true +groupName=proxy.infra.doodle.com
Index ¶
Constants ¶
const ( ReadyCondition = "Ready" ServicePortNotFoundReason = "ServicePortNotFound" ServiceNotFoundReason = "ServiceNotFound" ServiceBackendReadyReason = "ServiceBackendReady" )
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "proxy.infra.doodle.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 RequestClone ¶
type RequestClone struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec RequestCloneSpec `json:"spec,omitempty"`
Status RequestCloneStatus `json:"status,omitempty"`
}
RequestClone is the Schema for the RequestClones API
func RequestCloneNotReady ¶
func RequestCloneNotReady(clone RequestClone, reason, message string) RequestClone
RequestCloneNotReady
func RequestCloneReady ¶
func RequestCloneReady(clone RequestClone, reason, message string) RequestClone
RequestCloneReady
func (*RequestClone) DeepCopy ¶
func (in *RequestClone) DeepCopy() *RequestClone
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RequestClone.
func (*RequestClone) DeepCopyInto ¶
func (in *RequestClone) DeepCopyInto(out *RequestClone)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*RequestClone) DeepCopyObject ¶
func (in *RequestClone) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*RequestClone) GetStatusConditions ¶
func (in *RequestClone) GetStatusConditions() *[]metav1.Condition
GetStatusConditions returns a pointer to the Status.Conditions slice
type RequestCloneList ¶
type RequestCloneList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []RequestClone `json:"items"`
}
RequestCloneList contains a list of RequestClone
func (*RequestCloneList) DeepCopy ¶
func (in *RequestCloneList) DeepCopy() *RequestCloneList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RequestCloneList.
func (*RequestCloneList) DeepCopyInto ¶
func (in *RequestCloneList) DeepCopyInto(out *RequestCloneList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*RequestCloneList) DeepCopyObject ¶
func (in *RequestCloneList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type RequestCloneSpec ¶
type RequestCloneSpec struct {
// +required
Host string `json:"host"`
// +required
Backend ServiceSelector `json:"backend"`
}
RequestCloneSpec defines the desired state of RequestClone
func (*RequestCloneSpec) DeepCopy ¶
func (in *RequestCloneSpec) DeepCopy() *RequestCloneSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RequestCloneSpec.
func (*RequestCloneSpec) DeepCopyInto ¶
func (in *RequestCloneSpec) DeepCopyInto(out *RequestCloneSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RequestCloneStatus ¶
type RequestCloneStatus struct {
// Conditions holds the conditions for the VaultBinding.
// +optional
Conditions []metav1.Condition `json:"conditions,omitempty"`
}
RequestCloneStatus defines the observed state of RequestClone
func (*RequestCloneStatus) DeepCopy ¶
func (in *RequestCloneStatus) DeepCopy() *RequestCloneStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RequestCloneStatus.
func (*RequestCloneStatus) DeepCopyInto ¶
func (in *RequestCloneStatus) DeepCopyInto(out *RequestCloneStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceSelector ¶
type ServiceSelector struct {
ServiceName string `json:"serviceName"`
ServicePort string `json:"servicePort"`
}
func (*ServiceSelector) DeepCopy ¶
func (in *ServiceSelector) DeepCopy() *ServiceSelector
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceSelector.
func (*ServiceSelector) DeepCopyInto ¶
func (in *ServiceSelector) DeepCopyInto(out *ServiceSelector)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.