v1beta1

package
v1.2.2 Latest Latest
Warning

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

Go to latest
Published: Jan 12, 2022 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthGenerated        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenerated          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenerated = fmt.Errorf("proto: unexpected end of group")
)

Functions

This section is empty.

Types

type HTTPIngressPath

type HTTPIngressPath struct {
	// 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.
	// +optional
	Path *string `protobuf:"bytes,1,opt,name=path" 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 `protobuf:"bytes,3,opt,name=pathType" json:"pathType,omitempty"`
	// Backend defines the referenced service endpoint to which the traffic
	// will be forwarded to.
	Backend              *IngressBackend `protobuf:"bytes,2,opt,name=backend" json:"backend,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.

func (*HTTPIngressPath) Descriptor

func (*HTTPIngressPath) Descriptor() ([]byte, []int)

func (*HTTPIngressPath) GetBackend

func (m *HTTPIngressPath) GetBackend() *IngressBackend

func (*HTTPIngressPath) GetPath

func (m *HTTPIngressPath) GetPath() string

func (*HTTPIngressPath) GetPathType

func (m *HTTPIngressPath) GetPathType() string

func (*HTTPIngressPath) Marshal

func (m *HTTPIngressPath) Marshal() (dAtA []byte, err error)

func (*HTTPIngressPath) MarshalTo

func (m *HTTPIngressPath) MarshalTo(dAtA []byte) (int, error)

func (*HTTPIngressPath) MarshalToSizedBuffer

func (m *HTTPIngressPath) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*HTTPIngressPath) ProtoMessage

func (*HTTPIngressPath) ProtoMessage()

func (*HTTPIngressPath) Reset

func (m *HTTPIngressPath) Reset()

func (*HTTPIngressPath) Size

func (m *HTTPIngressPath) Size() (n int)

func (*HTTPIngressPath) String

func (m *HTTPIngressPath) String() string

func (*HTTPIngressPath) Unmarshal

func (m *HTTPIngressPath) Unmarshal(dAtA []byte) error

func (*HTTPIngressPath) XXX_DiscardUnknown

func (m *HTTPIngressPath) XXX_DiscardUnknown()

func (*HTTPIngressPath) XXX_Marshal

func (m *HTTPIngressPath) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HTTPIngressPath) XXX_Merge

func (m *HTTPIngressPath) XXX_Merge(src proto.Message)

func (*HTTPIngressPath) XXX_Size

func (m *HTTPIngressPath) XXX_Size() int

func (*HTTPIngressPath) XXX_Unmarshal

func (m *HTTPIngressPath) XXX_Unmarshal(b []byte) error

type HTTPIngressRuleValue

type HTTPIngressRuleValue struct {
	// A collection of paths that map requests to backends.
	Paths                []*HTTPIngressPath `protobuf:"bytes,1,rep,name=paths" json:"paths,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

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 '#'.

func (*HTTPIngressRuleValue) Descriptor

func (*HTTPIngressRuleValue) Descriptor() ([]byte, []int)

func (*HTTPIngressRuleValue) GetPaths

func (m *HTTPIngressRuleValue) GetPaths() []*HTTPIngressPath

func (*HTTPIngressRuleValue) Marshal

func (m *HTTPIngressRuleValue) Marshal() (dAtA []byte, err error)

func (*HTTPIngressRuleValue) MarshalTo

func (m *HTTPIngressRuleValue) MarshalTo(dAtA []byte) (int, error)

func (*HTTPIngressRuleValue) MarshalToSizedBuffer

func (m *HTTPIngressRuleValue) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*HTTPIngressRuleValue) ProtoMessage

func (*HTTPIngressRuleValue) ProtoMessage()

func (*HTTPIngressRuleValue) Reset

func (m *HTTPIngressRuleValue) Reset()

func (*HTTPIngressRuleValue) Size

func (m *HTTPIngressRuleValue) Size() (n int)

func (*HTTPIngressRuleValue) String

func (m *HTTPIngressRuleValue) String() string

func (*HTTPIngressRuleValue) Unmarshal

func (m *HTTPIngressRuleValue) Unmarshal(dAtA []byte) error

func (*HTTPIngressRuleValue) XXX_DiscardUnknown

func (m *HTTPIngressRuleValue) XXX_DiscardUnknown()

func (*HTTPIngressRuleValue) XXX_Marshal

func (m *HTTPIngressRuleValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HTTPIngressRuleValue) XXX_Merge

func (m *HTTPIngressRuleValue) XXX_Merge(src proto.Message)

func (*HTTPIngressRuleValue) XXX_Size

func (m *HTTPIngressRuleValue) XXX_Size() int

func (*HTTPIngressRuleValue) XXX_Unmarshal

func (m *HTTPIngressRuleValue) XXX_Unmarshal(b []byte) error

type Ingress

type Ingress struct {
	// Standard object's metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	Metadata *v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" 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
	// +optional
	Spec *IngressSpec `protobuf:"bytes,2,opt,name=spec" 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
	// +optional
	Status               *IngressStatus `protobuf:"bytes,3,opt,name=status" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

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.

func (*Ingress) Descriptor

func (*Ingress) Descriptor() ([]byte, []int)

func (*Ingress) GetMetadata

func (m *Ingress) GetMetadata() *v1.ObjectMeta

func (*Ingress) GetSpec

func (m *Ingress) GetSpec() *IngressSpec

func (*Ingress) GetStatus

func (m *Ingress) GetStatus() *IngressStatus

func (*Ingress) Marshal

func (m *Ingress) Marshal() (dAtA []byte, err error)

func (*Ingress) MarshalTo

func (m *Ingress) MarshalTo(dAtA []byte) (int, error)

func (*Ingress) MarshalToSizedBuffer

func (m *Ingress) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Ingress) ProtoMessage

func (*Ingress) ProtoMessage()

func (*Ingress) Reset

func (m *Ingress) Reset()

func (*Ingress) Size

func (m *Ingress) Size() (n int)

func (*Ingress) String

func (m *Ingress) String() string

func (*Ingress) Unmarshal

func (m *Ingress) Unmarshal(dAtA []byte) error

func (*Ingress) XXX_DiscardUnknown

func (m *Ingress) XXX_DiscardUnknown()

func (*Ingress) XXX_Marshal

func (m *Ingress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Ingress) XXX_Merge

func (m *Ingress) XXX_Merge(src proto.Message)

func (*Ingress) XXX_Size

func (m *Ingress) XXX_Size() int

func (*Ingress) XXX_Unmarshal

func (m *Ingress) XXX_Unmarshal(b []byte) error

type IngressBackend

type IngressBackend struct {
	// Specifies the name of the referenced service.
	// +optional
	ServiceName *string `protobuf:"bytes,1,opt,name=serviceName" json:"serviceName,omitempty"`
	// Specifies the port of the referenced service.
	// +optional
	ServicePort *intstr.IntOrString `protobuf:"bytes,2,opt,name=servicePort" json:"servicePort,omitempty"`
	// 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.
	// +optional
	Resource             *v11.TypedLocalObjectReference `protobuf:"bytes,3,opt,name=resource" json:"resource,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                       `json:"-"`
	XXX_unrecognized     []byte                         `json:"-"`
	XXX_sizecache        int32                          `json:"-"`
}

IngressBackend describes all endpoints for a given service and port.

func (*IngressBackend) Descriptor

func (*IngressBackend) Descriptor() ([]byte, []int)

func (*IngressBackend) GetResource

func (m *IngressBackend) GetResource() *v11.TypedLocalObjectReference

func (*IngressBackend) GetServiceName

func (m *IngressBackend) GetServiceName() string

func (*IngressBackend) GetServicePort

func (m *IngressBackend) GetServicePort() *intstr.IntOrString

func (*IngressBackend) Marshal

func (m *IngressBackend) Marshal() (dAtA []byte, err error)

func (*IngressBackend) MarshalTo

func (m *IngressBackend) MarshalTo(dAtA []byte) (int, error)

func (*IngressBackend) MarshalToSizedBuffer

func (m *IngressBackend) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*IngressBackend) ProtoMessage

func (*IngressBackend) ProtoMessage()

func (*IngressBackend) Reset

func (m *IngressBackend) Reset()

func (*IngressBackend) Size

func (m *IngressBackend) Size() (n int)

func (*IngressBackend) String

func (m *IngressBackend) String() string

func (*IngressBackend) Unmarshal

func (m *IngressBackend) Unmarshal(dAtA []byte) error

func (*IngressBackend) XXX_DiscardUnknown

func (m *IngressBackend) XXX_DiscardUnknown()

func (*IngressBackend) XXX_Marshal

func (m *IngressBackend) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IngressBackend) XXX_Merge

func (m *IngressBackend) XXX_Merge(src proto.Message)

func (*IngressBackend) XXX_Size

func (m *IngressBackend) XXX_Size() int

func (*IngressBackend) XXX_Unmarshal

func (m *IngressBackend) XXX_Unmarshal(b []byte) error

type IngressClass

type IngressClass struct {
	// Standard object's metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	Metadata *v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Spec is the desired state of the IngressClass.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
	// +optional
	Spec                 *IngressClassSpec `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class.

func (*IngressClass) Descriptor

func (*IngressClass) Descriptor() ([]byte, []int)

func (*IngressClass) GetMetadata

func (m *IngressClass) GetMetadata() *v1.ObjectMeta

func (*IngressClass) GetSpec

func (m *IngressClass) GetSpec() *IngressClassSpec

func (*IngressClass) Marshal

func (m *IngressClass) Marshal() (dAtA []byte, err error)

func (*IngressClass) MarshalTo

func (m *IngressClass) MarshalTo(dAtA []byte) (int, error)

func (*IngressClass) MarshalToSizedBuffer

func (m *IngressClass) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*IngressClass) ProtoMessage

func (*IngressClass) ProtoMessage()

func (*IngressClass) Reset

func (m *IngressClass) Reset()

func (*IngressClass) Size

func (m *IngressClass) Size() (n int)

func (*IngressClass) String

func (m *IngressClass) String() string

func (*IngressClass) Unmarshal

func (m *IngressClass) Unmarshal(dAtA []byte) error

func (*IngressClass) XXX_DiscardUnknown

func (m *IngressClass) XXX_DiscardUnknown()

func (*IngressClass) XXX_Marshal

func (m *IngressClass) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IngressClass) XXX_Merge

func (m *IngressClass) XXX_Merge(src proto.Message)

func (*IngressClass) XXX_Size

func (m *IngressClass) XXX_Size() int

func (*IngressClass) XXX_Unmarshal

func (m *IngressClass) XXX_Unmarshal(b []byte) error

type IngressClassList

type IngressClassList struct {
	// Standard list metadata.
	// +optional
	Metadata *v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Items is the list of IngressClasses.
	Items                []*IngressClass `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

IngressClassList is a collection of IngressClasses.

func (*IngressClassList) Descriptor

func (*IngressClassList) Descriptor() ([]byte, []int)

func (*IngressClassList) GetItems

func (m *IngressClassList) GetItems() []*IngressClass

func (*IngressClassList) GetMetadata

func (m *IngressClassList) GetMetadata() *v1.ListMeta

func (*IngressClassList) Marshal

func (m *IngressClassList) Marshal() (dAtA []byte, err error)

func (*IngressClassList) MarshalTo

func (m *IngressClassList) MarshalTo(dAtA []byte) (int, error)

func (*IngressClassList) MarshalToSizedBuffer

func (m *IngressClassList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*IngressClassList) ProtoMessage

func (*IngressClassList) ProtoMessage()

func (*IngressClassList) Reset

func (m *IngressClassList) Reset()

func (*IngressClassList) Size

func (m *IngressClassList) Size() (n int)

func (*IngressClassList) String

func (m *IngressClassList) String() string

func (*IngressClassList) Unmarshal

func (m *IngressClassList) Unmarshal(dAtA []byte) error

func (*IngressClassList) XXX_DiscardUnknown

func (m *IngressClassList) XXX_DiscardUnknown()

func (*IngressClassList) XXX_Marshal

func (m *IngressClassList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IngressClassList) XXX_Merge

func (m *IngressClassList) XXX_Merge(src proto.Message)

func (*IngressClassList) XXX_Size

func (m *IngressClassList) XXX_Size() int

func (*IngressClassList) XXX_Unmarshal

func (m *IngressClassList) XXX_Unmarshal(b []byte) error

type IngressClassSpec

type IngressClassSpec struct {
	// Controller refers to the name of the controller that should handle this
	// class. This allows for different "flavors" that are controlled by the
	// same controller. For example, you may have different Parameters for the
	// same implementing controller. This should be specified as a
	// domain-prefixed path no more than 250 characters in length, e.g.
	// "acme.io/ingress-controller". This field is immutable.
	Controller *string `protobuf:"bytes,1,opt,name=controller" json:"controller,omitempty"`
	// Parameters is a link to a custom resource containing additional
	// configuration for the controller. This is optional if the controller does
	// not require extra parameters.
	// +optional
	Parameters           *v11.TypedLocalObjectReference `protobuf:"bytes,2,opt,name=parameters" json:"parameters,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                       `json:"-"`
	XXX_unrecognized     []byte                         `json:"-"`
	XXX_sizecache        int32                          `json:"-"`
}

IngressClassSpec provides information about the class of an Ingress.

func (*IngressClassSpec) Descriptor

func (*IngressClassSpec) Descriptor() ([]byte, []int)

func (*IngressClassSpec) GetController

func (m *IngressClassSpec) GetController() string

func (*IngressClassSpec) GetParameters

func (m *IngressClassSpec) GetParameters() *v11.TypedLocalObjectReference

func (*IngressClassSpec) Marshal

func (m *IngressClassSpec) Marshal() (dAtA []byte, err error)

func (*IngressClassSpec) MarshalTo

func (m *IngressClassSpec) MarshalTo(dAtA []byte) (int, error)

func (*IngressClassSpec) MarshalToSizedBuffer

func (m *IngressClassSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*IngressClassSpec) ProtoMessage

func (*IngressClassSpec) ProtoMessage()

func (*IngressClassSpec) Reset

func (m *IngressClassSpec) Reset()

func (*IngressClassSpec) Size

func (m *IngressClassSpec) Size() (n int)

func (*IngressClassSpec) String

func (m *IngressClassSpec) String() string

func (*IngressClassSpec) Unmarshal

func (m *IngressClassSpec) Unmarshal(dAtA []byte) error

func (*IngressClassSpec) XXX_DiscardUnknown

func (m *IngressClassSpec) XXX_DiscardUnknown()

func (*IngressClassSpec) XXX_Marshal

func (m *IngressClassSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IngressClassSpec) XXX_Merge

func (m *IngressClassSpec) XXX_Merge(src proto.Message)

func (*IngressClassSpec) XXX_Size

func (m *IngressClassSpec) XXX_Size() int

func (*IngressClassSpec) XXX_Unmarshal

func (m *IngressClassSpec) XXX_Unmarshal(b []byte) error

type IngressList

type IngressList struct {
	// Standard object's metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	Metadata *v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Items is the list of Ingress.
	Items                []*Ingress `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

IngressList is a collection of Ingress.

func (*IngressList) Descriptor

func (*IngressList) Descriptor() ([]byte, []int)

func (*IngressList) GetItems

func (m *IngressList) GetItems() []*Ingress

func (*IngressList) GetMetadata

func (m *IngressList) GetMetadata() *v1.ListMeta

func (*IngressList) Marshal

func (m *IngressList) Marshal() (dAtA []byte, err error)

func (*IngressList) MarshalTo

func (m *IngressList) MarshalTo(dAtA []byte) (int, error)

func (*IngressList) MarshalToSizedBuffer

func (m *IngressList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*IngressList) ProtoMessage

func (*IngressList) ProtoMessage()

func (*IngressList) Reset

func (m *IngressList) Reset()

func (*IngressList) Size

func (m *IngressList) Size() (n int)

func (*IngressList) String

func (m *IngressList) String() string

func (*IngressList) Unmarshal

func (m *IngressList) Unmarshal(dAtA []byte) error

func (*IngressList) XXX_DiscardUnknown

func (m *IngressList) XXX_DiscardUnknown()

func (*IngressList) XXX_Marshal

func (m *IngressList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IngressList) XXX_Merge

func (m *IngressList) XXX_Merge(src proto.Message)

func (*IngressList) XXX_Size

func (m *IngressList) XXX_Size() int

func (*IngressList) XXX_Unmarshal

func (m *IngressList) XXX_Unmarshal(b []byte) error

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.
	// +optional
	Host *string `protobuf:"bytes,1,opt,name=host" json:"host,omitempty"`
	// IngressRuleValue represents a rule to route requests for this IngressRule.
	// If unspecified, the rule defaults to a http catch-all. Whether that sends
	// just traffic matching the host to the default backend or all traffic to the
	// default backend, is left to the controller fulfilling the Ingress. Http is
	// currently the only supported IngressRuleValue.
	// +optional
	IngressRuleValue     *IngressRuleValue `protobuf:"bytes,2,opt,name=ingressRuleValue" json:"ingressRuleValue,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

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.

func (*IngressRule) Descriptor

func (*IngressRule) Descriptor() ([]byte, []int)

func (*IngressRule) GetHost

func (m *IngressRule) GetHost() string

func (*IngressRule) GetIngressRuleValue

func (m *IngressRule) GetIngressRuleValue() *IngressRuleValue

func (*IngressRule) Marshal

func (m *IngressRule) Marshal() (dAtA []byte, err error)

func (*IngressRule) MarshalTo

func (m *IngressRule) MarshalTo(dAtA []byte) (int, error)

func (*IngressRule) MarshalToSizedBuffer

func (m *IngressRule) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*IngressRule) ProtoMessage

func (*IngressRule) ProtoMessage()

func (*IngressRule) Reset

func (m *IngressRule) Reset()

func (*IngressRule) Size

func (m *IngressRule) Size() (n int)

func (*IngressRule) String

func (m *IngressRule) String() string

func (*IngressRule) Unmarshal

func (m *IngressRule) Unmarshal(dAtA []byte) error

func (*IngressRule) XXX_DiscardUnknown

func (m *IngressRule) XXX_DiscardUnknown()

func (*IngressRule) XXX_Marshal

func (m *IngressRule) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IngressRule) XXX_Merge

func (m *IngressRule) XXX_Merge(src proto.Message)

func (*IngressRule) XXX_Size

func (m *IngressRule) XXX_Size() int

func (*IngressRule) XXX_Unmarshal

func (m *IngressRule) XXX_Unmarshal(b []byte) error

type IngressRuleValue

type IngressRuleValue struct {
	// +optional
	Http                 *HTTPIngressRuleValue `protobuf:"bytes,1,opt,name=http" json:"http,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

IngressRuleValue represents a rule to apply against incoming requests. If the rule is satisfied, the request is routed to the specified backend. Currently mixing different types of rules in a single Ingress is disallowed, so exactly one of the following must be set.

func (*IngressRuleValue) Descriptor

func (*IngressRuleValue) Descriptor() ([]byte, []int)

func (*IngressRuleValue) GetHttp

func (m *IngressRuleValue) GetHttp() *HTTPIngressRuleValue

func (*IngressRuleValue) Marshal

func (m *IngressRuleValue) Marshal() (dAtA []byte, err error)

func (*IngressRuleValue) MarshalTo

func (m *IngressRuleValue) MarshalTo(dAtA []byte) (int, error)

func (*IngressRuleValue) MarshalToSizedBuffer

func (m *IngressRuleValue) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*IngressRuleValue) ProtoMessage

func (*IngressRuleValue) ProtoMessage()

func (*IngressRuleValue) Reset

func (m *IngressRuleValue) Reset()

func (*IngressRuleValue) Size

func (m *IngressRuleValue) Size() (n int)

func (*IngressRuleValue) String

func (m *IngressRuleValue) String() string

func (*IngressRuleValue) Unmarshal

func (m *IngressRuleValue) Unmarshal(dAtA []byte) error

func (*IngressRuleValue) XXX_DiscardUnknown

func (m *IngressRuleValue) XXX_DiscardUnknown()

func (*IngressRuleValue) XXX_Marshal

func (m *IngressRuleValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IngressRuleValue) XXX_Merge

func (m *IngressRuleValue) XXX_Merge(src proto.Message)

func (*IngressRuleValue) XXX_Size

func (m *IngressRuleValue) XXX_Size() int

func (*IngressRuleValue) XXX_Unmarshal

func (m *IngressRuleValue) XXX_Unmarshal(b []byte) error

type IngressSpec

type IngressSpec struct {
	// 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.
	// +optional
	IngressClassName *string `protobuf:"bytes,4,opt,name=ingressClassName" json:"ingressClassName,omitempty"`
	// 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.
	// +optional
	Backend *IngressBackend `protobuf:"bytes,1,opt,name=backend" json:"backend,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.
	// +optional
	Tls []*IngressTLS `protobuf:"bytes,2,rep,name=tls" json:"tls,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.
	// +optional
	Rules                []*IngressRule `protobuf:"bytes,3,rep,name=rules" json:"rules,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

IngressSpec describes the Ingress the user wishes to exist.

func (*IngressSpec) Descriptor

func (*IngressSpec) Descriptor() ([]byte, []int)

func (*IngressSpec) GetBackend

func (m *IngressSpec) GetBackend() *IngressBackend

func (*IngressSpec) GetIngressClassName

func (m *IngressSpec) GetIngressClassName() string

func (*IngressSpec) GetRules

func (m *IngressSpec) GetRules() []*IngressRule

func (*IngressSpec) GetTls

func (m *IngressSpec) GetTls() []*IngressTLS

func (*IngressSpec) Marshal

func (m *IngressSpec) Marshal() (dAtA []byte, err error)

func (*IngressSpec) MarshalTo

func (m *IngressSpec) MarshalTo(dAtA []byte) (int, error)

func (*IngressSpec) MarshalToSizedBuffer

func (m *IngressSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*IngressSpec) ProtoMessage

func (*IngressSpec) ProtoMessage()

func (*IngressSpec) Reset

func (m *IngressSpec) Reset()

func (*IngressSpec) Size

func (m *IngressSpec) Size() (n int)

func (*IngressSpec) String

func (m *IngressSpec) String() string

func (*IngressSpec) Unmarshal

func (m *IngressSpec) Unmarshal(dAtA []byte) error

func (*IngressSpec) XXX_DiscardUnknown

func (m *IngressSpec) XXX_DiscardUnknown()

func (*IngressSpec) XXX_Marshal

func (m *IngressSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IngressSpec) XXX_Merge

func (m *IngressSpec) XXX_Merge(src proto.Message)

func (*IngressSpec) XXX_Size

func (m *IngressSpec) XXX_Size() int

func (*IngressSpec) XXX_Unmarshal

func (m *IngressSpec) XXX_Unmarshal(b []byte) error

type IngressStatus

type IngressStatus struct {
	// LoadBalancer contains the current status of the load-balancer.
	// +optional
	LoadBalancer         *v11.LoadBalancerStatus `protobuf:"bytes,1,opt,name=loadBalancer" json:"loadBalancer,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

IngressStatus describe the current state of the Ingress.

func (*IngressStatus) Descriptor

func (*IngressStatus) Descriptor() ([]byte, []int)

func (*IngressStatus) GetLoadBalancer

func (m *IngressStatus) GetLoadBalancer() *v11.LoadBalancerStatus

func (*IngressStatus) Marshal

func (m *IngressStatus) Marshal() (dAtA []byte, err error)

func (*IngressStatus) MarshalTo

func (m *IngressStatus) MarshalTo(dAtA []byte) (int, error)

func (*IngressStatus) MarshalToSizedBuffer

func (m *IngressStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*IngressStatus) ProtoMessage

func (*IngressStatus) ProtoMessage()

func (*IngressStatus) Reset

func (m *IngressStatus) Reset()

func (*IngressStatus) Size

func (m *IngressStatus) Size() (n int)

func (*IngressStatus) String

func (m *IngressStatus) String() string

func (*IngressStatus) Unmarshal

func (m *IngressStatus) Unmarshal(dAtA []byte) error

func (*IngressStatus) XXX_DiscardUnknown

func (m *IngressStatus) XXX_DiscardUnknown()

func (*IngressStatus) XXX_Marshal

func (m *IngressStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IngressStatus) XXX_Merge

func (m *IngressStatus) XXX_Merge(src proto.Message)

func (*IngressStatus) XXX_Size

func (m *IngressStatus) XXX_Size() int

func (*IngressStatus) XXX_Unmarshal

func (m *IngressStatus) XXX_Unmarshal(b []byte) error

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 `protobuf:"bytes,1,rep,name=hosts" json:"hosts,omitempty"`
	// SecretName is the name of the secret used to terminate TLS traffic on
	// port 443. Field is left optional to allow TLS 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.
	// +optional
	SecretName           *string  `protobuf:"bytes,2,opt,name=secretName" json:"secretName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

IngressTLS describes the transport layer security associated with an Ingress.

func (*IngressTLS) Descriptor

func (*IngressTLS) Descriptor() ([]byte, []int)

func (*IngressTLS) GetHosts

func (m *IngressTLS) GetHosts() []string

func (*IngressTLS) GetSecretName

func (m *IngressTLS) GetSecretName() string

func (*IngressTLS) Marshal

func (m *IngressTLS) Marshal() (dAtA []byte, err error)

func (*IngressTLS) MarshalTo

func (m *IngressTLS) MarshalTo(dAtA []byte) (int, error)

func (*IngressTLS) MarshalToSizedBuffer

func (m *IngressTLS) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*IngressTLS) ProtoMessage

func (*IngressTLS) ProtoMessage()

func (*IngressTLS) Reset

func (m *IngressTLS) Reset()

func (*IngressTLS) Size

func (m *IngressTLS) Size() (n int)

func (*IngressTLS) String

func (m *IngressTLS) String() string

func (*IngressTLS) Unmarshal

func (m *IngressTLS) Unmarshal(dAtA []byte) error

func (*IngressTLS) XXX_DiscardUnknown

func (m *IngressTLS) XXX_DiscardUnknown()

func (*IngressTLS) XXX_Marshal

func (m *IngressTLS) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IngressTLS) XXX_Merge

func (m *IngressTLS) XXX_Merge(src proto.Message)

func (*IngressTLS) XXX_Size

func (m *IngressTLS) XXX_Size() int

func (*IngressTLS) XXX_Unmarshal

func (m *IngressTLS) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

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