Documentation ¶
Overview ¶
Package v1beta1 contains API Schema definitions for the argonaut v1beta1 API group +kubebuilder:object:generate=true +groupName=argonaut.metalabs.no
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "argonaut.metalabs.no", 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 Argonaut ¶
type Argonaut struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ArgonautSpec `json:"spec,omitempty"` Status ArgonautStatus `json:"status,omitempty"` }
Argonaut is the Schema for the argonauts API
func (*Argonaut) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Argonaut.
func (*Argonaut) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Argonaut) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ArgonautIngressRule ¶
type ArgonautIngressRule struct { // Describes the desired FQDN hostname for Hostname string `json:"hostname"` // Path on host endpoints to expose. Supports filters/wildcards.. Doc ref. // +optional Path string `json:"path,omitempty"` // Label selector for finding pod's to tunnel traffic for // EndpointsSelector and ServiceSelector are mutually exclusive EndpointsSelector metav1.LabelSelector `json:"endpointsSelector,omitempty"` // Service selector for finding a ClusterIP to tunnel traffic to ServiceSelector metav1.LabelSelector `json:"serviceSelector,omitempty"` }
ArgonaoutHost defines a
func (*ArgonautIngressRule) DeepCopy ¶
func (in *ArgonautIngressRule) DeepCopy() *ArgonautIngressRule
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ArgonautIngressRule.
func (*ArgonautIngressRule) DeepCopyInto ¶
func (in *ArgonautIngressRule) DeepCopyInto(out *ArgonautIngressRule)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ArgonautList ¶
type ArgonautList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Argonaut `json:"items"` }
ArgonautList contains a list of Argonaut
func (*ArgonautList) DeepCopy ¶
func (in *ArgonautList) DeepCopy() *ArgonautList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ArgonautList.
func (*ArgonautList) DeepCopyInto ¶
func (in *ArgonautList) DeepCopyInto(out *ArgonautList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ArgonautList) DeepCopyObject ¶
func (in *ArgonautList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ArgonautSpec ¶
type ArgonautSpec struct { // Reference to a ArgoTunnel{}. If tunnel definition ArgoTunnelName string `json:"argoTunnelName"` // Secret Reference containing the tunnel secret. If not provided the Argonaut operator // will create it and populate it. ArgoTunnelSecret v1.SecretReference `json:"argoTunnelSecret,omitempty"` // Reference to a secret that contains email and token for CloudFlare API access. CFAuthSecret v1.SecretReference `json:"cfAuthSecret"` // List of hosts to manage for this Argonaut instance. Ingress []ArgonautIngressRule `json:"ingress"` }
ArgonautSpec defines the desired state of Argonaut
func (*ArgonautSpec) DeepCopy ¶
func (in *ArgonautSpec) DeepCopy() *ArgonautSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ArgonautSpec.
func (*ArgonautSpec) DeepCopyInto ¶
func (in *ArgonautSpec) DeepCopyInto(out *ArgonautSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ArgonautStatus ¶
type ArgonautStatus struct { // Hold UUID for Argo Tunnel. Gets populated when reconciled or created. TunnelId string `json:"tunnelId,omitempty"` }
ArgonautStatus defines the observed state of Argonaut
func (*ArgonautStatus) DeepCopy ¶
func (in *ArgonautStatus) DeepCopy() *ArgonautStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ArgonautStatus.
func (*ArgonautStatus) DeepCopyInto ¶
func (in *ArgonautStatus) DeepCopyInto(out *ArgonautStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.