This repository includes an example plugin, demo
, for you to use as a reference for developing your own plugins.
The existing plugins can be browsed into the Plugin Catalog.
Traefik plugins are developed using the Go language.
Rather than being pre-compiled and linked, however, plugins are executed on the fly by Yaegi, an embedded Go interpreter.
For a plugin to be active for a given Traefik instance, it must be declared in the static configuration.
Plugins are parsed and loaded exclusively during startup, which allows Traefik to check the integrity of the code and catch errors early on. If an error occurs during loading, the plugin is disabled.
For security reasons, it is not possible to start a new plugin or modify an existing one while Traefik is running.
Plugin dependencies must be vendored for each plugin. Vendored packages should be included in the plugin's GitHub repository. (Go modules are not supported.)
For each plugin, the Traefik static configuration must define the module name (as is usual for Go packages).
The following declaration (given here in YAML) defines a plugin:
# Static configurationpilot:token: xxxxxexperimental:plugins:example:moduleName: github.com/traefik/pluginproviderdemoversion: v0.1.0providers:plugin:example:pollInterval: 2s
Traefik also offers a developer mode that can be used for temporary testing of plugins not hosted on GitHub. To use a plugin in local mode, the Traefik static configuration must define the module name (as is usual for Go packages) and a path to a Go workspace, which can be the local GOPATH or any directory.
The plugins must be placed in ./plugins-local
directory,
which should be in the working directory of the process running the Traefik binary.
The source code of the plugin should be organized as follows:
./plugins-local/
└── src
└── github.com
└── traefik
└── pluginproviderdemo
├── demo.go
├── demo_test.go
├── go.mod
├── go.sum
├── LICENSE
├── Makefile
├── readme.md
└── vendor
├── github.com
│ └── traefik
│ └── genconf
│ ├── dynamic
│ │ ├── config.go
│ │ ├── http_config.go
│ │ ├── marshaler.go
│ │ ├── middlewares.go
│ │ ├── plugins.go
│ │ ├── tcp_config.go
│ │ ├── tls
│ │ │ ├── certificate.go
│ │ │ └── tls.go
│ │ ├── types
│ │ │ ├── domains.go
│ │ │ └── tls.go
│ │ └── udp_config.go
│ └── LICENSE
└── modules.txt
# Static configuration# Local modeentryPoints:web:address: :80log:level: DEBUGexperimental:localPlugins:example:moduleName: github.com/traefik/pluginproviderdemoproviders:plugin:example:pollInterval: 2s
(In the above example, the pluginproviderdemo
plugin will be loaded from the path ./plugins-local/src/github.com/traefik/pluginproviderdemo
.)
A plugin package must define the following exported Go objects:
type Config struct { ... }
. The struct fields are arbitrary.func CreateConfig() *Config
.New(ctx context.Context, config *Config, name string) (*Provider, error)
.The provider must follow this interface:
type PluginProvider interface {Init() errorProvide(cfgChan chan<- json.Marshaler) errorStop() error}
The Go objects used to build the dynamic configuration are in the following repository: https://github.com/traefik/genconf
Example:
// Package example a example plugin.package exampleimport ("context""encoding/json""github.com/traefik/genconf/dynamic""github.com/traefik/genconf/dynamic/tls")// Config the plugin configuration.type Config struct {// ...}// CreateConfig creates the default plugin configuration.func CreateConfig() *Config {return &Config{// ...}}// Provider a plugin.type Provider struct {name string// ...}// New created a new plugin.func New(ctx context.Context, config *Config, name string) (*Provider, error) {// ...return &Provider{// ...}, nil}// Init the provider.func (p *Provider) Init() error {// ...return nil}// Provide creates and send dynamic configuration.func (p *Provider) Provide(cfgChan chan<- json.Marshaler) error {// ...cfgChan <- cfg// ...return nil}// Stop to stop the provider and the related go routines.func (p *Provider) Stop() error {// ...return nil}
Traefik plugins are stored and hosted as public GitHub repositories.
Every 30 minutes, the Traefik Pilot online service polls Github to find plugins and add them to its catalog.
To be recognized by Traefik Pilot, your repository must meet the following criteria:
traefik-plugin
topic must be set..traefik.yml
manifest must exist, and be filled with valid contents.If your repository fails to meet either of these prerequisites, Traefik Pilot will not see it.
A manifest is also mandatory, and it should be named .traefik.yml
and stored at the root of your project.
This YAML file provides Traefik Pilot with information about your plugin, such as a description, a full name, and so on.
Here is an example of a typical .traefik.yml
file:
# The name of your plugin as displayed in the Traefik Pilot web UI.displayName: Name of your plugintype: provider# The import path of your plugin.import: github.com/username/my-plugin# A brief description of what your plugin is doing.summary: Description of what my plugin is doing# Medias associated to the plugin (optional)iconPath: foo/icon.pngbannerPath: foo/banner.png# Configuration data for your plugin.# This is mandatory,# and Traefik Pilot will try to execute the plugin with the data you provide as part of its startup validity tests.testData:Headers:Foo: Bar
Properties include:
displayName
(required): The name of your plugin as displayed in the Traefik Pilot web UI.type
(required): the type of the plugin (i.e. provider
).import
(required): The import path of your plugin.summary
(required): A brief description of what your plugin is doing.testData
(required): Configuration data for your plugin. This is mandatory, and Traefik Pilot will try to execute the plugin with the data you provide as part of its startup validity tests.iconPath
(optional): A local path in the repository to the icon of the project.bannerPath
(optional): A local path in the repository to the image that will be used when you will share your plugin page in social medias.There should also be a go.mod
file at the root of your project. Traefik Pilot will use this file to validate the name of the project.
Traefik Pilot gets your sources from a Go module proxy, so your plugins need to be versioned with a git tag.
Last but not least, if your plugin has Go package dependencies, you need to vendor them and add them to your GitHub repository.
If something goes wrong with the integration of your plugin, Traefik Pilot will create an issue inside your Github repository and will stop trying to add your repo until you close the issue.
If Traefik Pilot fails to recognize your plugin, you will need to make one or more changes to your GitHub repository.
In order for your plugin to be successfully imported by Traefik Pilot, consult this checklist:
traefik-plugin
topic must be set on your repository..traefik.yml
file at the root of your project describing your plugin, and it must have a valid testData
property for testing purposes.go.mod
file at the root of your project.