v1beta1

package
v1.18.0-kw3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 6, 2022 License: Apache-2.0 Imports: 7 Imported by: 0

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 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 '/'. When unspecified, all paths from incoming requests are matched.
	Path string `json:"path,omitempty"`

	// PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is
	//   done on a path element by element basis. A path element refers is the
	//   list of labels in the path split by the '/' separator. A request is a
	//   match for path p if every p is an element-wise prefix of p of the
	//   request path. Note that if the last element of the path is a substring
	//   of the last element in request path, it is not a match (e.g. /foo/bar
	//   matches /foo/bar/baz, but does not match /foo/barbaz).
	// * ImplementationSpecific: Interpretation of the Path matching is up to
	//   the IngressClass. Implementations can treat this as a separate PathType
	//   or treat it identically to Prefix or Exact path types.
	// Implementations are required to support all path types. Defaults to ImplementationSpecific.
	PathType string `json:"pathType,omitempty"`
}

HTTPIngressPath HTTPIngressPath associates a path 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/sig-architecture/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/sig-architecture/api-conventions.md#types-kinds
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/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/sig-architecture/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/sig-architecture/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. DEPRECATED - This group version of Ingress is deprecated by networking.k8s.io/v1beta1 Ingress. See the release notes for more information.

swagger:model Ingress

func (Ingress) MarshalEasyJSON

func (v Ingress) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Ingress) MarshalJSON

func (v Ingress) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Ingress) UnmarshalEasyJSON

func (v *Ingress) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Ingress) UnmarshalJSON

func (v *Ingress) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type IngressBackend

type IngressBackend struct {

	// Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified.
	Resource *api_core_v1.TypedLocalObjectReference `json:"resource,omitempty"`

	// Specifies the name of the referenced service.
	ServiceName string `json:"serviceName,omitempty"`

	// Specifies the port of the referenced service.
	ServicePort *apimachinery_pkg_util_intstr.IntOrString `json:"servicePort,omitempty"`
}

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/sig-architecture/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/sig-architecture/api-conventions.md#types-kinds
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/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 RFC 3986: 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 can be "precise" which is a domain name without the terminating dot of a network host (e.g. "foo.bar.com") or "wildcard", which is a domain name prefixed with a single wildcard label (e.g. "*.foo.com"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == "*"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.
	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"`

	// IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.
	IngressClassName string `json:"ingressClassName,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

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL