Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type HTTPIngressPath ¶
type HTTPIngressPath struct { // Backend defines the referenced service endpoint to which the traffic will be forwarded to. // Required: true Backend *IngressBackend `json:"backend"` // Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional "path" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend. Path string `json:"path,omitempty"` }
HTTPIngressPath HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.
swagger:model HTTPIngressPath
func (HTTPIngressPath) MarshalEasyJSON ¶
func (v HTTPIngressPath) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (HTTPIngressPath) MarshalJSON ¶
func (v HTTPIngressPath) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*HTTPIngressPath) UnmarshalEasyJSON ¶
func (v *HTTPIngressPath) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*HTTPIngressPath) UnmarshalJSON ¶
func (v *HTTPIngressPath) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type HTTPIngressRuleValue ¶
type HTTPIngressRuleValue struct { // A collection of paths that map requests to backends. // Required: true Paths []*HTTPIngressPath `json:"paths"` }
HTTPIngressRuleValue HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.
swagger:model HTTPIngressRuleValue
func (HTTPIngressRuleValue) MarshalEasyJSON ¶
func (v HTTPIngressRuleValue) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (HTTPIngressRuleValue) MarshalJSON ¶
func (v HTTPIngressRuleValue) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*HTTPIngressRuleValue) UnmarshalEasyJSON ¶
func (v *HTTPIngressRuleValue) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*HTTPIngressRuleValue) UnmarshalJSON ¶
func (v *HTTPIngressRuleValue) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type Ingress ¶
type Ingress struct { // APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources APIVersion string `json:"apiVersion,omitempty"` // Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"` // Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status Spec *IngressSpec `json:"spec,omitempty"` // Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status Status *IngressStatus `json:"status,omitempty"` }
Ingress Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.
swagger:model Ingress
func (Ingress) MarshalEasyJSON ¶
MarshalEasyJSON supports easyjson.Marshaler interface
func (Ingress) MarshalJSON ¶
MarshalJSON supports json.Marshaler interface
func (*Ingress) UnmarshalEasyJSON ¶
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*Ingress) UnmarshalJSON ¶
UnmarshalJSON supports json.Unmarshaler interface
type IngressBackend ¶
type IngressBackend struct { // Specifies the name of the referenced service. // Required: true ServiceName *string `json:"serviceName"` // Specifies the port of the referenced service. // Required: true ServicePort *apimachinery_pkg_util_intstr.IntOrString `json:"servicePort"` }
IngressBackend IngressBackend describes all endpoints for a given service and port.
swagger:model IngressBackend
func (IngressBackend) MarshalEasyJSON ¶
func (v IngressBackend) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (IngressBackend) MarshalJSON ¶
func (v IngressBackend) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*IngressBackend) UnmarshalEasyJSON ¶
func (v *IngressBackend) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*IngressBackend) UnmarshalJSON ¶
func (v *IngressBackend) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type IngressList ¶
type IngressList struct { // APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources APIVersion string `json:"apiVersion,omitempty"` // Items is the list of Ingress. // Required: true Items []*Ingress `json:"items"` // Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"` }
IngressList IngressList is a collection of Ingress.
swagger:model IngressList
func (IngressList) MarshalEasyJSON ¶
func (v IngressList) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (IngressList) MarshalJSON ¶
func (v IngressList) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*IngressList) UnmarshalEasyJSON ¶
func (v *IngressList) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*IngressList) UnmarshalJSON ¶
func (v *IngressList) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type IngressRule ¶
type IngressRule struct { // Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the "host" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to the // IP in the Spec of the parent Ingress. // 2. The `:` delimiter is not respected because ports are not allowed. // Currently the port of an Ingress is implicitly :80 for http and // :443 for https. // Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue. Host string `json:"host,omitempty"` // http HTTP *HTTPIngressRuleValue `json:"http,omitempty"` }
IngressRule IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.
swagger:model IngressRule
func (IngressRule) MarshalEasyJSON ¶
func (v IngressRule) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (IngressRule) MarshalJSON ¶
func (v IngressRule) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*IngressRule) UnmarshalEasyJSON ¶
func (v *IngressRule) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*IngressRule) UnmarshalJSON ¶
func (v *IngressRule) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type IngressSpec ¶
type IngressSpec struct { // A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default. Backend *IngressBackend `json:"backend,omitempty"` // A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend. Rules []*IngressRule `json:"rules,omitempty"` // TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI. TLS []*IngressTLS `json:"tls,omitempty"` }
IngressSpec IngressSpec describes the Ingress the user wishes to exist.
swagger:model IngressSpec
func (IngressSpec) MarshalEasyJSON ¶
func (v IngressSpec) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (IngressSpec) MarshalJSON ¶
func (v IngressSpec) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*IngressSpec) UnmarshalEasyJSON ¶
func (v *IngressSpec) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*IngressSpec) UnmarshalJSON ¶
func (v *IngressSpec) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type IngressStatus ¶
type IngressStatus struct { // LoadBalancer contains the current status of the load-balancer. LoadBalancer *api_core_v1.LoadBalancerStatus `json:"loadBalancer,omitempty"` }
IngressStatus IngressStatus describe the current state of the Ingress.
swagger:model IngressStatus
func (IngressStatus) MarshalEasyJSON ¶
func (v IngressStatus) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (IngressStatus) MarshalJSON ¶
func (v IngressStatus) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*IngressStatus) UnmarshalEasyJSON ¶
func (v *IngressStatus) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*IngressStatus) UnmarshalJSON ¶
func (v *IngressStatus) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
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. Hosts []string `json:"hosts,omitempty"` // SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing. SecretName string `json:"secretName,omitempty"` }
IngressTLS IngressTLS describes the transport layer security associated with an Ingress.
swagger:model IngressTLS
func (IngressTLS) MarshalEasyJSON ¶
func (v IngressTLS) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (IngressTLS) MarshalJSON ¶
func (v IngressTLS) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*IngressTLS) UnmarshalEasyJSON ¶
func (v *IngressTLS) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*IngressTLS) UnmarshalJSON ¶
func (v *IngressTLS) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
Source Files ¶
- http_ingress_path.go
- http_ingress_path_easyjson.go
- http_ingress_rule_value.go
- http_ingress_rule_value_easyjson.go
- ingress.go
- ingress_backend.go
- ingress_backend_easyjson.go
- ingress_easyjson.go
- ingress_list.go
- ingress_list_easyjson.go
- ingress_rule.go
- ingress_rule_easyjson.go
- ingress_spec.go
- ingress_spec_easyjson.go
- ingress_status.go
- ingress_status_easyjson.go
- ingress_tls.go
- ingress_tls_easyjson.go