Traefik & Kubernetes with Gateway API
The Kubernetes Gateway provider is a Traefik implementation of the Gateway API specification from the Kubernetes Special Interest Groups (SIGs).
This provider supports Standard version v1.2.0 of the Gateway API specification.
It fully supports all HTTP core and some extended features, as well as the TCPRoute
and TLSRoute
resources from the Experimental channel.
For more details, check out the conformance report.
Requirements
Traefik follows the Kubernetes support policy, and supports at least the latest three minor versions of Kubernetes. General functionality cannot be guaranteed for older versions.
Helm Chart
When using the Traefik Helm Chart, the CRDs (Custom Resource Definitions) and RBAC (Role-Based Access Control) are automatically managed for you. The only remaining task is to enable the kubernetesGateway
in the chart values.
Install/update the Kubernetes Gateway API CRDs.
# Install Gateway API CRDs from the Standard channel.
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.2.0/standard-install.yaml
Install the additional Traefik RBAC required for Gateway API.
# Install Traefik RBACs.
kubectl apply -f https://raw.githubusercontent.com/traefik/traefik/v3.2/docs/content/reference/dynamic-configuration/kubernetes-gateway-rbac.yml
Deploy Traefik and enable the
kubernetesGateway
provider in the static configuration as detailed below:File (YAML)
providers:
kubernetesGateway: {}
File (TOML)
[providers.kubernetesGateway]
CLI
--providers.kubernetesgateway=true
Routing Configuration
When using the Kubernetes Gateway API provider, Traefik uses the Gateway API CRDs to retrieve its routing configuration. Check out the Gateway API concepts documentation, and the dedicated routing section in the Traefik documentation.
Provider Configuration
endpoint
Optional, Default=””
The Kubernetes server endpoint URL.
When deployed into Kubernetes, Traefik reads the environment variables KUBERNETES_SERVICE_HOST
and KUBERNETES_SERVICE_PORT
or KUBECONFIG
to construct the endpoint.
The access token is looked up in /var/run/secrets/kubernetes.io/serviceaccount/token
and the SSL CA certificate in /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
. Both are mounted automatically when deployed inside Kubernetes.
The endpoint may be specified to override the environment variable values inside a cluster.
When the environment variables are not found, Traefik tries to connect to the Kubernetes API server with an external-cluster client. In this case, the endpoint is required. Specifically, it may be set to the URL used by kubectl proxy
to connect to a Kubernetes cluster using the granted authentication and authorization of the associated kubeconfig.
File (YAML)
providers:
kubernetesGateway:
endpoint: "http://localhost:8080"
# ...
File (TOML)
[providers.kubernetesGateway]
endpoint = "http://localhost:8080"
# ...
CLI
--providers.kubernetesgateway.endpoint=http://localhost:8080
token
Optional, Default=””
Bearer token used for the Kubernetes client configuration.
File (YAML)
providers:
kubernetesGateway:
token: "mytoken"
# ...
File (TOML)
[providers.kubernetesGateway]
token = "mytoken"
# ...
CLI
--providers.kubernetesgateway.token=mytoken
certAuthFilePath
Optional, Default=””
Path to the certificate authority file. Used for the Kubernetes client configuration.
File (YAML)
providers:
kubernetesGateway:
certAuthFilePath: "/my/ca.crt"
# ...
File (TOML)
[providers.kubernetesGateway]
certAuthFilePath = "/my/ca.crt"
# ...
CLI
--providers.kubernetesgateway.certauthfilepath=/my/ca.crt
namespaces
Optional, Default: []
Array of namespaces to watch. If left empty, Traefik watches all namespaces.
File (YAML)
providers:
kubernetesGateway:
namespaces:
- "default"
- "production"
# ...
File (TOML)
[providers.kubernetesGateway]
namespaces = ["default", "production"]
# ...
CLI
--providers.kubernetesgateway.namespaces=default,production
statusAddress
ip
Optional, Default: “”
This IP will get copied to the Gateway status.addresses
, and currently only supports one IP value (IPv4 or IPv6).
File (YAML)
providers:
kubernetesGateway:
statusAddress:
ip: "1.2.3.4"
# ...
File (TOML)
[providers.kubernetesGateway.statusAddress]
ip = "1.2.3.4"
# ...
CLI
--providers.kubernetesgateway.statusaddress.ip=1.2.3.4
hostname
Optional, Default: “”
This Hostname will get copied to the Gateway status.addresses
.
File (YAML)
providers:
kubernetesGateway:
statusAddress:
hostname: "example.net"
# ...
File (TOML)
[providers.kubernetesGateway.statusAddress]
hostname = "example.net"
# ...
CLI
--providers.kubernetesgateway.statusaddress.hostname=example.net
service
Optional
The Kubernetes service to copy status addresses from. When using third parties tools like External-DNS, this option can be used to copy the service loadbalancer.status
(containing the service’s endpoints IPs) to the gateways.
File (YAML)
providers:
kubernetesGateway:
statusAddress:
service:
namespace: default
name: foo
# ...
File (TOML)
[providers.kubernetesGateway.statusAddress.service]
namespace = "default"
name = "foo"
# ...
CLI
--providers.kubernetesgateway.statusaddress.service.namespace=default
--providers.kubernetesgateway.statusaddress.service.name=foo
experimentalChannel
Optional, Default: false
Toggles support for the Experimental Channel resources (Gateway API release channels documentation). This option currently enables support for TCPRoute
and TLSRoute
.
File (YAML)
providers:
kubernetesGateway:
experimentalChannel: true
File (TOML)
[providers.kubernetesGateway]
experimentalChannel = true
# ...
CLI
--providers.kubernetesgateway.experimentalchannel=true
Experimental Channel
When enabling experimental channel resources support, the experimental CRDs (Custom Resource Definitions) needs to be deployed too.
# Install Gateway API CRDs from the Experimental channel.
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.2.0/experimental-install.yaml
labelselector
Optional, Default: “”
A label selector can be defined to filter on specific GatewayClass objects only. If left empty, Traefik processes all GatewayClass objects in the configured namespaces.
See label-selectors for details.
File (YAML)
providers:
kubernetesGateway:
labelselector: "app=traefik"
# ...
File (TOML)
[providers.kubernetesGateway]
labelselector = "app=traefik"
# ...
CLI
--providers.kubernetesgateway.labelselector="app=traefik"
nativeLBByDefault
Optional, Default: false
Defines whether to use Native Kubernetes load-balancing mode by default. For more information, please check out the traefik.io/service.nativelb
service annotation documentation.
File (YAML)
providers:
kubernetesGateway:
nativeLBByDefault: true
# ...
File (TOML)
[providers.kubernetesGateway]
nativeLBByDefault = true
# ...
CLI
--providers.kubernetesgateway.nativeLBByDefault=true
throttleDuration
Optional, Default: 0
The throttleDuration
option defines how often the provider is allowed to handle events from Kubernetes. This prevents a Kubernetes cluster that updates many times per second from continuously changing your Traefik configuration.
If left empty, the provider does not apply any throttling and does not drop any Kubernetes events.
The value of throttleDuration
should be provided in seconds or as a valid duration format, see time.ParseDuration.
File (YAML)
providers:
kubernetesGateway:
throttleDuration: "10s"
# ...
File (TOML)
[providers.kubernetesGateway]
throttleDuration = "10s"
# ...
CLI
--providers.kubernetesgateway.throttleDuration=10s
Using Traefik OSS in Production?
If you are using Traefik at work, consider adding enterprise-grade API gateway capabilities or commercial support for Traefik OSS.
Adding API Gateway capabilities to Traefik OSS is fast and seamless. There’s no rip and replace and all configurations remain intact. See it in action via this short video.