v1

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: 11 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 added in v1.2.2

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.
	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 added in v1.2.2

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

func (*HTTPIngressPath) GetBackend added in v1.2.2

func (m *HTTPIngressPath) GetBackend() *IngressBackend

func (*HTTPIngressPath) GetPath added in v1.2.2

func (m *HTTPIngressPath) GetPath() string

func (*HTTPIngressPath) GetPathType added in v1.2.2

func (m *HTTPIngressPath) GetPathType() string

func (*HTTPIngressPath) Marshal added in v1.2.2

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

func (*HTTPIngressPath) MarshalTo added in v1.2.2

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

func (*HTTPIngressPath) MarshalToSizedBuffer added in v1.2.2

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

func (*HTTPIngressPath) ProtoMessage added in v1.2.2

func (*HTTPIngressPath) ProtoMessage()

func (*HTTPIngressPath) Reset added in v1.2.2

func (m *HTTPIngressPath) Reset()

func (*HTTPIngressPath) Size added in v1.2.2

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

func (*HTTPIngressPath) String added in v1.2.2

func (m *HTTPIngressPath) String() string

func (*HTTPIngressPath) Unmarshal added in v1.2.2

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

func (*HTTPIngressPath) XXX_DiscardUnknown added in v1.2.2

func (m *HTTPIngressPath) XXX_DiscardUnknown()

func (*HTTPIngressPath) XXX_Marshal added in v1.2.2

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

func (*HTTPIngressPath) XXX_Merge added in v1.2.2

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

func (*HTTPIngressPath) XXX_Size added in v1.2.2

func (m *HTTPIngressPath) XXX_Size() int

func (*HTTPIngressPath) XXX_Unmarshal added in v1.2.2

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

type HTTPIngressRuleValue added in v1.2.2

type HTTPIngressRuleValue struct {
	// A collection of paths that map requests to backends.
	// +listType=atomic
	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 added in v1.2.2

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

func (*HTTPIngressRuleValue) GetPaths added in v1.2.2

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

func (*HTTPIngressRuleValue) Marshal added in v1.2.2

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

func (*HTTPIngressRuleValue) MarshalTo added in v1.2.2

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

func (*HTTPIngressRuleValue) MarshalToSizedBuffer added in v1.2.2

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

func (*HTTPIngressRuleValue) ProtoMessage added in v1.2.2

func (*HTTPIngressRuleValue) ProtoMessage()

func (*HTTPIngressRuleValue) Reset added in v1.2.2

func (m *HTTPIngressRuleValue) Reset()

func (*HTTPIngressRuleValue) Size added in v1.2.2

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

func (*HTTPIngressRuleValue) String added in v1.2.2

func (m *HTTPIngressRuleValue) String() string

func (*HTTPIngressRuleValue) Unmarshal added in v1.2.2

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

func (*HTTPIngressRuleValue) XXX_DiscardUnknown added in v1.2.2

func (m *HTTPIngressRuleValue) XXX_DiscardUnknown()

func (*HTTPIngressRuleValue) XXX_Marshal added in v1.2.2

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

func (*HTTPIngressRuleValue) XXX_Merge added in v1.2.2

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

func (*HTTPIngressRuleValue) XXX_Size added in v1.2.2

func (m *HTTPIngressRuleValue) XXX_Size() int

func (*HTTPIngressRuleValue) XXX_Unmarshal added in v1.2.2

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

type IPBlock

type IPBlock struct {
	// CIDR is a string representing the IP Block
	// Valid examples are "192.168.1.1/24" or "2001:db9::/64"
	Cidr *string `protobuf:"bytes,1,opt,name=cidr" json:"cidr,omitempty"`
	// Except is a slice of CIDRs that should not be included within an IP Block
	// Valid examples are "192.168.1.1/24" or "2001:db9::/64"
	// Except values will be rejected if they are outside the CIDR range
	// +optional
	Except               []string `protobuf:"bytes,2,rep,name=except" json:"except,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

IPBlock describes a particular CIDR (Ex. "192.168.1.1/24","2001:db9::/64") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.

func (*IPBlock) Descriptor

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

func (*IPBlock) GetCidr

func (m *IPBlock) GetCidr() string

func (*IPBlock) GetExcept

func (m *IPBlock) GetExcept() []string

func (*IPBlock) Marshal

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

func (*IPBlock) MarshalTo

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

func (*IPBlock) MarshalToSizedBuffer added in v1.2.1

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

func (*IPBlock) ProtoMessage

func (*IPBlock) ProtoMessage()

func (*IPBlock) Reset

func (m *IPBlock) Reset()

func (*IPBlock) Size

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

func (*IPBlock) String

func (m *IPBlock) String() string

func (*IPBlock) Unmarshal

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

func (*IPBlock) XXX_DiscardUnknown added in v1.2.1

func (m *IPBlock) XXX_DiscardUnknown()

func (*IPBlock) XXX_Marshal added in v1.2.1

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

func (*IPBlock) XXX_Merge added in v1.2.1

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

func (*IPBlock) XXX_Size added in v1.2.1

func (m *IPBlock) XXX_Size() int

func (*IPBlock) XXX_Unmarshal added in v1.2.1

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

type Ingress added in v1.2.2

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 added in v1.2.2

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

func (*Ingress) GetMetadata added in v1.2.2

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

func (*Ingress) GetSpec added in v1.2.2

func (m *Ingress) GetSpec() *IngressSpec

func (*Ingress) GetStatus added in v1.2.2

func (m *Ingress) GetStatus() *IngressStatus

func (*Ingress) Marshal added in v1.2.2

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

func (*Ingress) MarshalTo added in v1.2.2

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

func (*Ingress) MarshalToSizedBuffer added in v1.2.2

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

func (*Ingress) ProtoMessage added in v1.2.2

func (*Ingress) ProtoMessage()

func (*Ingress) Reset added in v1.2.2

func (m *Ingress) Reset()

func (*Ingress) Size added in v1.2.2

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

func (*Ingress) String added in v1.2.2

func (m *Ingress) String() string

func (*Ingress) Unmarshal added in v1.2.2

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

func (*Ingress) XXX_DiscardUnknown added in v1.2.2

func (m *Ingress) XXX_DiscardUnknown()

func (*Ingress) XXX_Marshal added in v1.2.2

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

func (*Ingress) XXX_Merge added in v1.2.2

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

func (*Ingress) XXX_Size added in v1.2.2

func (m *Ingress) XXX_Size() int

func (*Ingress) XXX_Unmarshal added in v1.2.2

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

type IngressBackend added in v1.2.2

type IngressBackend struct {
	// Service references a Service as a Backend.
	// This is a mutually exclusive setting with "Resource".
	// +optional
	Service *IngressServiceBackend `protobuf:"bytes,4,opt,name=service" json:"service,omitempty"`
	// Resource is an ObjectRef to another Kubernetes resource in the namespace
	// of the Ingress object. If resource is specified, a service.Name and
	// service.Port must not be specified.
	// This is a mutually exclusive setting with "Service".
	// +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 added in v1.2.2

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

func (*IngressBackend) GetResource added in v1.2.2

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

func (*IngressBackend) GetService added in v1.2.2

func (m *IngressBackend) GetService() *IngressServiceBackend

func (*IngressBackend) Marshal added in v1.2.2

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

func (*IngressBackend) MarshalTo added in v1.2.2

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

func (*IngressBackend) MarshalToSizedBuffer added in v1.2.2

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

func (*IngressBackend) ProtoMessage added in v1.2.2

func (*IngressBackend) ProtoMessage()

func (*IngressBackend) Reset added in v1.2.2

func (m *IngressBackend) Reset()

func (*IngressBackend) Size added in v1.2.2

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

func (*IngressBackend) String added in v1.2.2

func (m *IngressBackend) String() string

func (*IngressBackend) Unmarshal added in v1.2.2

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

func (*IngressBackend) XXX_DiscardUnknown added in v1.2.2

func (m *IngressBackend) XXX_DiscardUnknown()

func (*IngressBackend) XXX_Marshal added in v1.2.2

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

func (*IngressBackend) XXX_Merge added in v1.2.2

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

func (*IngressBackend) XXX_Size added in v1.2.2

func (m *IngressBackend) XXX_Size() int

func (*IngressBackend) XXX_Unmarshal added in v1.2.2

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

type IngressClass added in v1.2.2

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 added in v1.2.2

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

func (*IngressClass) GetMetadata added in v1.2.2

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

func (*IngressClass) GetSpec added in v1.2.2

func (m *IngressClass) GetSpec() *IngressClassSpec

func (*IngressClass) Marshal added in v1.2.2

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

func (*IngressClass) MarshalTo added in v1.2.2

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

func (*IngressClass) MarshalToSizedBuffer added in v1.2.2

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

func (*IngressClass) ProtoMessage added in v1.2.2

func (*IngressClass) ProtoMessage()

func (*IngressClass) Reset added in v1.2.2

func (m *IngressClass) Reset()

func (*IngressClass) Size added in v1.2.2

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

func (*IngressClass) String added in v1.2.2

func (m *IngressClass) String() string

func (*IngressClass) Unmarshal added in v1.2.2

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

func (*IngressClass) XXX_DiscardUnknown added in v1.2.2

func (m *IngressClass) XXX_DiscardUnknown()

func (*IngressClass) XXX_Marshal added in v1.2.2

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

func (*IngressClass) XXX_Merge added in v1.2.2

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

func (*IngressClass) XXX_Size added in v1.2.2

func (m *IngressClass) XXX_Size() int

func (*IngressClass) XXX_Unmarshal added in v1.2.2

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

type IngressClassList added in v1.2.2

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 added in v1.2.2

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

func (*IngressClassList) GetItems added in v1.2.2

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

func (*IngressClassList) GetMetadata added in v1.2.2

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

func (*IngressClassList) Marshal added in v1.2.2

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

func (*IngressClassList) MarshalTo added in v1.2.2

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

func (*IngressClassList) MarshalToSizedBuffer added in v1.2.2

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

func (*IngressClassList) ProtoMessage added in v1.2.2

func (*IngressClassList) ProtoMessage()

func (*IngressClassList) Reset added in v1.2.2

func (m *IngressClassList) Reset()

func (*IngressClassList) Size added in v1.2.2

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

func (*IngressClassList) String added in v1.2.2

func (m *IngressClassList) String() string

func (*IngressClassList) Unmarshal added in v1.2.2

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

func (*IngressClassList) XXX_DiscardUnknown added in v1.2.2

func (m *IngressClassList) XXX_DiscardUnknown()

func (*IngressClassList) XXX_Marshal added in v1.2.2

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

func (*IngressClassList) XXX_Merge added in v1.2.2

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

func (*IngressClassList) XXX_Size added in v1.2.2

func (m *IngressClassList) XXX_Size() int

func (*IngressClassList) XXX_Unmarshal added in v1.2.2

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

type IngressClassSpec added in v1.2.2

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 added in v1.2.2

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

func (*IngressClassSpec) GetController added in v1.2.2

func (m *IngressClassSpec) GetController() string

func (*IngressClassSpec) GetParameters added in v1.2.2

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

func (*IngressClassSpec) Marshal added in v1.2.2

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

func (*IngressClassSpec) MarshalTo added in v1.2.2

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

func (*IngressClassSpec) MarshalToSizedBuffer added in v1.2.2

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

func (*IngressClassSpec) ProtoMessage added in v1.2.2

func (*IngressClassSpec) ProtoMessage()

func (*IngressClassSpec) Reset added in v1.2.2

func (m *IngressClassSpec) Reset()

func (*IngressClassSpec) Size added in v1.2.2

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

func (*IngressClassSpec) String added in v1.2.2

func (m *IngressClassSpec) String() string

func (*IngressClassSpec) Unmarshal added in v1.2.2

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

func (*IngressClassSpec) XXX_DiscardUnknown added in v1.2.2

func (m *IngressClassSpec) XXX_DiscardUnknown()

func (*IngressClassSpec) XXX_Marshal added in v1.2.2

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

func (*IngressClassSpec) XXX_Merge added in v1.2.2

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

func (*IngressClassSpec) XXX_Size added in v1.2.2

func (m *IngressClassSpec) XXX_Size() int

func (*IngressClassSpec) XXX_Unmarshal added in v1.2.2

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

type IngressList added in v1.2.2

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 added in v1.2.2

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

func (*IngressList) GetItems added in v1.2.2

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

func (*IngressList) GetMetadata added in v1.2.2

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

func (*IngressList) Marshal added in v1.2.2

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

func (*IngressList) MarshalTo added in v1.2.2

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

func (*IngressList) MarshalToSizedBuffer added in v1.2.2

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

func (*IngressList) ProtoMessage added in v1.2.2

func (*IngressList) ProtoMessage()

func (*IngressList) Reset added in v1.2.2

func (m *IngressList) Reset()

func (*IngressList) Size added in v1.2.2

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

func (*IngressList) String added in v1.2.2

func (m *IngressList) String() string

func (*IngressList) Unmarshal added in v1.2.2

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

func (*IngressList) XXX_DiscardUnknown added in v1.2.2

func (m *IngressList) XXX_DiscardUnknown()

func (*IngressList) XXX_Marshal added in v1.2.2

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

func (*IngressList) XXX_Merge added in v1.2.2

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

func (*IngressList) XXX_Size added in v1.2.2

func (m *IngressList) XXX_Size() int

func (*IngressList) XXX_Unmarshal added in v1.2.2

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

type IngressRule added in v1.2.2

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 added in v1.2.2

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

func (*IngressRule) GetHost added in v1.2.2

func (m *IngressRule) GetHost() string

func (*IngressRule) GetIngressRuleValue added in v1.2.2

func (m *IngressRule) GetIngressRuleValue() *IngressRuleValue

func (*IngressRule) Marshal added in v1.2.2

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

func (*IngressRule) MarshalTo added in v1.2.2

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

func (*IngressRule) MarshalToSizedBuffer added in v1.2.2

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

func (*IngressRule) ProtoMessage added in v1.2.2

func (*IngressRule) ProtoMessage()

func (*IngressRule) Reset added in v1.2.2

func (m *IngressRule) Reset()

func (*IngressRule) Size added in v1.2.2

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

func (*IngressRule) String added in v1.2.2

func (m *IngressRule) String() string

func (*IngressRule) Unmarshal added in v1.2.2

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

func (*IngressRule) XXX_DiscardUnknown added in v1.2.2

func (m *IngressRule) XXX_DiscardUnknown()

func (*IngressRule) XXX_Marshal added in v1.2.2

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

func (*IngressRule) XXX_Merge added in v1.2.2

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

func (*IngressRule) XXX_Size added in v1.2.2

func (m *IngressRule) XXX_Size() int

func (*IngressRule) XXX_Unmarshal added in v1.2.2

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

type IngressRuleValue added in v1.2.2

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 added in v1.2.2

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

func (*IngressRuleValue) GetHttp added in v1.2.2

func (m *IngressRuleValue) GetHttp() *HTTPIngressRuleValue

func (*IngressRuleValue) Marshal added in v1.2.2

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

func (*IngressRuleValue) MarshalTo added in v1.2.2

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

func (*IngressRuleValue) MarshalToSizedBuffer added in v1.2.2

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

func (*IngressRuleValue) ProtoMessage added in v1.2.2

func (*IngressRuleValue) ProtoMessage()

func (*IngressRuleValue) Reset added in v1.2.2

func (m *IngressRuleValue) Reset()

func (*IngressRuleValue) Size added in v1.2.2

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

func (*IngressRuleValue) String added in v1.2.2

func (m *IngressRuleValue) String() string

func (*IngressRuleValue) Unmarshal added in v1.2.2

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

func (*IngressRuleValue) XXX_DiscardUnknown added in v1.2.2

func (m *IngressRuleValue) XXX_DiscardUnknown()

func (*IngressRuleValue) XXX_Marshal added in v1.2.2

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

func (*IngressRuleValue) XXX_Merge added in v1.2.2

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

func (*IngressRuleValue) XXX_Size added in v1.2.2

func (m *IngressRuleValue) XXX_Size() int

func (*IngressRuleValue) XXX_Unmarshal added in v1.2.2

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

type IngressServiceBackend added in v1.2.2

type IngressServiceBackend struct {
	// Name is the referenced service. The service must exist in
	// the same namespace as the Ingress object.
	Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// Port of the referenced service. A port name or port number
	// is required for a IngressServiceBackend.
	Port                 *ServiceBackendPort `protobuf:"bytes,2,opt,name=port" json:"port,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

IngressServiceBackend references a Kubernetes Service as a Backend.

func (*IngressServiceBackend) Descriptor added in v1.2.2

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

func (*IngressServiceBackend) GetName added in v1.2.2

func (m *IngressServiceBackend) GetName() string

func (*IngressServiceBackend) GetPort added in v1.2.2

func (*IngressServiceBackend) Marshal added in v1.2.2

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

func (*IngressServiceBackend) MarshalTo added in v1.2.2

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

func (*IngressServiceBackend) MarshalToSizedBuffer added in v1.2.2

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

func (*IngressServiceBackend) ProtoMessage added in v1.2.2

func (*IngressServiceBackend) ProtoMessage()

func (*IngressServiceBackend) Reset added in v1.2.2

func (m *IngressServiceBackend) Reset()

func (*IngressServiceBackend) Size added in v1.2.2

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

func (*IngressServiceBackend) String added in v1.2.2

func (m *IngressServiceBackend) String() string

func (*IngressServiceBackend) Unmarshal added in v1.2.2

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

func (*IngressServiceBackend) XXX_DiscardUnknown added in v1.2.2

func (m *IngressServiceBackend) XXX_DiscardUnknown()

func (*IngressServiceBackend) XXX_Marshal added in v1.2.2

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

func (*IngressServiceBackend) XXX_Merge added in v1.2.2

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

func (*IngressServiceBackend) XXX_Size added in v1.2.2

func (m *IngressServiceBackend) XXX_Size() int

func (*IngressServiceBackend) XXX_Unmarshal added in v1.2.2

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

type IngressSpec added in v1.2.2

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"`
	// DefaultBackend is the backend that should handle requests that don't
	// match any rule. If Rules are not specified, DefaultBackend must be specified.
	// If DefaultBackend is not set, the handling of requests that do not match any
	// of the rules will be up to the Ingress controller.
	// +optional
	DefaultBackend *IngressBackend `protobuf:"bytes,1,opt,name=defaultBackend" json:"defaultBackend,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.
	// +listType=atomic
	// +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.
	// +listType=atomic
	// +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 added in v1.2.2

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

func (*IngressSpec) GetDefaultBackend added in v1.2.2

func (m *IngressSpec) GetDefaultBackend() *IngressBackend

func (*IngressSpec) GetIngressClassName added in v1.2.2

func (m *IngressSpec) GetIngressClassName() string

func (*IngressSpec) GetRules added in v1.2.2

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

func (*IngressSpec) GetTls added in v1.2.2

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

func (*IngressSpec) Marshal added in v1.2.2

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

func (*IngressSpec) MarshalTo added in v1.2.2

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

func (*IngressSpec) MarshalToSizedBuffer added in v1.2.2

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

func (*IngressSpec) ProtoMessage added in v1.2.2

func (*IngressSpec) ProtoMessage()

func (*IngressSpec) Reset added in v1.2.2

func (m *IngressSpec) Reset()

func (*IngressSpec) Size added in v1.2.2

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

func (*IngressSpec) String added in v1.2.2

func (m *IngressSpec) String() string

func (*IngressSpec) Unmarshal added in v1.2.2

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

func (*IngressSpec) XXX_DiscardUnknown added in v1.2.2

func (m *IngressSpec) XXX_DiscardUnknown()

func (*IngressSpec) XXX_Marshal added in v1.2.2

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

func (*IngressSpec) XXX_Merge added in v1.2.2

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

func (*IngressSpec) XXX_Size added in v1.2.2

func (m *IngressSpec) XXX_Size() int

func (*IngressSpec) XXX_Unmarshal added in v1.2.2

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

type IngressStatus added in v1.2.2

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 added in v1.2.2

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

func (*IngressStatus) GetLoadBalancer added in v1.2.2

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

func (*IngressStatus) Marshal added in v1.2.2

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

func (*IngressStatus) MarshalTo added in v1.2.2

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

func (*IngressStatus) MarshalToSizedBuffer added in v1.2.2

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

func (*IngressStatus) ProtoMessage added in v1.2.2

func (*IngressStatus) ProtoMessage()

func (*IngressStatus) Reset added in v1.2.2

func (m *IngressStatus) Reset()

func (*IngressStatus) Size added in v1.2.2

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

func (*IngressStatus) String added in v1.2.2

func (m *IngressStatus) String() string

func (*IngressStatus) Unmarshal added in v1.2.2

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

func (*IngressStatus) XXX_DiscardUnknown added in v1.2.2

func (m *IngressStatus) XXX_DiscardUnknown()

func (*IngressStatus) XXX_Marshal added in v1.2.2

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

func (*IngressStatus) XXX_Merge added in v1.2.2

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

func (*IngressStatus) XXX_Size added in v1.2.2

func (m *IngressStatus) XXX_Size() int

func (*IngressStatus) XXX_Unmarshal added in v1.2.2

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

type IngressTLS added in v1.2.2

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.
	// +listType=atomic
	// +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 added in v1.2.2

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

func (*IngressTLS) GetHosts added in v1.2.2

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

func (*IngressTLS) GetSecretName added in v1.2.2

func (m *IngressTLS) GetSecretName() string

func (*IngressTLS) Marshal added in v1.2.2

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

func (*IngressTLS) MarshalTo added in v1.2.2

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

func (*IngressTLS) MarshalToSizedBuffer added in v1.2.2

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

func (*IngressTLS) ProtoMessage added in v1.2.2

func (*IngressTLS) ProtoMessage()

func (*IngressTLS) Reset added in v1.2.2

func (m *IngressTLS) Reset()

func (*IngressTLS) Size added in v1.2.2

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

func (*IngressTLS) String added in v1.2.2

func (m *IngressTLS) String() string

func (*IngressTLS) Unmarshal added in v1.2.2

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

func (*IngressTLS) XXX_DiscardUnknown added in v1.2.2

func (m *IngressTLS) XXX_DiscardUnknown()

func (*IngressTLS) XXX_Marshal added in v1.2.2

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

func (*IngressTLS) XXX_Merge added in v1.2.2

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

func (*IngressTLS) XXX_Size added in v1.2.2

func (m *IngressTLS) XXX_Size() int

func (*IngressTLS) XXX_Unmarshal added in v1.2.2

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

type NetworkPolicy

type NetworkPolicy 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"`
	// Specification of the desired behavior for this NetworkPolicy.
	// +optional
	Spec                 *NetworkPolicySpec `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

NetworkPolicy describes what network traffic is allowed for a set of Pods

func (*NetworkPolicy) Descriptor

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

func (*NetworkPolicy) GetMetadata

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

func (*NetworkPolicy) GetSpec

func (m *NetworkPolicy) GetSpec() *NetworkPolicySpec

func (*NetworkPolicy) Marshal

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

func (*NetworkPolicy) MarshalTo

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

func (*NetworkPolicy) MarshalToSizedBuffer added in v1.2.1

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

func (*NetworkPolicy) ProtoMessage

func (*NetworkPolicy) ProtoMessage()

func (*NetworkPolicy) Reset

func (m *NetworkPolicy) Reset()

func (*NetworkPolicy) Size

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

func (*NetworkPolicy) String

func (m *NetworkPolicy) String() string

func (*NetworkPolicy) Unmarshal

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

func (*NetworkPolicy) XXX_DiscardUnknown added in v1.2.1

func (m *NetworkPolicy) XXX_DiscardUnknown()

func (*NetworkPolicy) XXX_Marshal added in v1.2.1

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

func (*NetworkPolicy) XXX_Merge added in v1.2.1

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

func (*NetworkPolicy) XXX_Size added in v1.2.1

func (m *NetworkPolicy) XXX_Size() int

func (*NetworkPolicy) XXX_Unmarshal added in v1.2.1

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

type NetworkPolicyEgressRule

type NetworkPolicyEgressRule struct {
	// List of destination ports for outgoing traffic.
	// Each item in this list is combined using a logical OR. If this field is
	// empty or missing, this rule matches all ports (traffic not restricted by port).
	// If this field is present and contains at least one item, then this rule allows
	// traffic only if the traffic matches at least one port in the list.
	// +optional
	Ports []*NetworkPolicyPort `protobuf:"bytes,1,rep,name=ports" json:"ports,omitempty"`
	// List of destinations for outgoing traffic of pods selected for this rule.
	// Items in this list are combined using a logical OR operation. If this field is
	// empty or missing, this rule matches all destinations (traffic not restricted by
	// destination). If this field is present and contains at least one item, this rule
	// allows traffic only if the traffic matches at least one item in the to list.
	// +optional
	To                   []*NetworkPolicyPeer `protobuf:"bytes,2,rep,name=to" json:"to,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8

func (*NetworkPolicyEgressRule) Descriptor

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

func (*NetworkPolicyEgressRule) GetPorts

func (m *NetworkPolicyEgressRule) GetPorts() []*NetworkPolicyPort

func (*NetworkPolicyEgressRule) GetTo

func (*NetworkPolicyEgressRule) Marshal

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

func (*NetworkPolicyEgressRule) MarshalTo

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

func (*NetworkPolicyEgressRule) MarshalToSizedBuffer added in v1.2.1

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

func (*NetworkPolicyEgressRule) ProtoMessage

func (*NetworkPolicyEgressRule) ProtoMessage()

func (*NetworkPolicyEgressRule) Reset

func (m *NetworkPolicyEgressRule) Reset()

func (*NetworkPolicyEgressRule) Size

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

func (*NetworkPolicyEgressRule) String

func (m *NetworkPolicyEgressRule) String() string

func (*NetworkPolicyEgressRule) Unmarshal

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

func (*NetworkPolicyEgressRule) XXX_DiscardUnknown added in v1.2.1

func (m *NetworkPolicyEgressRule) XXX_DiscardUnknown()

func (*NetworkPolicyEgressRule) XXX_Marshal added in v1.2.1

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

func (*NetworkPolicyEgressRule) XXX_Merge added in v1.2.1

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

func (*NetworkPolicyEgressRule) XXX_Size added in v1.2.1

func (m *NetworkPolicyEgressRule) XXX_Size() int

func (*NetworkPolicyEgressRule) XXX_Unmarshal added in v1.2.1

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

type NetworkPolicyIngressRule

type NetworkPolicyIngressRule struct {
	// List of ports which should be made accessible on the pods selected for this
	// rule. Each item in this list is combined using a logical OR. If this field is
	// empty or missing, this rule matches all ports (traffic not restricted by port).
	// If this field is present and contains at least one item, then this rule allows
	// traffic only if the traffic matches at least one port in the list.
	// +optional
	Ports []*NetworkPolicyPort `protobuf:"bytes,1,rep,name=ports" json:"ports,omitempty"`
	// List of sources which should be able to access the pods selected for this rule.
	// Items in this list are combined using a logical OR operation. If this field is
	// empty or missing, this rule matches all sources (traffic not restricted by
	// source). If this field is present and contains at least one item, this rule
	// allows traffic only if the traffic matches at least one item in the from list.
	// +optional
	From                 []*NetworkPolicyPeer `protobuf:"bytes,2,rep,name=from" json:"from,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.

func (*NetworkPolicyIngressRule) Descriptor

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

func (*NetworkPolicyIngressRule) GetFrom

func (*NetworkPolicyIngressRule) GetPorts

func (*NetworkPolicyIngressRule) Marshal

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

func (*NetworkPolicyIngressRule) MarshalTo

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

func (*NetworkPolicyIngressRule) MarshalToSizedBuffer added in v1.2.1

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

func (*NetworkPolicyIngressRule) ProtoMessage

func (*NetworkPolicyIngressRule) ProtoMessage()

func (*NetworkPolicyIngressRule) Reset

func (m *NetworkPolicyIngressRule) Reset()

func (*NetworkPolicyIngressRule) Size

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

func (*NetworkPolicyIngressRule) String

func (m *NetworkPolicyIngressRule) String() string

func (*NetworkPolicyIngressRule) Unmarshal

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

func (*NetworkPolicyIngressRule) XXX_DiscardUnknown added in v1.2.1

func (m *NetworkPolicyIngressRule) XXX_DiscardUnknown()

func (*NetworkPolicyIngressRule) XXX_Marshal added in v1.2.1

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

func (*NetworkPolicyIngressRule) XXX_Merge added in v1.2.1

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

func (*NetworkPolicyIngressRule) XXX_Size added in v1.2.1

func (m *NetworkPolicyIngressRule) XXX_Size() int

func (*NetworkPolicyIngressRule) XXX_Unmarshal added in v1.2.1

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

type NetworkPolicyList

type NetworkPolicyList struct {
	// Standard list 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 a list of schema objects.
	Items                []*NetworkPolicy `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

NetworkPolicyList is a list of NetworkPolicy objects.

func (*NetworkPolicyList) Descriptor

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

func (*NetworkPolicyList) GetItems

func (m *NetworkPolicyList) GetItems() []*NetworkPolicy

func (*NetworkPolicyList) GetMetadata

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

func (*NetworkPolicyList) Marshal

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

func (*NetworkPolicyList) MarshalTo

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

func (*NetworkPolicyList) MarshalToSizedBuffer added in v1.2.1

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

func (*NetworkPolicyList) ProtoMessage

func (*NetworkPolicyList) ProtoMessage()

func (*NetworkPolicyList) Reset

func (m *NetworkPolicyList) Reset()

func (*NetworkPolicyList) Size

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

func (*NetworkPolicyList) String

func (m *NetworkPolicyList) String() string

func (*NetworkPolicyList) Unmarshal

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

func (*NetworkPolicyList) XXX_DiscardUnknown added in v1.2.1

func (m *NetworkPolicyList) XXX_DiscardUnknown()

func (*NetworkPolicyList) XXX_Marshal added in v1.2.1

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

func (*NetworkPolicyList) XXX_Merge added in v1.2.1

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

func (*NetworkPolicyList) XXX_Size added in v1.2.1

func (m *NetworkPolicyList) XXX_Size() int

func (*NetworkPolicyList) XXX_Unmarshal added in v1.2.1

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

type NetworkPolicyPeer

type NetworkPolicyPeer struct {
	// This is a label selector which selects Pods. This field follows standard label
	// selector semantics; if present but empty, it selects all pods.
	//
	// If NamespaceSelector is also set, then the NetworkPolicyPeer as a whole selects
	// the Pods matching PodSelector in the Namespaces selected by NamespaceSelector.
	// Otherwise it selects the Pods matching PodSelector in the policy's own Namespace.
	// +optional
	PodSelector *v1.LabelSelector `protobuf:"bytes,1,opt,name=podSelector" json:"podSelector,omitempty"`
	// Selects Namespaces using cluster-scoped labels. This field follows standard label
	// selector semantics; if present but empty, it selects all namespaces.
	//
	// If PodSelector is also set, then the NetworkPolicyPeer as a whole selects
	// the Pods matching PodSelector in the Namespaces selected by NamespaceSelector.
	// Otherwise it selects all Pods in the Namespaces selected by NamespaceSelector.
	// +optional
	NamespaceSelector *v1.LabelSelector `protobuf:"bytes,2,opt,name=namespaceSelector" json:"namespaceSelector,omitempty"`
	// IPBlock defines policy on a particular IPBlock. If this field is set then
	// neither of the other fields can be.
	// +optional
	IpBlock              *IPBlock `protobuf:"bytes,3,opt,name=ipBlock" json:"ipBlock,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed

func (*NetworkPolicyPeer) Descriptor

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

func (*NetworkPolicyPeer) GetIpBlock

func (m *NetworkPolicyPeer) GetIpBlock() *IPBlock

func (*NetworkPolicyPeer) GetNamespaceSelector

func (m *NetworkPolicyPeer) GetNamespaceSelector() *v1.LabelSelector

func (*NetworkPolicyPeer) GetPodSelector

func (m *NetworkPolicyPeer) GetPodSelector() *v1.LabelSelector

func (*NetworkPolicyPeer) Marshal

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

func (*NetworkPolicyPeer) MarshalTo

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

func (*NetworkPolicyPeer) MarshalToSizedBuffer added in v1.2.1

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

func (*NetworkPolicyPeer) ProtoMessage

func (*NetworkPolicyPeer) ProtoMessage()

func (*NetworkPolicyPeer) Reset

func (m *NetworkPolicyPeer) Reset()

func (*NetworkPolicyPeer) Size

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

func (*NetworkPolicyPeer) String

func (m *NetworkPolicyPeer) String() string

func (*NetworkPolicyPeer) Unmarshal

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

func (*NetworkPolicyPeer) XXX_DiscardUnknown added in v1.2.1

func (m *NetworkPolicyPeer) XXX_DiscardUnknown()

func (*NetworkPolicyPeer) XXX_Marshal added in v1.2.1

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

func (*NetworkPolicyPeer) XXX_Merge added in v1.2.1

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

func (*NetworkPolicyPeer) XXX_Size added in v1.2.1

func (m *NetworkPolicyPeer) XXX_Size() int

func (*NetworkPolicyPeer) XXX_Unmarshal added in v1.2.1

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

type NetworkPolicyPort

type NetworkPolicyPort struct {
	// The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this
	// field defaults to TCP.
	// +optional
	Protocol *string `protobuf:"bytes,1,opt,name=protocol" json:"protocol,omitempty"`
	// The port on the given protocol. This can either be a numerical or named port on
	// a pod. If this field is not provided, this matches all port names and numbers.
	// +optional
	Port                 *intstr.IntOrString `protobuf:"bytes,2,opt,name=port" json:"port,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

NetworkPolicyPort describes a port to allow traffic on

func (*NetworkPolicyPort) Descriptor

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

func (*NetworkPolicyPort) GetPort

func (m *NetworkPolicyPort) GetPort() *intstr.IntOrString

func (*NetworkPolicyPort) GetProtocol

func (m *NetworkPolicyPort) GetProtocol() string

func (*NetworkPolicyPort) Marshal

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

func (*NetworkPolicyPort) MarshalTo

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

func (*NetworkPolicyPort) MarshalToSizedBuffer added in v1.2.1

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

func (*NetworkPolicyPort) ProtoMessage

func (*NetworkPolicyPort) ProtoMessage()

func (*NetworkPolicyPort) Reset

func (m *NetworkPolicyPort) Reset()

func (*NetworkPolicyPort) Size

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

func (*NetworkPolicyPort) String

func (m *NetworkPolicyPort) String() string

func (*NetworkPolicyPort) Unmarshal

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

func (*NetworkPolicyPort) XXX_DiscardUnknown added in v1.2.1

func (m *NetworkPolicyPort) XXX_DiscardUnknown()

func (*NetworkPolicyPort) XXX_Marshal added in v1.2.1

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

func (*NetworkPolicyPort) XXX_Merge added in v1.2.1

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

func (*NetworkPolicyPort) XXX_Size added in v1.2.1

func (m *NetworkPolicyPort) XXX_Size() int

func (*NetworkPolicyPort) XXX_Unmarshal added in v1.2.1

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

type NetworkPolicySpec

type NetworkPolicySpec struct {
	// Selects the pods to which this NetworkPolicy object applies. The array of
	// ingress rules is applied to any pods selected by this field. Multiple network
	// policies can select the same set of pods. In this case, the ingress rules for
	// each are combined additively. This field is NOT optional and follows standard
	// label selector semantics. An empty podSelector matches all pods in this
	// namespace.
	PodSelector *v1.LabelSelector `protobuf:"bytes,1,opt,name=podSelector" json:"podSelector,omitempty"`
	// List of ingress rules to be applied to the selected pods. Traffic is allowed to
	// a pod if there are no NetworkPolicies selecting the pod
	// (and cluster policy otherwise allows the traffic), OR if the traffic source is
	// the pod's local node, OR if the traffic matches at least one ingress rule
	// across all of the NetworkPolicy objects whose podSelector matches the pod. If
	// this field is empty then this NetworkPolicy does not allow any traffic (and serves
	// solely to ensure that the pods it selects are isolated by default)
	// +optional
	Ingress []*NetworkPolicyIngressRule `protobuf:"bytes,2,rep,name=ingress" json:"ingress,omitempty"`
	// List of egress rules to be applied to the selected pods. Outgoing traffic is
	// allowed if there are no NetworkPolicies selecting the pod (and cluster policy
	// otherwise allows the traffic), OR if the traffic matches at least one egress rule
	// across all of the NetworkPolicy objects whose podSelector matches the pod. If
	// this field is empty then this NetworkPolicy limits all outgoing traffic (and serves
	// solely to ensure that the pods it selects are isolated by default).
	// This field is beta-level in 1.8
	// +optional
	Egress []*NetworkPolicyEgressRule `protobuf:"bytes,3,rep,name=egress" json:"egress,omitempty"`
	// List of rule types that the NetworkPolicy relates to.
	// Valid options are "Ingress", "Egress", or "Ingress,Egress".
	// If this field is not specified, it will default based on the existence of Ingress or Egress rules;
	// policies that contain an Egress section are assumed to affect Egress, and all policies
	// (whether or not they contain an Ingress section) are assumed to affect Ingress.
	// If you want to write an egress-only policy, you must explicitly specify policyTypes [ "Egress" ].
	// Likewise, if you want to write a policy that specifies that no egress is allowed,
	// you must specify a policyTypes value that include "Egress" (since such a policy would not include
	// an Egress section and would otherwise default to just [ "Ingress" ]).
	// This field is beta-level in 1.8
	// +optional
	PolicyTypes          []string `protobuf:"bytes,4,rep,name=policyTypes" json:"policyTypes,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

NetworkPolicySpec provides the specification of a NetworkPolicy

func (*NetworkPolicySpec) Descriptor

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

func (*NetworkPolicySpec) GetEgress

func (m *NetworkPolicySpec) GetEgress() []*NetworkPolicyEgressRule

func (*NetworkPolicySpec) GetIngress

func (m *NetworkPolicySpec) GetIngress() []*NetworkPolicyIngressRule

func (*NetworkPolicySpec) GetPodSelector

func (m *NetworkPolicySpec) GetPodSelector() *v1.LabelSelector

func (*NetworkPolicySpec) GetPolicyTypes

func (m *NetworkPolicySpec) GetPolicyTypes() []string

func (*NetworkPolicySpec) Marshal

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

func (*NetworkPolicySpec) MarshalTo

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

func (*NetworkPolicySpec) MarshalToSizedBuffer added in v1.2.1

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

func (*NetworkPolicySpec) ProtoMessage

func (*NetworkPolicySpec) ProtoMessage()

func (*NetworkPolicySpec) Reset

func (m *NetworkPolicySpec) Reset()

func (*NetworkPolicySpec) Size

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

func (*NetworkPolicySpec) String

func (m *NetworkPolicySpec) String() string

func (*NetworkPolicySpec) Unmarshal

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

func (*NetworkPolicySpec) XXX_DiscardUnknown added in v1.2.1

func (m *NetworkPolicySpec) XXX_DiscardUnknown()

func (*NetworkPolicySpec) XXX_Marshal added in v1.2.1

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

func (*NetworkPolicySpec) XXX_Merge added in v1.2.1

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

func (*NetworkPolicySpec) XXX_Size added in v1.2.1

func (m *NetworkPolicySpec) XXX_Size() int

func (*NetworkPolicySpec) XXX_Unmarshal added in v1.2.1

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

type ServiceBackendPort added in v1.2.2

type ServiceBackendPort struct {
	// Name is the name of the port on the Service.
	// This is a mutually exclusive setting with "Number".
	// +optional
	Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// Number is the numerical port number (e.g. 80) on the Service.
	// This is a mutually exclusive setting with "Name".
	// +optional
	Number               *int32   `protobuf:"varint,2,opt,name=number" json:"number,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

ServiceBackendPort is the service port being referenced.

func (*ServiceBackendPort) Descriptor added in v1.2.2

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

func (*ServiceBackendPort) GetName added in v1.2.2

func (m *ServiceBackendPort) GetName() string

func (*ServiceBackendPort) GetNumber added in v1.2.2

func (m *ServiceBackendPort) GetNumber() int32

func (*ServiceBackendPort) Marshal added in v1.2.2

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

func (*ServiceBackendPort) MarshalTo added in v1.2.2

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

func (*ServiceBackendPort) MarshalToSizedBuffer added in v1.2.2

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

func (*ServiceBackendPort) ProtoMessage added in v1.2.2

func (*ServiceBackendPort) ProtoMessage()

func (*ServiceBackendPort) Reset added in v1.2.2

func (m *ServiceBackendPort) Reset()

func (*ServiceBackendPort) Size added in v1.2.2

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

func (*ServiceBackendPort) String added in v1.2.2

func (m *ServiceBackendPort) String() string

func (*ServiceBackendPort) Unmarshal added in v1.2.2

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

func (*ServiceBackendPort) XXX_DiscardUnknown added in v1.2.2

func (m *ServiceBackendPort) XXX_DiscardUnknown()

func (*ServiceBackendPort) XXX_Marshal added in v1.2.2

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

func (*ServiceBackendPort) XXX_Merge added in v1.2.2

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

func (*ServiceBackendPort) XXX_Size added in v1.2.2

func (m *ServiceBackendPort) XXX_Size() int

func (*ServiceBackendPort) XXX_Unmarshal added in v1.2.2

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

Jump to

Keyboard shortcuts

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