2021-06-11 13:30:05 +00:00
---
apiVersion : apiextensions.k8s.io/v1
kind : CustomResourceDefinition
metadata :
annotations :
2023-11-22 10:28:06 +00:00
controller-gen.kubebuilder.io/version : v0.13.0
2021-06-11 13:30:05 +00:00
name : middlewaretcps.traefik.containo.us
spec :
group : traefik.containo.us
names :
kind : MiddlewareTCP
listKind : MiddlewareTCPList
plural : middlewaretcps
singular : middlewaretcp
scope : Namespaced
versions :
- name : v1alpha1
schema :
openAPIV3Schema :
2022-06-24 10:40:08 +00:00
description : 'MiddlewareTCP is the CRD implementation of a Traefik TCP middleware.
2024-01-03 10:12:05 +00:00
More info : https://doc.traefik.io/traefik/v2.11/middlewares/overview/'
2021-06-11 13:30:05 +00:00
properties :
apiVersion :
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'
type : string
kind :
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'
type : string
metadata :
type : object
spec :
2022-06-24 10:40:08 +00:00
description : MiddlewareTCPSpec defines the desired state of a MiddlewareTCP.
2021-06-11 13:30:05 +00:00
properties :
2021-11-29 16:12:06 +00:00
inFlightConn :
2022-06-24 10:40:08 +00:00
description : InFlightConn defines the InFlightConn middleware configuration.
2021-11-29 16:12:06 +00:00
properties :
amount :
2022-06-24 10:40:08 +00:00
description : Amount defines the maximum amount of allowed simultaneous
connections. The middleware closes the connection if there are
already amount connections opened.
2021-11-29 16:12:06 +00:00
format : int64
type : integer
type : object
2024-01-02 16:04:06 +00:00
ipAllowList :
description : 'IPAllowList defines the IPAllowList middleware configuration.
This middleware accepts/refuses connections based on the client
2024-01-03 10:12:05 +00:00
IP. More info : https://doc.traefik.io/traefik/v2.11/middlewares/tcp/ipallowlist/'
2024-01-02 16:04:06 +00:00
properties :
sourceRange :
description : SourceRange defines the allowed IPs (or ranges of
allowed IPs by using CIDR notation).
items :
type : string
type : array
type : object
2021-06-11 13:30:05 +00:00
ipWhiteList :
2024-01-02 16:04:06 +00:00
description : 'IPWhiteList defines the IPWhiteList middleware configuration.
This middleware accepts/refuses connections based on the client
2024-01-03 10:12:05 +00:00
IP. Deprecated: please use IPAllowList instead. More info : https://doc.traefik.io/traefik/v2.11/middlewares/tcp/ipwhitelist/'
2021-06-11 13:30:05 +00:00
properties :
sourceRange :
2022-06-24 10:40:08 +00:00
description : SourceRange defines the allowed IPs (or ranges of
allowed IPs by using CIDR notation).
2021-06-11 13:30:05 +00:00
items :
type : string
type : array
type : object
type : object
required :
- metadata
- spec
type : object
served : true
storage : true