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 : ingressroutetcps.traefik.containo.us
spec :
group : traefik.containo.us
names :
kind : IngressRouteTCP
listKind : IngressRouteTCPList
plural : ingressroutetcps
singular : ingressroutetcp
scope : Namespaced
versions :
- name : v1alpha1
schema :
openAPIV3Schema :
2022-06-24 10:40:08 +00:00
description : IngressRouteTCP is the CRD implementation of a Traefik TCP 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 : IngressRouteTCPSpec defines the desired state of IngressRouteTCP.
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-12-05 15:58:04 +00:00
More info : https://doc.traefik.io/traefik/v3.0/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 : RouteTCP holds the TCP route configuration.
2021-03-03 14:32:04 +00:00
properties :
match :
2022-12-05 15:58:04 +00:00
description: 'Match defines the router''s rule. More info : https://doc.traefik.io/traefik/v3.0/routing/routers/#rule_1'
2021-03-03 14:32:04 +00:00
type : string
2021-06-11 13:30:05 +00:00
middlewares :
2022-06-24 10:40:08 +00:00
description : Middlewares defines the list of references to MiddlewareTCP
2021-06-11 13:30:05 +00:00
resources.
items :
description : ObjectReference is a generic reference to a Traefik
resource.
properties :
name :
2022-06-24 10:40:08 +00:00
description : Name defines the name of the referenced Traefik
resource.
2021-06-11 13:30:05 +00:00
type : string
namespace :
2022-06-24 10:40:08 +00:00
description : Namespace defines the namespace of the referenced
Traefik resource.
2021-06-11 13:30:05 +00:00
type : string
required :
- name
type : object
type : array
2022-03-17 17:02:08 +00:00
priority :
2022-06-24 10:40:08 +00:00
description : 'Priority defines the router' 's priority. More
2022-12-05 15:58:04 +00:00
info : https://doc.traefik.io/traefik/v3.0/routing/routers/#priority_1'
2022-03-17 17:02:08 +00:00
type : integer
2021-03-03 14:32:04 +00:00
services :
2022-06-24 10:40:08 +00:00
description : Services defines the list of TCP services.
2021-03-03 14:32:04 +00:00
items :
2022-06-24 10:40:08 +00:00
description : ServiceTCP defines an upstream TCP service to
proxy traffic to.
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 Kubernetes
Service.
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.
2021-03-03 14:32:04 +00:00
type : string
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
proxyProtocol :
2022-06-24 10:40:08 +00:00
description : 'ProxyProtocol defines the PROXY protocol
2022-12-05 15:58:04 +00:00
configuration. More info : https://doc.traefik.io/traefik/v3.0/routing/services/#proxy-protocol'
2021-03-03 14:32:04 +00:00
properties :
version :
2022-06-24 10:40:08 +00:00
description : Version defines the PROXY Protocol version
to use.
2021-03-03 14:32:04 +00:00
type : integer
type : object
2022-12-09 08:58:05 +00:00
serversTransport :
description : ServersTransport defines the name of ServersTransportTCP
resource to use. It allows to configure the transport
between Traefik and your servers. Can only be used on
a Kubernetes Service.
type : string
tls :
description : TLS determines whether to use TLS when dialing
with the backend.
type : boolean
2021-03-03 14:32:04 +00:00
weight :
2022-06-24 10:40:08 +00:00
description : Weight defines the weight used when balancing
requests between multiple Kubernetes Service.
2021-03-03 14:32:04 +00:00
type : integer
required :
- name
- port
type : object
type : array
required :
- match
type : object
type : array
tls :
2022-06-24 10:40:08 +00:00
description : 'TLS defines the TLS configuration on a layer 4 / TCP
2022-12-05 15:58:04 +00:00
Route. More info : https://doc.traefik.io/traefik/v3.0/routing/routers/#tls_1'
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-12-05 15:58:04 +00:00
static configuration. More info : https://doc.traefik.io/traefik/v3.0/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-12-05 15:58:04 +00:00
used to issue certificates. More info : https://doc.traefik.io/traefik/v3.0/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-12-05 15:58:04 +00:00
the `default` TLSOption is used. More info : https://doc.traefik.io/traefik/v3.0/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 Traefik
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
Traefik resource.
2021-03-03 14:32:04 +00:00
type : string
required :
- name
type : object
passthrough :
2022-06-24 10:40:08 +00:00
description : Passthrough defines whether a TLS router will terminate
the TLS connection.
2021-03-03 14:32:04 +00:00
type : boolean
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 Traefik
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
Traefik resource.
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 : [ ]