2021-03-03 14:32:04 +00:00
---
apiVersion : apiextensions.k8s.io/v1
kind : CustomResourceDefinition
metadata :
annotations :
2021-09-02 12:40:08 +00:00
controller-gen.kubebuilder.io/version : v0.6.2
2021-03-03 14:32:04 +00:00
creationTimestamp : null
name : ingressroutes.traefik.containo.us
spec :
group : traefik.containo.us
names :
kind : IngressRoute
listKind : IngressRouteList
plural : ingressroutes
singular : ingressroute
scope : Namespaced
versions :
- name : v1alpha1
schema :
openAPIV3Schema :
2022-06-24 10:40:08 +00:00
description : IngressRoute is the CRD implementation of a Traefik HTTP Router.
2021-03-03 14:32:04 +00:00
properties :
apiVersion :
2021-05-05 15:50:04 +00:00
description : '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'
2021-03-03 14:32:04 +00:00
type : string
kind :
2021-05-05 15:50:04 +00:00
description : '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'
2021-03-03 14:32:04 +00:00
type : string
metadata :
type : object
spec :
2022-06-24 10:40:08 +00:00
description : IngressRouteSpec defines the desired state of IngressRoute.
2021-03-03 14:32:04 +00:00
properties :
entryPoints :
2022-06-24 10:40:08 +00:00
description : 'EntryPoints defines the list of entry point names to
bind to. Entry points have to be configured in the static configuration.
2022-06-29 15:38:37 +00:00
More info : https://doc.traefik.io/traefik/v2.8/routing/entrypoints/
2022-06-24 10:40:08 +00:00
Default : all.'
2021-03-03 14:32:04 +00:00
items :
type : string
type : array
routes :
2022-06-24 10:40:08 +00:00
description : Routes defines the list of routes.
2021-03-03 14:32:04 +00:00
items :
2022-06-24 10:40:08 +00:00
description : Route holds the HTTP route configuration.
2021-03-03 14:32:04 +00:00
properties :
kind :
2022-06-24 10:40:08 +00:00
description : Kind defines the kind of the route. Rule is the
only supported kind.
2021-03-03 14:32:04 +00:00
enum :
- Rule
type : string
match :
2022-06-29 15:38:37 +00:00
description: 'Match defines the router''s rule. More info : https://doc.traefik.io/traefik/v2.8/routing/routers/#rule'
2021-03-03 14:32:04 +00:00
type : string
middlewares :
2022-06-24 10:40:08 +00:00
description : 'Middlewares defines the list of references to
2022-06-29 15:38:37 +00:00
Middleware resources. More info : https://doc.traefik.io/traefik/v2.8/routing/providers/kubernetes-crd/#kind-middleware'
2021-03-03 14:32:04 +00:00
items :
2022-06-24 10:40:08 +00:00
description : MiddlewareRef is a reference to a Middleware
resource.
2021-03-03 14:32:04 +00:00
properties :
name :
2022-06-24 10:40:08 +00:00
description : Name defines the name of the referenced Middleware
resource.
2021-03-03 14:32:04 +00:00
type : string
namespace :
2022-06-24 10:40:08 +00:00
description : Namespace defines the namespace of the referenced
Middleware resource.
2021-03-03 14:32:04 +00:00
type : string
required :
- name
type : object
type : array
priority :
2022-06-24 10:40:08 +00:00
description : 'Priority defines the router' 's priority. More
2022-06-29 15:38:37 +00:00
info : https://doc.traefik.io/traefik/v2.8/routing/routers/#priority'
2021-03-03 14:32:04 +00:00
type : integer
services :
2022-06-24 10:40:08 +00:00
description : Services defines the list of Service. It can contain
any combination of TraefikService and/or reference to a Kubernetes
Service.
2021-03-03 14:32:04 +00:00
items :
2022-06-24 10:40:08 +00:00
description : Service defines an upstream HTTP service to proxy
traffic to.
2021-03-03 14:32:04 +00:00
properties :
kind :
2022-06-24 10:40:08 +00:00
description : Kind defines the kind of the Service.
2021-03-03 14:32:04 +00:00
enum :
- Service
- TraefikService
type : string
name :
2022-06-24 10:40:08 +00:00
description : Name defines the name of the referenced Kubernetes
Service or TraefikService. The differentiation between
the two is specified in the Kind field.
2021-03-03 14:32:04 +00:00
type : string
namespace :
2022-06-24 10:40:08 +00:00
description : Namespace defines the namespace of the referenced
Kubernetes Service or TraefikService.
2021-03-03 14:32:04 +00:00
type : string
passHostHeader :
2022-06-24 10:40:08 +00:00
description : PassHostHeader defines whether the client
Host header is forwarded to the upstream Kubernetes
Service. By default, passHostHeader is true.
2021-03-03 14:32:04 +00:00
type : boolean
port :
anyOf :
- type : integer
- type : string
2022-06-24 10:40:08 +00:00
description : Port defines the port of a Kubernetes Service.
This can be a reference to a named port.
2021-03-03 14:32:04 +00:00
x-kubernetes-int-or-string : true
responseForwarding :
2022-06-24 10:40:08 +00:00
description : ResponseForwarding defines how Traefik forwards
the response from the upstream Kubernetes Service to
the client.
2021-03-03 14:32:04 +00:00
properties :
flushInterval :
2022-06-24 10:40:08 +00:00
description : 'FlushInterval defines the interval,
in milliseconds, in between flushes to the client
while copying the response body. A negative value
means to flush immediately after each write to the
client. This configuration is ignored when ReverseProxy
recognizes a response as a streaming response; for
such responses, writes are flushed to the client
immediately. Default : 100ms'
2021-03-03 14:32:04 +00:00
type : string
type : object
scheme :
2022-06-24 10:40:08 +00:00
description : Scheme defines the scheme to use for the
request to the upstream Kubernetes Service. It defaults
to https when Kubernetes Service port is 443, http otherwise.
2021-03-03 14:32:04 +00:00
type : string
serversTransport :
2022-06-24 10:40:08 +00:00
description : ServersTransport defines the name of ServersTransport
resource to use. It allows to configure the transport
between Traefik and your servers. Can only be used on
a Kubernetes Service.
2021-03-03 14:32:04 +00:00
type : string
sticky :
2022-06-24 10:40:08 +00:00
description : 'Sticky defines the sticky sessions configuration.
2022-06-29 15:38:37 +00:00
More info : https://doc.traefik.io/traefik/v2.8/routing/services/#sticky-sessions'
2021-03-03 14:32:04 +00:00
properties :
cookie :
2022-06-24 10:40:08 +00:00
description : Cookie defines the sticky cookie configuration.
2021-03-03 14:32:04 +00:00
properties :
httpOnly :
2022-06-24 10:40:08 +00:00
description : HTTPOnly defines whether the cookie
can be accessed by client-side APIs, such as
JavaScript.
2021-03-03 14:32:04 +00:00
type : boolean
name :
2022-06-24 10:40:08 +00:00
description : Name defines the Cookie name.
2021-03-03 14:32:04 +00:00
type : string
sameSite :
2022-06-24 10:40:08 +00:00
description : 'SameSite defines the same site policy.
More info : https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite'
2021-03-03 14:32:04 +00:00
type : string
secure :
2022-06-24 10:40:08 +00:00
description : Secure defines whether the cookie
can only be transmitted over an encrypted connection
(i.e. HTTPS).
2021-03-03 14:32:04 +00:00
type : boolean
type : object
type : object
strategy :
2022-06-24 10:40:08 +00:00
description : Strategy defines the load balancing strategy
between the servers. RoundRobin is the only supported
value at the moment.
2021-03-03 14:32:04 +00:00
type : string
weight :
2022-06-24 10:40:08 +00:00
description : Weight defines the weight and should only
be specified when Name references a TraefikService object
(and to be precise, one that embeds a Weighted Round
Robin).
2021-03-03 14:32:04 +00:00
type : integer
required :
- name
type : object
type : array
required :
- kind
- match
type : object
type : array
tls :
2022-06-29 15:38:37 +00:00
description: 'TLS defines the TLS configuration. More info : https://doc.traefik.io/traefik/v2.8/routing/routers/#tls'
2021-03-03 14:32:04 +00:00
properties :
certResolver :
2022-06-24 10:40:08 +00:00
description : 'CertResolver defines the name of the certificate
resolver to use. Cert resolvers have to be configured in the
2022-06-29 15:38:37 +00:00
static configuration. More info : https://doc.traefik.io/traefik/v2.8/https/acme/#certificate-resolvers'
2021-03-03 14:32:04 +00:00
type : string
domains :
2022-06-24 10:40:08 +00:00
description : 'Domains defines the list of domains that will be
2022-06-29 15:38:37 +00:00
used to issue certificates. More info : https://doc.traefik.io/traefik/v2.8/routing/routers/#domains'
2021-03-03 14:32:04 +00:00
items :
description : Domain holds a domain name with SANs.
properties :
main :
2022-06-29 09:04:09 +00:00
description : Main defines the main domain name.
2021-03-03 14:32:04 +00:00
type : string
sans :
2022-06-29 09:04:09 +00:00
description : SANs defines the subject alternative domain
names.
2021-03-03 14:32:04 +00:00
items :
type : string
type : array
type : object
type : array
options :
2022-06-24 10:40:08 +00:00
description : 'Options defines the reference to a TLSOption, that
specifies the parameters of the TLS connection. If not defined,
2022-06-29 15:38:37 +00:00
the `default` TLSOption is used. More info : https://doc.traefik.io/traefik/v2.8/https/tls/#tls-options'
2021-03-03 14:32:04 +00:00
properties :
name :
2022-06-24 10:40:08 +00:00
description : 'Name defines the name of the referenced TLSOption.
2022-06-29 15:38:37 +00:00
More info : https://doc.traefik.io/traefik/v2.8/routing/providers/kubernetes-crd/#kind-tlsoption'
2021-03-03 14:32:04 +00:00
type : string
namespace :
2022-06-24 10:40:08 +00:00
description : 'Namespace defines the namespace of the referenced
2022-06-29 15:38:37 +00:00
TLSOption. More info : https://doc.traefik.io/traefik/v2.8/routing/providers/kubernetes-crd/#kind-tlsoption'
2021-03-03 14:32:04 +00:00
type : string
required :
- name
type : object
secretName :
2021-05-05 15:50:04 +00:00
description : SecretName is the name of the referenced Kubernetes
Secret to specify the certificate details.
2021-03-03 14:32:04 +00:00
type : string
store :
2022-06-24 10:40:08 +00:00
description : Store defines the reference to the TLSStore, that
will be used to store certificates. Please note that only `default`
TLSStore can be used.
2021-03-03 14:32:04 +00:00
properties :
name :
2022-06-24 10:40:08 +00:00
description : 'Name defines the name of the referenced TLSStore.
2022-06-29 15:38:37 +00:00
More info : https://doc.traefik.io/traefik/v2.8/routing/providers/kubernetes-crd/#kind-tlsstore'
2021-03-03 14:32:04 +00:00
type : string
namespace :
2022-06-24 10:40:08 +00:00
description : 'Namespace defines the namespace of the referenced
2022-06-29 15:38:37 +00:00
TLSStore. More info : https://doc.traefik.io/traefik/v2.8/routing/providers/kubernetes-crd/#kind-tlsstore'
2021-03-03 14:32:04 +00:00
type : string
required :
- name
type : object
type : object
required :
- routes
type : object
required :
- metadata
- spec
type : object
served : true
storage : true
status :
acceptedNames :
kind : ""
plural : ""
conditions : [ ]
storedVersions : [ ]