Documentation ¶
Index ¶
- Constants
- Variables
- func AddToScheme(scheme *runtime.Scheme)
- type InsecureEdgeTerminationPolicyType
- type Route
- type RouteIngress
- type RouteIngressCondition
- type RouteIngressConditionType
- type RouteList
- type RoutePort
- type RouteSpec
- type RouteStatus
- type RouterShard
- type TLSConfig
- type TLSTerminationType
Constants ¶
const GroupName = ""
Variables ¶
var SchemeGroupVersion = unversioned.GroupVersion{Group: GroupName, Version: "v1"}
SchemeGroupVersion is group version used to register these objects
Functions ¶
func AddToScheme ¶ added in v1.1.3
Types ¶
type InsecureEdgeTerminationPolicyType ¶ added in v1.0.8
type InsecureEdgeTerminationPolicyType string
InsecureEdgeTerminationPolicyType dictates the behavior of insecure connections to an edge-terminated route.
type Route ¶
type Route struct { unversioned.TypeMeta `json:",inline"` // Standard object's metadata. kapi.ObjectMeta `json:"metadata,omitempty"` // Spec is the desired state of the route Spec RouteSpec `json:"spec"` // Status is the current state of the route Status RouteStatus `json:"status"` }
Route encapsulates the inputs needed to connect an alias to endpoints.
func (*Route) GetObjectKind ¶ added in v1.1.3
func (obj *Route) GetObjectKind() unversioned.ObjectKind
func (Route) SwaggerDoc ¶ added in v1.1.4
type RouteIngress ¶ added in v1.1.3
type RouteIngress struct { // Host is the host string under which the route is exposed; this value is required Host string `json:"host,omitempty"` // Name is a name chosen by the router to identify itself; this value is required RouterName string `json:"routerName,omitempty"` // Conditions is the state of the route, may be empty. Conditions []RouteIngressCondition `json:"conditions,omitempty"` }
RouteIngress holds information about the places where a route is exposed
func (RouteIngress) SwaggerDoc ¶ added in v1.1.4
func (RouteIngress) SwaggerDoc() map[string]string
type RouteIngressCondition ¶ added in v1.1.3
type RouteIngressCondition struct { // Type is the type of the condition. // Currently only Ready. Type RouteIngressConditionType `json:"type"` // Status is the status of the condition. // Can be True, False, Unknown. Status kapi.ConditionStatus `json:"status"` // (brief) reason for the condition's last transition, and is usually a machine and human // readable constant Reason string `json:"reason,omitempty"` // Human readable message indicating details about last transition. Message string `json:"message,omitempty"` // RFC 3339 date and time when this condition last transitioned LastTransitionTime *unversioned.Time `json:"lastTransitionTime,omitempty"` }
RouteIngressCondition contains details for the current condition of this pod. TODO: add LastTransitionTime, Reason, Message to match NodeCondition api.
func (RouteIngressCondition) SwaggerDoc ¶ added in v1.1.4
func (RouteIngressCondition) SwaggerDoc() map[string]string
type RouteIngressConditionType ¶ added in v1.1.3
type RouteIngressConditionType string
RouteIngressConditionType is a valid value for RouteCondition
const ( // RouteAdmitted means the route is able to service requests for the provided Host RouteAdmitted RouteIngressConditionType = "Admitted" )
These are valid conditions of pod.
type RouteList ¶
type RouteList struct { unversioned.TypeMeta `json:",inline"` // Standard object's metadata. unversioned.ListMeta `json:"metadata,omitempty"` // Items is a list of routes Items []Route `json:"items"` }
RouteList is a collection of Routes.
func (*RouteList) GetObjectKind ¶ added in v1.1.3
func (obj *RouteList) GetObjectKind() unversioned.ObjectKind
func (RouteList) SwaggerDoc ¶ added in v1.1.4
type RoutePort ¶ added in v1.0.7
type RoutePort struct { // The target port on pods selected by the service this route points to. // If this is a string, it will be looked up as a named port in the target // endpoints port list. Required TargetPort intstr.IntOrString `json:"targetPort"` }
RoutePort defines a port mapping from a router to an endpoint in the service endpoints.
func (RoutePort) SwaggerDoc ¶ added in v1.1.4
type RouteSpec ¶
type RouteSpec struct { // Host is an alias/DNS that points to the service. Optional // Must follow DNS952 subdomain conventions. Host string `json:"host"` // Path that the router watches for, to route traffic for to the service. Optional Path string `json:"path,omitempty"` // To is an object the route points to. Only the Service kind is allowed, and it will // be defaulted to Service. To kapi.ObjectReference `json:"to"` // If specified, the port to be used by the router. Most routers will use all // endpoints exposed by the service by default - set this value to instruct routers // which port to use. Port *RoutePort `json:"port,omitempty"` // TLS provides the ability to configure certificates and termination for the route TLS *TLSConfig `json:"tls,omitempty"` }
RouteSpec describes the route the user wishes to exist.
func (RouteSpec) SwaggerDoc ¶ added in v1.1.4
type RouteStatus ¶
type RouteStatus struct { // Ingress describes the places where the route may be exposed. The list of // ingress points may contain duplicate Host or RouterName values. Routes // are considered live once they are `Ready` Ingress []RouteIngress `json:"ingress"` }
RouteStatus provides relevant info about the status of a route, including which routers acknowledge it.
func (RouteStatus) SwaggerDoc ¶ added in v1.1.4
func (RouteStatus) SwaggerDoc() map[string]string
type RouterShard ¶
type RouterShard struct { // ShardName uniquely identifies a router shard in the "set" of // routers used for routing traffic to the services. ShardName string `json:"shardName"` // DNSSuffix for the shard ala: shard-1.v3.openshift.com DNSSuffix string `json:"dnsSuffix"` }
RouterShard has information of a routing shard and is used to generate host names and routing table entries when a routing shard is allocated for a specific route. Caveat: This is WIP and will likely undergo modifications when sharding
support is added.
func (RouterShard) SwaggerDoc ¶ added in v1.1.4
func (RouterShard) SwaggerDoc() map[string]string
type TLSConfig ¶
type TLSConfig struct { // Termination indicates termination type. Termination TLSTerminationType `json:"termination"` // Certificate provides certificate contents Certificate string `json:"certificate,omitempty"` // Key provides key file contents Key string `json:"key,omitempty"` // CACertificate provides the cert authority certificate contents CACertificate string `json:"caCertificate,omitempty"` // DestinationCACertificate provides the contents of the ca certificate of the final destination. When using reencrypt // termination this file should be provided in order to have routers use it for health checks on the secure connection DestinationCACertificate string `json:"destinationCACertificate,omitempty"` // InsecureEdgeTerminationPolicy indicates the desired behavior for // insecure connections to an edge-terminated route: // disable, allow or redirect InsecureEdgeTerminationPolicy InsecureEdgeTerminationPolicyType `json:"insecureEdgeTerminationPolicy,omitempty"` }
TLSConfig defines config used to secure a route and provide termination
func (TLSConfig) SwaggerDoc ¶ added in v1.1.4
type TLSTerminationType ¶
type TLSTerminationType string
TLSTerminationType dictates where the secure communication will stop TODO: Reconsider this type in v2
const ( // TLSTerminationEdge terminate encryption at the edge router. TLSTerminationEdge TLSTerminationType = "edge" // TLSTerminationPassthrough terminate encryption at the destination, the destination is responsible for decrypting traffic TLSTerminationPassthrough TLSTerminationType = "passthrough" // TLSTerminationReencrypt terminate encryption at the edge router and re-encrypt it with a new certificate supplied by the destination TLSTerminationReencrypt TLSTerminationType = "reencrypt" )