diff --git a/docs/content/providers/overview.md b/docs/content/providers/overview.md index bbd97f4d2..d5413c8c3 100644 --- a/docs/content/providers/overview.md +++ b/docs/content/providers/overview.md @@ -30,6 +30,8 @@ If you use multiple providers and wish to reference such an object declared in a (e.g. referencing a cross-provider object like middleware), then the object name should be suffixed by the `@` separator, and the provider name. +For the list of the providers names, see the [supported providers](#supported-providers) table below. + ```text @ ``` @@ -125,20 +127,22 @@ separator, and the provider name. Below is the list of the currently supported providers in Traefik. -| Provider | Type | Configuration Type | -|---------------------------------------|--------------|----------------------------| -| [Docker](./docker.md) | Orchestrator | Label | -| [Kubernetes](./kubernetes-crd.md) | Orchestrator | Custom Resource or Ingress | -| [Consul Catalog](./consul-catalog.md) | Orchestrator | Label | -| [ECS](./ecs.md) | Orchestrator | Label | -| [Marathon](./marathon.md) | Orchestrator | Label | -| [Rancher](./rancher.md) | Orchestrator | Label | -| [File](./file.md) | Manual | YAML/TOML format | -| [Consul](./consul.md) | KV | KV | -| [Etcd](./etcd.md) | KV | KV | -| [ZooKeeper](./zookeeper.md) | KV | KV | -| [Redis](./redis.md) | KV | KV | -| [HTTP](./http.md) | Manual | JSON format | +| Provider | Type | Configuration Type | Provider Name | +|---------------------------------------------------|--------------|----------------------|---------------------| +| [Docker](./docker.md) | Orchestrator | Label | `docker` | +| [Kubernetes IngressRoute](./kubernetes-crd.md) | Orchestrator | Custom Resource | `kubernetescrd` | +| [Kubernetes Ingress](./kubernetes-ingress.md) | Orchestrator | Ingress | `kubernetes` | +| [Kubernetes Gateway API](./kubernetes-gateway.md) | Orchestrator | Gateway API Resource | `kubernetesgateway` | +| [Consul Catalog](./consul-catalog.md) | Orchestrator | Label | `consulcatalog` | +| [ECS](./ecs.md) | Orchestrator | Label | `ecs` | +| [Marathon](./marathon.md) | Orchestrator | Label | `marathon` | +| [Rancher](./rancher.md) | Orchestrator | Label | `rancher` | +| [File](./file.md) | Manual | YAML/TOML format | `file` | +| [Consul](./consul.md) | KV | KV | `consul` | +| [Etcd](./etcd.md) | KV | KV | `etcd` | +| [ZooKeeper](./zookeeper.md) | KV | KV | `zookeeper` | +| [Redis](./redis.md) | KV | KV | `redis` | +| [HTTP](./http.md) | Manual | JSON format | `http` | !!! info "More Providers"