v1beta1

package
v1.24.0-kw7 Latest Latest
Warning

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

Go to latest
Published: Mar 29, 2023 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

View Source
const GroupName = "discovery.k8s.io"

GroupName is the group name use in this package

Variables

View Source
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1beta1"}

SchemeGroupVersion is group version used to register these objects

Functions

func Resource

func Resource(resource string) schema.GroupResource

Resource takes an unqualified resource and returns a Group qualified GroupResource

Types

type Endpoint

type Endpoint struct {

	// addresses of this endpoint. The contents of this field are interpreted according to the corresponding EndpointSlice addressType field. Consumers must handle different types of addresses in the context of their own capabilities. This must contain at least one address but no more than 100. These are all assumed to be fungible and clients may choose to only use the first element. Refer to: https://issue.k8s.io/106267
	// Required: true
	Addresses []string `json:"addresses"`

	// conditions contains information about the current status of the endpoint.
	Conditions *EndpointConditions `json:"conditions,omitempty"`

	// hints contains information associated with how an endpoint should be consumed.
	Hints *EndpointHints `json:"hints,omitempty"`

	// hostname of this endpoint. This field may be used by consumers of endpoints to distinguish endpoints from each other (e.g. in DNS names). Multiple endpoints which use the same hostname should be considered fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS Label (RFC 1123) validation.
	Hostname string `json:"hostname,omitempty"`

	// nodeName represents the name of the Node hosting this endpoint. This can be used to determine endpoints local to a Node. This field can be enabled with the EndpointSliceNodeName feature gate.
	NodeName string `json:"nodeName,omitempty"`

	// targetRef is a reference to a Kubernetes object that represents this endpoint.
	TargetRef *api_core_v1.ObjectReference `json:"targetRef,omitempty"`

	// topology contains arbitrary topology information associated with the endpoint. These key/value pairs must conform with the label format. https://kubernetes.io/docs/concepts/overview/working-with-objects/labels Topology may include a maximum of 16 key/value pairs. This includes, but is not limited to the following well known keys: * kubernetes.io/hostname: the value indicates the hostname of the node
	//   where the endpoint is located. This should match the corresponding
	//   node label.
	// * topology.kubernetes.io/zone: the value indicates the zone where the
	//   endpoint is located. This should match the corresponding node label.
	// * topology.kubernetes.io/region: the value indicates the region where the
	//   endpoint is located. This should match the corresponding node label.
	// This field is deprecated and will be removed in future api versions.
	Topology map[string]string `json:"topology,omitempty"`
}

Endpoint Endpoint represents a single logical "backend" implementing a service.

swagger:model Endpoint

func (Endpoint) MarshalEasyJSON

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

MarshalEasyJSON supports easyjson.Marshaler interface

func (Endpoint) MarshalJSON

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

MarshalJSON supports json.Marshaler interface

func (*Endpoint) UnmarshalEasyJSON

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

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Endpoint) UnmarshalJSON

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

UnmarshalJSON supports json.Unmarshaler interface

type EndpointConditions

type EndpointConditions struct {

	// ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready. For compatibility reasons, ready should never be "true" for terminating endpoints.
	Ready bool `json:"ready,omitempty"`

	// serving is identical to ready except that it is set regardless of the terminating state of endpoints. This condition should be set to true for a ready endpoint that is terminating. If nil, consumers should defer to the ready condition. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.
	Serving bool `json:"serving,omitempty"`

	// terminating indicates that this endpoint is terminating. A nil value indicates an unknown state. Consumers should interpret this unknown state to mean that the endpoint is not terminating. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.
	Terminating bool `json:"terminating,omitempty"`
}

EndpointConditions EndpointConditions represents the current condition of an endpoint.

swagger:model EndpointConditions

func (EndpointConditions) MarshalEasyJSON

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

MarshalEasyJSON supports easyjson.Marshaler interface

func (EndpointConditions) MarshalJSON

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

MarshalJSON supports json.Marshaler interface

func (*EndpointConditions) UnmarshalEasyJSON

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

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EndpointConditions) UnmarshalJSON

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

UnmarshalJSON supports json.Unmarshaler interface

type EndpointHints

type EndpointHints struct {

	// forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing. May contain a maximum of 8 entries.
	ForZones []*ForZone `json:"forZones,omitempty"`
}

EndpointHints EndpointHints provides hints describing how an endpoint should be consumed.

swagger:model EndpointHints

func (EndpointHints) MarshalEasyJSON

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

MarshalEasyJSON supports easyjson.Marshaler interface

func (EndpointHints) MarshalJSON

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

MarshalJSON supports json.Marshaler interface

func (*EndpointHints) UnmarshalEasyJSON

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

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EndpointHints) UnmarshalJSON

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

UnmarshalJSON supports json.Unmarshaler interface

type EndpointPort

type EndpointPort struct {

	// The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.
	AppProtocol string `json:"appProtocol,omitempty"`

	// The name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.
	Name string `json:"name,omitempty"`

	// The port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.
	Port int32 `json:"port,omitempty"`

	// The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.
	Protocol string `json:"protocol,omitempty"`
}

EndpointPort EndpointPort represents a Port used by an EndpointSlice

swagger:model EndpointPort

func (EndpointPort) MarshalEasyJSON

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

MarshalEasyJSON supports easyjson.Marshaler interface

func (EndpointPort) MarshalJSON

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

MarshalJSON supports json.Marshaler interface

func (*EndpointPort) UnmarshalEasyJSON

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

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EndpointPort) UnmarshalJSON

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

UnmarshalJSON supports json.Unmarshaler interface

type EndpointSlice

type EndpointSlice struct {

	// addressType specifies the type of address carried by this EndpointSlice. All addresses in this slice must be the same type. This field is immutable after creation. The following address types are currently supported: * IPv4: Represents an IPv4 Address. * IPv6: Represents an IPv6 Address. * FQDN: Represents a Fully Qualified Domain Name.
	// Required: true
	AddressType *string `json:"addressType"`

	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	APIVersion string `json:"apiVersion,omitempty"`

	// endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.
	// Required: true
	Endpoints []*Endpoint `json:"endpoints"`

	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata.
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// ports specifies the list of network ports exposed by each endpoint in this slice. Each port must have a unique name. When ports is empty, it indicates that there are no defined ports. When a port is defined with a nil port value, it indicates "all ports". Each slice may include a maximum of 100 ports.
	Ports []*EndpointPort `json:"ports,omitempty"`
}

EndpointSlice EndpointSlice represents a subset of the endpoints that implement a service. For a given service there may be multiple EndpointSlice objects, selected by labels, which must be joined to produce the full set of endpoints.

swagger:model EndpointSlice

func (*EndpointSlice) GroupVersionKind

func (v *EndpointSlice) GroupVersionKind() schema.GroupVersionKind

func (EndpointSlice) MarshalEasyJSON

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

MarshalEasyJSON supports easyjson.Marshaler interface

func (EndpointSlice) MarshalJSON

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

MarshalJSON supports json.Marshaler interface

func (*EndpointSlice) UnmarshalEasyJSON

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

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EndpointSlice) UnmarshalJSON

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

UnmarshalJSON supports json.Unmarshaler interface

type EndpointSliceList

type EndpointSliceList struct {

	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	APIVersion string `json:"apiVersion,omitempty"`

	// List of endpoint slices
	// Required: true
	Items []*EndpointSlice `json:"items"`

	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind string `json:"kind,omitempty"`

	// Standard list metadata.
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

EndpointSliceList EndpointSliceList represents a list of endpoint slices

swagger:model EndpointSliceList

func (*EndpointSliceList) GroupVersionKind

func (v *EndpointSliceList) GroupVersionKind() schema.GroupVersionKind

func (EndpointSliceList) MarshalEasyJSON

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

MarshalEasyJSON supports easyjson.Marshaler interface

func (EndpointSliceList) MarshalJSON

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

MarshalJSON supports json.Marshaler interface

func (*EndpointSliceList) UnmarshalEasyJSON

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

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EndpointSliceList) UnmarshalJSON

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

UnmarshalJSON supports json.Unmarshaler interface

type ForZone

type ForZone struct {

	// name represents the name of the zone.
	// Required: true
	Name *string `json:"name"`
}

ForZone ForZone provides information about which zones should consume this endpoint.

swagger:model ForZone

func (ForZone) MarshalEasyJSON

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

MarshalEasyJSON supports easyjson.Marshaler interface

func (ForZone) MarshalJSON

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

MarshalJSON supports json.Marshaler interface

func (*ForZone) UnmarshalEasyJSON

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

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ForZone) UnmarshalJSON

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

UnmarshalJSON supports json.Unmarshaler interface

Jump to

Keyboard shortcuts

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