Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Route ¶
type Route struct { kapi.TypeMeta `json:",inline"` kapi.ObjectMeta `json:"metadata,omitempty"` // Spec is the desired state of the route Spec RouteSpec `json:"spec" description:"desired state of the route"` // Status is the current state of the route Status RouteStatus `json:"status" description:"current state of the route"` }
Route encapsulates the inputs needed to connect an alias to endpoints.
func (*Route) IsAnAPIObject ¶
func (*Route) IsAnAPIObject()
type RouteList ¶
type RouteList struct { kapi.TypeMeta `json:",inline"` kapi.ListMeta `json:"metadata,omitempty"` // Items is a list of routes Items []Route `json:"items" description:"list of routes"` }
RouteList is a collection of Routes.
func (*RouteList) IsAnAPIObject ¶
func (*RouteList) IsAnAPIObject()
type RouteSpec ¶
type RouteSpec struct { // Host is an alias/DNS that points to the service. Optional // Can be host or host:port // host and port are combined to follow the net/url URL struct Host string `json:"host" description:"optional: alias/dns that points to the service, can be host or host:port"` // Path that the router watches for, to route traffic for to the service. Optional Path string `json:"path,omitempty" description:"optional: path that the router watches to route traffic to the service"` // To is an object the route points to. Only the Service kind is allowed, and it will // be defaulted to Service. To kapi.ObjectReference `` /* 128-byte string literal not displayed */ // TLS provides the ability to configure certificates and termination for the route TLS *TLSConfig `json:"tls,omitempty" description:"provides the ability to configure certificates and termination for the route"` }
RouteSpec describes the route the user wishes to exist.
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 `` /* 128-byte string literal not displayed */ // DNSSuffix for the shard ala: shard-1.v3.openshift.com DNSSuffix string `json:"dnsSuffix" description:"DNS suffix for the shard (i.e. shard-1.v3.openshift.com)"` }
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.
type TLSConfig ¶
type TLSConfig struct { // Termination indicates termination type. If termination type is not set, any termination config will be ignored Termination TLSTerminationType `json:"termination,omitempty" description:"indicates termination type. if not set, any termination config will be ignored"` // Certificate provides certificate contents Certificate string `json:"certificate,omitempty" description:"provides certificate contents"` // Key provides key file contents Key string `json:"key,omitempty" description:"provides key file contents"` // CACertificate provides the cert authority certificate contents CACertificate string `json:"caCertificate,omitempty" description:"provides the cert authority certificate contents"` // 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 `` /* 264-byte string literal not displayed */ }
TLSConfig defines config used to secure a route and provide termination
type TLSTerminationType ¶
type TLSTerminationType string
TLSTerminationType dictates where the secure communication will stop
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" )
Click to show internal directories.
Click to hide internal directories.