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"` // Required: Alias/DNS that points to the service // Can be host or host:port // host and port are combined to follow the net/url URL struct Host string `json:"host"` // Optional: Path that the router watches for, to route traffic for to the service Path string `json:"path,omitempty"` // the name of the service that this route points to ServiceName string `json:"serviceName"` //TLS provides the ability to configure certificates and termination for the route TLS *TLSConfig `json:"tls,omitempty"` }
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 []Route `json:"items"` }
RouteList is a collection of Routes.
func (*RouteList) IsAnAPIObject ¶
func (*RouteList) IsAnAPIObject()
type TLSConfig ¶ added in v0.2.2
type TLSConfig struct { // Termination indicates termination type. If termination type is not set, any termination config will be ignored Termination TLSTerminationType `json:"termination,omitempty"` // 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"` }
TLSConfig defines config used to secure a route and provide termination
type TLSTerminationType ¶ added in v0.2.2
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.