Documentation ¶
Overview ¶
Package v1beta1 contains API Schema definitions for the configuration.konghq.com v1beta1 API group +kubebuilder:object:generate=true +groupName=configuration.konghq.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "configuration.konghq.com", Version: "v1beta1"} // SchemeGroupVersion is a convenience var for generated clientsets SchemeGroupVersion = GroupVersion // 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 ¶
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type IngressBackend ¶
type IngressBackend struct { // Specifies the name of the referenced service. ServiceName string `json:"serviceName"` // Specifies the port of the referenced service. ServicePort int `json:"servicePort"` }
IngressBackend describes all endpoints for a given service and port.
func (*IngressBackend) DeepCopy ¶
func (in *IngressBackend) DeepCopy() *IngressBackend
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressBackend.
func (*IngressBackend) DeepCopyInto ¶
func (in *IngressBackend) DeepCopyInto(out *IngressBackend)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IngressRule ¶
type IngressRule struct { // Host is the fully qualified domain name of a network host, as defined // by RFC 3986. // If a Host is specified, the protocol must be TLS over TCP. // A plain-text TCP request cannot be routed based on Host. It can only // be routed based on Port. // +optional Host string `json:"host,omitempty"` // Port is the port on which to accept TCP or TLS over TCP sessions and // route. It is a required field. If a Host is not specified, the requested // are routed based only on Port. Port int `json:"port,omitempty"` // Backend defines the referenced service endpoint to which the traffic // will be forwarded to. Backend IngressBackend `json:"backend"` }
IngressRule represents a rule to apply against incoming requests. Matching is performed based on an (optional) SNI and port.
func (*IngressRule) DeepCopy ¶
func (in *IngressRule) DeepCopy() *IngressRule
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressRule.
func (*IngressRule) DeepCopyInto ¶
func (in *IngressRule) DeepCopyInto(out *IngressRule)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IngressTLS ¶
type IngressTLS struct { // Hosts are a list of hosts included in the TLS certificate. The values in // this list must match the name/s used in the tlsSecret. Defaults to the // wildcard host setting for the loadbalancer controller fulfilling this // Ingress, if left unspecified. // +optional Hosts []string `json:"hosts,omitempty"` // SecretName is the name of the secret used to terminate SSL traffic. // +optional SecretName string `json:"secretName,omitempty"` }
IngressTLS describes the transport layer security.
func (*IngressTLS) DeepCopy ¶
func (in *IngressTLS) DeepCopy() *IngressTLS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressTLS.
func (*IngressTLS) DeepCopyInto ¶
func (in *IngressTLS) DeepCopyInto(out *IngressTLS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TCPIngress ¶
type TCPIngress struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec TCPIngressSpec `json:"spec,omitempty"` Status TCPIngressStatus `json:"status,omitempty"` }
TCPIngress is the Schema for the tcpingresses API
func (*TCPIngress) DeepCopy ¶
func (in *TCPIngress) DeepCopy() *TCPIngress
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPIngress.
func (*TCPIngress) DeepCopyInto ¶
func (in *TCPIngress) DeepCopyInto(out *TCPIngress)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*TCPIngress) DeepCopyObject ¶
func (in *TCPIngress) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type TCPIngressList ¶
type TCPIngressList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []TCPIngress `json:"items"` }
TCPIngressList contains a list of TCPIngress
func (*TCPIngressList) DeepCopy ¶
func (in *TCPIngressList) DeepCopy() *TCPIngressList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPIngressList.
func (*TCPIngressList) DeepCopyInto ¶
func (in *TCPIngressList) DeepCopyInto(out *TCPIngressList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*TCPIngressList) DeepCopyObject ¶
func (in *TCPIngressList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type TCPIngressSpec ¶
type TCPIngressSpec struct { // A list of rules used to configure the Ingress. Rules []IngressRule `json:"rules,omitempty"` // TLS configuration. This is similar to the `tls` section in the // Ingress resource in networking.v1beta1 group. // The mapping of SNIs to TLS cert-key pair defined here will be // used for HTTP Ingress rules as well. Once can define the mapping in // this resource or the original Ingress resource, both have the same // effect. // +optional TLS []IngressTLS `json:"tls,omitempty"` }
TCPIngressSpec defines the desired state of TCPIngress
func (*TCPIngressSpec) DeepCopy ¶
func (in *TCPIngressSpec) DeepCopy() *TCPIngressSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPIngressSpec.
func (*TCPIngressSpec) DeepCopyInto ¶
func (in *TCPIngressSpec) DeepCopyInto(out *TCPIngressSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TCPIngressStatus ¶
type TCPIngressStatus struct { // LoadBalancer contains the current status of the load-balancer. // +optional LoadBalancer corev1.LoadBalancerStatus `json:"loadBalancer,omitempty"` }
TCPIngressStatus defines the observed state of TCPIngress
func (*TCPIngressStatus) DeepCopy ¶
func (in *TCPIngressStatus) DeepCopy() *TCPIngressStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPIngressStatus.
func (*TCPIngressStatus) DeepCopyInto ¶
func (in *TCPIngressStatus) DeepCopyInto(out *TCPIngressStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.