traefik-helm-chart icon indicating copy to clipboard operation
traefik-helm-chart copied to clipboard

Add support for localPlugins

Open mloiseleur opened this issue 10 months ago • 1 comments

Description

Only remote plugins are natively supported FTM.

The localPlugins options should also be supported, with a working example

mloiseleur avatar Jan 07 '25 10:01 mloiseleur

For now you can add these values to our chart to enable to localPlugins:

additionalArguments = [
  "--experimental.localPlugins.headertoquery.moduleName=github.com/zalbiraw/headertoquery"
]

volumes = [
  {
    type = "volume",
    name = "header-to-query-plugin"
    mountPath = "/plugins-local/src/github.com/zalbiraw/headertoquery/"
  }
]

zalbiraw avatar Apr 17 '25 14:04 zalbiraw