Documentation
¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the integration v1alpha1 API group +kubebuilder:object:generate=true +groupName=integration.epsagon.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "integration.epsagon.com", 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 Epsagon ¶
type Epsagon struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec EpsagonSpec `json:"spec,omitempty"`
Status EpsagonStatus `json:"status,omitempty"`
}
Epsagon is the Schema for the epsagons API
func (*Epsagon) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Epsagon.
func (*Epsagon) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Epsagon) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type EpsagonList ¶
type EpsagonList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []Epsagon `json:"items"`
}
EpsagonList contains a list of Epsagon
func (*EpsagonList) DeepCopy ¶
func (in *EpsagonList) DeepCopy() *EpsagonList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EpsagonList.
func (*EpsagonList) DeepCopyInto ¶
func (in *EpsagonList) DeepCopyInto(out *EpsagonList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*EpsagonList) DeepCopyObject ¶
func (in *EpsagonList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type EpsagonSpec ¶
type EpsagonSpec struct {
// EpsagonToken is the Epsagon token for the account integrating this cluster
EpsagonToken string `json:"epsagonToken"`
// ClusterEndpoint cluster api endpoint to access from outside of the cluster
ClusterEndpoint string `json:"clusterEndpoint"`
}
EpsagonSpec defines the desired state of Epsagon
func (*EpsagonSpec) DeepCopy ¶
func (in *EpsagonSpec) DeepCopy() *EpsagonSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EpsagonSpec.
func (*EpsagonSpec) DeepCopyInto ¶
func (in *EpsagonSpec) DeepCopyInto(out *EpsagonSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EpsagonStatus ¶
type EpsagonStatus struct {
// Status of the integration with Epsagon
Status string `json:"status,omitempty"`
// Reason description of the error, if any.
Reason string `json:"reason,omitempty"`
// LastUpdate the last update time of this resource
LastUpdate metav1.Time `json:"lastUpdate,omitempty"`
}
EpsagonStatus defines the observed state of Epsagon
func (*EpsagonStatus) DeepCopy ¶
func (in *EpsagonStatus) DeepCopy() *EpsagonStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EpsagonStatus.
func (*EpsagonStatus) DeepCopyInto ¶
func (in *EpsagonStatus) DeepCopyInto(out *EpsagonStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.