fix: go module

This commit is contained in:
Ludovic Fernandez 2023-02-03 15:24:05 +01:00 committed by GitHub
parent 707f84e2e4
commit 044dc6a221
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
364 changed files with 1012 additions and 1012 deletions

View file

@ -11,7 +11,7 @@ builds:
env: env:
- CGO_ENABLED=0 - CGO_ENABLED=0
ldflags: ldflags:
- -s -w -X github.com/traefik/traefik/v2/pkg/version.Version={{.Version}} -X github.com/traefik/traefik/v2/pkg/version.Codename={{.Env.CODENAME}} -X github.com/traefik/traefik/v2/pkg/version.BuildDate={{.Date}} - -s -w -X github.com/traefik/traefik/v3/pkg/version.Version={{.Version}} -X github.com/traefik/traefik/v3/pkg/version.Codename={{.Env.CODENAME}} -X github.com/traefik/traefik/v3/pkg/version.BuildDate={{.Date}}
flags: flags:
- -trimpath - -trimpath
goos: goos:

View file

@ -4,7 +4,7 @@ import (
"time" "time"
ptypes "github.com/traefik/paerser/types" ptypes "github.com/traefik/paerser/types"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
) )
// TraefikCmdConfiguration wraps the static configuration and extra parameters. // TraefikCmdConfiguration wraps the static configuration and extra parameters.

View file

@ -8,7 +8,7 @@ import (
"time" "time"
"github.com/traefik/paerser/cli" "github.com/traefik/paerser/cli"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
) )
// NewCmd builds a new HealthCheck command. // NewCmd builds a new HealthCheck command.

View file

@ -11,7 +11,7 @@ import (
"strings" "strings"
) )
const rootPkg = "github.com/traefik/traefik/v2/pkg/config/dynamic" const rootPkg = "github.com/traefik/traefik/v3/pkg/config/dynamic"
const ( const (
destModuleName = "github.com/traefik/genconf" destModuleName = "github.com/traefik/genconf"
@ -57,8 +57,8 @@ func run(dest string) error {
} }
centrifuge.IncludedImports = []string{ centrifuge.IncludedImports = []string{
"github.com/traefik/traefik/v2/pkg/tls", "github.com/traefik/traefik/v3/pkg/tls",
"github.com/traefik/traefik/v2/pkg/types", "github.com/traefik/traefik/v3/pkg/types",
} }
centrifuge.ExcludedTypes = []string{ centrifuge.ExcludedTypes = []string{
@ -71,8 +71,8 @@ func run(dest string) error {
} }
centrifuge.ExcludedFiles = []string{ centrifuge.ExcludedFiles = []string{
"github.com/traefik/traefik/v2/pkg/types/logs.go", "github.com/traefik/traefik/v3/pkg/types/logs.go",
"github.com/traefik/traefik/v2/pkg/types/metrics.go", "github.com/traefik/traefik/v3/pkg/types/metrics.go",
} }
centrifuge.TypeCleaner = cleanType centrifuge.TypeCleaner = cleanType
@ -87,11 +87,11 @@ func run(dest string) error {
} }
func cleanType(typ types.Type, base string) string { func cleanType(typ types.Type, base string) string {
if typ.String() == "github.com/traefik/traefik/v2/pkg/tls.FileOrContent" { if typ.String() == "github.com/traefik/traefik/v3/pkg/tls.FileOrContent" {
return "string" return "string"
} }
if typ.String() == "[]github.com/traefik/traefik/v2/pkg/tls.FileOrContent" { if typ.String() == "[]github.com/traefik/traefik/v3/pkg/tls.FileOrContent" {
return "[]string" return "[]string"
} }
@ -103,8 +103,8 @@ func cleanType(typ types.Type, base string) string {
return strings.ReplaceAll(typ.String(), base+".", "") return strings.ReplaceAll(typ.String(), base+".", "")
} }
if strings.Contains(typ.String(), "github.com/traefik/traefik/v2/pkg/") { if strings.Contains(typ.String(), "github.com/traefik/traefik/v3/pkg/") {
return strings.ReplaceAll(typ.String(), "github.com/traefik/traefik/v2/pkg/", "") return strings.ReplaceAll(typ.String(), "github.com/traefik/traefik/v3/pkg/", "")
} }
return typ.String() return typ.String()
@ -114,9 +114,9 @@ func cleanPackage(src string) string {
switch src { switch src {
case "github.com/traefik/paerser/types": case "github.com/traefik/paerser/types":
return "" return ""
case "github.com/traefik/traefik/v2/pkg/tls": case "github.com/traefik/traefik/v3/pkg/tls":
return path.Join(destModuleName, destPkg, "tls") return path.Join(destModuleName, destPkg, "tls")
case "github.com/traefik/traefik/v2/pkg/types": case "github.com/traefik/traefik/v3/pkg/types":
return path.Join(destModuleName, destPkg, "types") return path.Join(destModuleName, destPkg, "types")
default: default:
return src return src

View file

@ -11,8 +11,8 @@ import (
"github.com/rs/zerolog" "github.com/rs/zerolog"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
"github.com/traefik/traefik/v2/pkg/logs" "github.com/traefik/traefik/v3/pkg/logs"
) )
func init() { func init() {

View file

@ -3,8 +3,8 @@ package main
import ( import (
"fmt" "fmt"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
"github.com/traefik/traefik/v2/pkg/plugins" "github.com/traefik/traefik/v3/pkg/plugins"
) )
const outputDir = "./plugins-storage/" const outputDir = "./plugins-storage/"

View file

@ -21,32 +21,32 @@ import (
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"github.com/spiffe/go-spiffe/v2/workloadapi" "github.com/spiffe/go-spiffe/v2/workloadapi"
"github.com/traefik/paerser/cli" "github.com/traefik/paerser/cli"
"github.com/traefik/traefik/v2/cmd" "github.com/traefik/traefik/v3/cmd"
"github.com/traefik/traefik/v2/cmd/healthcheck" "github.com/traefik/traefik/v3/cmd/healthcheck"
cmdVersion "github.com/traefik/traefik/v2/cmd/version" cmdVersion "github.com/traefik/traefik/v3/cmd/version"
tcli "github.com/traefik/traefik/v2/pkg/cli" tcli "github.com/traefik/traefik/v3/pkg/cli"
"github.com/traefik/traefik/v2/pkg/collector" "github.com/traefik/traefik/v3/pkg/collector"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
"github.com/traefik/traefik/v2/pkg/logs" "github.com/traefik/traefik/v3/pkg/logs"
"github.com/traefik/traefik/v2/pkg/metrics" "github.com/traefik/traefik/v3/pkg/metrics"
"github.com/traefik/traefik/v2/pkg/middlewares/accesslog" "github.com/traefik/traefik/v3/pkg/middlewares/accesslog"
"github.com/traefik/traefik/v2/pkg/provider/acme" "github.com/traefik/traefik/v3/pkg/provider/acme"
"github.com/traefik/traefik/v2/pkg/provider/aggregator" "github.com/traefik/traefik/v3/pkg/provider/aggregator"
"github.com/traefik/traefik/v2/pkg/provider/hub" "github.com/traefik/traefik/v3/pkg/provider/hub"
"github.com/traefik/traefik/v2/pkg/provider/tailscale" "github.com/traefik/traefik/v3/pkg/provider/tailscale"
"github.com/traefik/traefik/v2/pkg/provider/traefik" "github.com/traefik/traefik/v3/pkg/provider/traefik"
"github.com/traefik/traefik/v2/pkg/safe" "github.com/traefik/traefik/v3/pkg/safe"
"github.com/traefik/traefik/v2/pkg/server" "github.com/traefik/traefik/v3/pkg/server"
"github.com/traefik/traefik/v2/pkg/server/middleware" "github.com/traefik/traefik/v3/pkg/server/middleware"
"github.com/traefik/traefik/v2/pkg/server/service" "github.com/traefik/traefik/v3/pkg/server/service"
"github.com/traefik/traefik/v2/pkg/tcp" "github.com/traefik/traefik/v3/pkg/tcp"
traefiktls "github.com/traefik/traefik/v2/pkg/tls" traefiktls "github.com/traefik/traefik/v3/pkg/tls"
"github.com/traefik/traefik/v2/pkg/tracing" "github.com/traefik/traefik/v3/pkg/tracing"
"github.com/traefik/traefik/v2/pkg/tracing/jaeger" "github.com/traefik/traefik/v3/pkg/tracing/jaeger"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
"github.com/traefik/traefik/v2/pkg/version" "github.com/traefik/traefik/v3/pkg/version"
) )
func main() { func main() {

View file

@ -9,7 +9,7 @@ import (
"github.com/go-kit/kit/metrics" "github.com/go-kit/kit/metrics"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
) )
// FooCert is a PEM-encoded TLS cert. // FooCert is a PEM-encoded TLS cert.

View file

@ -8,7 +8,7 @@ import (
"text/template" "text/template"
"github.com/traefik/paerser/cli" "github.com/traefik/paerser/cli"
"github.com/traefik/traefik/v2/pkg/version" "github.com/traefik/traefik/v3/pkg/version"
) )
var versionTemplate = `Version: {{.Version}} var versionTemplate = `Version: {{.Version}}

View file

@ -95,7 +95,7 @@ and [Docker Swarm Mode](https://docs.docker.com/engine/swarm/).
## Routing Configuration ## Routing Configuration
When using Docker as a [provider](./overview.md), When using Docker as a [provider](./overview.md),
Traefik uses [container labels](https://docs.docker.com/engine/reference/commandline/run/#-set-metadata-on-container--l---label---label-file) to retrieve its routing configuration. Traefik uses [container labels](https://docs.docker.com/engine/reference/commandline/run/#label) to retrieve its routing configuration.
See the list of labels in the dedicated [routing](../routing/providers/docker.md) section. See the list of labels in the dedicated [routing](../routing/providers/docker.md) section.

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/traefik/traefik/v2 module github.com/traefik/traefik/v3
go 1.19 go 1.19

View file

@ -13,8 +13,8 @@ import (
"github.com/go-check/check" "github.com/go-check/check"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
"github.com/traefik/traefik/v2/pkg/middlewares/accesslog" "github.com/traefik/traefik/v3/pkg/middlewares/accesslog"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -12,11 +12,11 @@ import (
"github.com/go-check/check" "github.com/go-check/check"
"github.com/miekg/dns" "github.com/miekg/dns"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
"github.com/traefik/traefik/v2/pkg/provider/acme" "github.com/traefik/traefik/v3/pkg/provider/acme"
"github.com/traefik/traefik/v2/pkg/testhelpers" "github.com/traefik/traefik/v3/pkg/testhelpers"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -11,8 +11,8 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -9,7 +9,7 @@ import (
"github.com/go-check/check" "github.com/go-check/check"
"github.com/hashicorp/consul/api" "github.com/hashicorp/consul/api"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -16,8 +16,8 @@ import (
"github.com/kvtools/valkeyrie" "github.com/kvtools/valkeyrie"
"github.com/kvtools/valkeyrie/store" "github.com/kvtools/valkeyrie/store"
"github.com/pmezard/go-difflib/difflib" "github.com/pmezard/go-difflib/difflib"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
"github.com/traefik/traefik/v2/pkg/api" "github.com/traefik/traefik/v3/pkg/api"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -8,9 +8,9 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
"github.com/traefik/traefik/v2/pkg/api" "github.com/traefik/traefik/v3/pkg/api"
"github.com/traefik/traefik/v2/pkg/testhelpers" "github.com/traefik/traefik/v3/pkg/testhelpers"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -9,7 +9,7 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -7,7 +7,7 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -15,8 +15,8 @@ import (
"github.com/kvtools/valkeyrie" "github.com/kvtools/valkeyrie"
"github.com/kvtools/valkeyrie/store" "github.com/kvtools/valkeyrie/store"
"github.com/pmezard/go-difflib/difflib" "github.com/pmezard/go-difflib/difflib"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
"github.com/traefik/traefik/v2/pkg/api" "github.com/traefik/traefik/v3/pkg/api"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -6,7 +6,7 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -12,8 +12,8 @@ import (
"github.com/go-check/check" "github.com/go-check/check"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/integration/helloworld" "github.com/traefik/traefik/v3/integration/helloworld"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
"google.golang.org/grpc" "google.golang.org/grpc"
"google.golang.org/grpc/credentials" "google.golang.org/grpc/credentials"
"google.golang.org/grpc/credentials/insecure" "google.golang.org/grpc/credentials/insecure"

View file

@ -6,7 +6,7 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -10,7 +10,7 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -5,7 +5,7 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -8,8 +8,8 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -12,9 +12,9 @@ import (
"github.com/BurntSushi/toml" "github.com/BurntSushi/toml"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
traefiktls "github.com/traefik/traefik/v2/pkg/tls" traefiktls "github.com/traefik/traefik/v3/pkg/tls"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -31,7 +31,7 @@ import (
"github.com/rs/zerolog" "github.com/rs/zerolog"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"github.com/traefik/traefik/v2/pkg/logs" "github.com/traefik/traefik/v3/pkg/logs"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -16,8 +16,8 @@ import (
"github.com/go-check/check" "github.com/go-check/check"
"github.com/pmezard/go-difflib/difflib" "github.com/pmezard/go-difflib/difflib"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
"github.com/traefik/traefik/v2/pkg/api" "github.com/traefik/traefik/v3/pkg/api"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -9,7 +9,7 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -13,7 +13,7 @@ import (
"github.com/go-check/check" "github.com/go-check/check"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -6,7 +6,7 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -6,7 +6,7 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -15,8 +15,8 @@ import (
"github.com/kvtools/valkeyrie" "github.com/kvtools/valkeyrie"
"github.com/kvtools/valkeyrie/store" "github.com/kvtools/valkeyrie/store"
"github.com/pmezard/go-difflib/difflib" "github.com/pmezard/go-difflib/difflib"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
"github.com/traefik/traefik/v2/pkg/api" "github.com/traefik/traefik/v3/pkg/api"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -10,8 +10,8 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -7,7 +7,7 @@ import (
"github.com/go-check/check" "github.com/go-check/check"
"github.com/gorilla/websocket" "github.com/gorilla/websocket"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -18,8 +18,8 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -13,7 +13,7 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -8,7 +8,7 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -7,7 +7,7 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -6,7 +6,7 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -8,7 +8,7 @@ import (
"time" "time"
"github.com/go-check/check" "github.com/go-check/check"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -12,7 +12,7 @@ import (
"github.com/go-check/check" "github.com/go-check/check"
gorillawebsocket "github.com/gorilla/websocket" gorillawebsocket "github.com/gorilla/websocket"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
"golang.org/x/net/websocket" "golang.org/x/net/websocket"
) )

View file

@ -15,8 +15,8 @@ import (
"github.com/kvtools/valkeyrie/store" "github.com/kvtools/valkeyrie/store"
"github.com/kvtools/zookeeper" "github.com/kvtools/zookeeper"
"github.com/pmezard/go-difflib/difflib" "github.com/pmezard/go-difflib/difflib"
"github.com/traefik/traefik/v2/integration/try" "github.com/traefik/traefik/v3/integration/try"
"github.com/traefik/traefik/v2/pkg/api" "github.com/traefik/traefik/v3/pkg/api"
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )

View file

@ -15,7 +15,7 @@ import (
"github.com/traefik/paerser/flag" "github.com/traefik/paerser/flag"
"github.com/traefik/paerser/generator" "github.com/traefik/paerser/generator"
"github.com/traefik/paerser/parser" "github.com/traefik/paerser/parser"
"github.com/traefik/traefik/v2/cmd" "github.com/traefik/traefik/v3/cmd"
) )
func main() { func main() {

View file

@ -6,7 +6,7 @@ import (
"net/url" "net/url"
"github.com/gorilla/mux" "github.com/gorilla/mux"
"github.com/traefik/traefik/v2/webui" "github.com/traefik/traefik/v3/webui"
) )
// Handler expose dashboard routes. // Handler expose dashboard routes.

View file

@ -8,10 +8,10 @@ import (
"github.com/gorilla/mux" "github.com/gorilla/mux"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
"github.com/traefik/traefik/v2/pkg/version" "github.com/traefik/traefik/v3/pkg/version"
) )
type apiError struct { type apiError struct {

View file

@ -9,7 +9,7 @@ import (
"github.com/gorilla/mux" "github.com/gorilla/mux"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
) )
type entryPointRepresentation struct { type entryPointRepresentation struct {

View file

@ -12,8 +12,8 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
) )
func TestHandler_EntryPoints(t *testing.T) { func TestHandler_EntryPoints(t *testing.T) {

View file

@ -9,8 +9,8 @@ import (
"github.com/gorilla/mux" "github.com/gorilla/mux"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
"github.com/traefik/traefik/v2/pkg/tls" "github.com/traefik/traefik/v3/pkg/tls"
) )
type routerRepresentation struct { type routerRepresentation struct {

View file

@ -13,9 +13,9 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
) )
func Bool(v bool) *bool { return &v } func Bool(v bool) *bool { return &v }

View file

@ -6,8 +6,8 @@ import (
"reflect" "reflect"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
) )
type schemeOverview struct { type schemeOverview struct {

View file

@ -10,17 +10,17 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
"github.com/traefik/traefik/v2/pkg/provider/docker" "github.com/traefik/traefik/v3/pkg/provider/docker"
"github.com/traefik/traefik/v2/pkg/provider/file" "github.com/traefik/traefik/v3/pkg/provider/file"
"github.com/traefik/traefik/v2/pkg/provider/hub" "github.com/traefik/traefik/v3/pkg/provider/hub"
"github.com/traefik/traefik/v2/pkg/provider/kubernetes/crd" "github.com/traefik/traefik/v3/pkg/provider/kubernetes/crd"
"github.com/traefik/traefik/v2/pkg/provider/kubernetes/ingress" "github.com/traefik/traefik/v3/pkg/provider/kubernetes/ingress"
"github.com/traefik/traefik/v2/pkg/provider/rest" "github.com/traefik/traefik/v3/pkg/provider/rest"
"github.com/traefik/traefik/v2/pkg/tracing/jaeger" "github.com/traefik/traefik/v3/pkg/tracing/jaeger"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
func TestHandler_Overview(t *testing.T) { func TestHandler_Overview(t *testing.T) {

View file

@ -9,7 +9,7 @@ import (
"github.com/gorilla/mux" "github.com/gorilla/mux"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
) )
type tcpRouterRepresentation struct { type tcpRouterRepresentation struct {

View file

@ -11,9 +11,9 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
) )
func TestHandler_TCP(t *testing.T) { func TestHandler_TCP(t *testing.T) {

View file

@ -11,9 +11,9 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
) )
var updateExpected = flag.Bool("update_expected", false, "Update expected files in testdata") var updateExpected = flag.Bool("update_expected", false, "Update expected files in testdata")

View file

@ -9,7 +9,7 @@ import (
"github.com/gorilla/mux" "github.com/gorilla/mux"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
) )
type udpRouterRepresentation struct { type udpRouterRepresentation struct {

View file

@ -11,9 +11,9 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
) )
func TestHandler_UDP(t *testing.T) { func TestHandler_UDP(t *testing.T) {

View file

@ -7,8 +7,8 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
) )
func TestSortRouters(t *testing.T) { func TestSortRouters(t *testing.T) {

View file

@ -11,9 +11,9 @@ import (
"github.com/mitchellh/hashstructure" "github.com/mitchellh/hashstructure"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
"github.com/traefik/traefik/v2/pkg/redactor" "github.com/traefik/traefik/v3/pkg/redactor"
"github.com/traefik/traefik/v2/pkg/version" "github.com/traefik/traefik/v3/pkg/version"
) )
// collectorURL URL where the stats are sent. // collectorURL URL where the stats are sent.

View file

@ -5,7 +5,7 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"github.com/traefik/traefik/v2/pkg/config/static" "github.com/traefik/traefik/v3/pkg/config/static"
) )
func Test_createBody(t *testing.T) { func Test_createBody(t *testing.T) {

View file

@ -1,7 +1,7 @@
package dynamic package dynamic
import ( import (
"github.com/traefik/traefik/v2/pkg/tls" "github.com/traefik/traefik/v3/pkg/tls"
) )
// +k8s:deepcopy-gen=true // +k8s:deepcopy-gen=true

View file

@ -5,8 +5,8 @@ import (
"time" "time"
ptypes "github.com/traefik/paerser/types" ptypes "github.com/traefik/paerser/types"
traefiktls "github.com/traefik/traefik/v2/pkg/tls" traefiktls "github.com/traefik/traefik/v3/pkg/tls"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
const ( const (

View file

@ -4,8 +4,8 @@ import (
"time" "time"
ptypes "github.com/traefik/paerser/types" ptypes "github.com/traefik/paerser/types"
"github.com/traefik/traefik/v2/pkg/ip" "github.com/traefik/traefik/v3/pkg/ip"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
// +k8s:deepcopy-gen=true // +k8s:deepcopy-gen=true

View file

@ -5,8 +5,8 @@ import (
"time" "time"
ptypes "github.com/traefik/paerser/types" ptypes "github.com/traefik/paerser/types"
traefiktls "github.com/traefik/traefik/v2/pkg/tls" traefiktls "github.com/traefik/traefik/v3/pkg/tls"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
// +k8s:deepcopy-gen=true // +k8s:deepcopy-gen=true

View file

@ -30,8 +30,8 @@ THE SOFTWARE.
package dynamic package dynamic
import ( import (
tls "github.com/traefik/traefik/v2/pkg/tls" tls "github.com/traefik/traefik/v3/pkg/tls"
types "github.com/traefik/traefik/v2/pkg/types" types "github.com/traefik/traefik/v3/pkg/types"
) )
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

View file

@ -3,7 +3,7 @@ package label
import ( import (
"github.com/traefik/paerser/parser" "github.com/traefik/paerser/parser"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
) )
// DecodeConfiguration converts the labels to a configuration. // DecodeConfiguration converts the labels to a configuration.

View file

@ -8,8 +8,8 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
ptypes "github.com/traefik/paerser/types" ptypes "github.com/traefik/paerser/types"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
func TestDecodeConfiguration(t *testing.T) { func TestDecodeConfiguration(t *testing.T) {

View file

@ -5,8 +5,8 @@ import (
"strings" "strings"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/logs" "github.com/traefik/traefik/v3/pkg/logs"
) )
// Status of the router/service. // Status of the router/service.

View file

@ -7,8 +7,8 @@ import (
"sync" "sync"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/logs" "github.com/traefik/traefik/v3/pkg/logs"
) )
// GetRoutersByEntryPoints returns all the http routers by entry points name and routers name. // GetRoutersByEntryPoints returns all the http routers by entry points name and routers name.

View file

@ -5,7 +5,7 @@ import (
"testing" "testing"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
) )
func TestGetRoutersByEntryPoints(t *testing.T) { func TestGetRoutersByEntryPoints(t *testing.T) {

View file

@ -5,8 +5,8 @@ import (
"fmt" "fmt"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/logs" "github.com/traefik/traefik/v3/pkg/logs"
) )
// GetTCPRoutersByEntryPoints returns all the tcp routers by entry points name and routers name. // GetTCPRoutersByEntryPoints returns all the tcp routers by entry points name and routers name.

View file

@ -5,7 +5,7 @@ import (
"testing" "testing"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
) )
func TestGetTCPRoutersByEntryPoints(t *testing.T) { func TestGetTCPRoutersByEntryPoints(t *testing.T) {

View file

@ -7,8 +7,8 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
ptypes "github.com/traefik/paerser/types" ptypes "github.com/traefik/paerser/types"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
) )
// all the Routers/Middlewares/Services are considered fully qualified. // all the Routers/Middlewares/Services are considered fully qualified.

View file

@ -5,8 +5,8 @@ import (
"fmt" "fmt"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/logs" "github.com/traefik/traefik/v3/pkg/logs"
) )
// GetUDPRoutersByEntryPoints returns all the UDP routers by entry points name and routers name. // GetUDPRoutersByEntryPoints returns all the UDP routers by entry points name and routers name.

View file

@ -5,7 +5,7 @@ import (
"testing" "testing"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
) )
func TestGetUDPRoutersByEntryPoints(t *testing.T) { func TestGetUDPRoutersByEntryPoints(t *testing.T) {

View file

@ -6,7 +6,7 @@ import (
"strings" "strings"
ptypes "github.com/traefik/paerser/types" ptypes "github.com/traefik/paerser/types"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
// EntryPoint holds the entry point configuration. // EntryPoint holds the entry point configuration.

View file

@ -1,6 +1,6 @@
package static package static
import "github.com/traefik/traefik/v2/pkg/plugins" import "github.com/traefik/traefik/v3/pkg/plugins"
// Experimental experimental Traefik features. // Experimental experimental Traefik features.
type Experimental struct { type Experimental struct {

View file

@ -4,8 +4,8 @@ import (
"errors" "errors"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/logs" "github.com/traefik/traefik/v3/pkg/logs"
"github.com/traefik/traefik/v2/pkg/provider/hub" "github.com/traefik/traefik/v3/pkg/provider/hub"
) )
func (c *Configuration) initHubProvider() error { func (c *Configuration) initHubProvider() error {

View file

@ -9,33 +9,33 @@ import (
"github.com/rs/zerolog" "github.com/rs/zerolog"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
ptypes "github.com/traefik/paerser/types" ptypes "github.com/traefik/paerser/types"
"github.com/traefik/traefik/v2/pkg/logs" "github.com/traefik/traefik/v3/pkg/logs"
"github.com/traefik/traefik/v2/pkg/ping" "github.com/traefik/traefik/v3/pkg/ping"
acmeprovider "github.com/traefik/traefik/v2/pkg/provider/acme" acmeprovider "github.com/traefik/traefik/v3/pkg/provider/acme"
"github.com/traefik/traefik/v2/pkg/provider/consulcatalog" "github.com/traefik/traefik/v3/pkg/provider/consulcatalog"
"github.com/traefik/traefik/v2/pkg/provider/docker" "github.com/traefik/traefik/v3/pkg/provider/docker"
"github.com/traefik/traefik/v2/pkg/provider/ecs" "github.com/traefik/traefik/v3/pkg/provider/ecs"
"github.com/traefik/traefik/v2/pkg/provider/file" "github.com/traefik/traefik/v3/pkg/provider/file"
"github.com/traefik/traefik/v2/pkg/provider/http" "github.com/traefik/traefik/v3/pkg/provider/http"
"github.com/traefik/traefik/v2/pkg/provider/hub" "github.com/traefik/traefik/v3/pkg/provider/hub"
"github.com/traefik/traefik/v2/pkg/provider/kubernetes/crd" "github.com/traefik/traefik/v3/pkg/provider/kubernetes/crd"
"github.com/traefik/traefik/v2/pkg/provider/kubernetes/gateway" "github.com/traefik/traefik/v3/pkg/provider/kubernetes/gateway"
"github.com/traefik/traefik/v2/pkg/provider/kubernetes/ingress" "github.com/traefik/traefik/v3/pkg/provider/kubernetes/ingress"
"github.com/traefik/traefik/v2/pkg/provider/kv/consul" "github.com/traefik/traefik/v3/pkg/provider/kv/consul"
"github.com/traefik/traefik/v2/pkg/provider/kv/etcd" "github.com/traefik/traefik/v3/pkg/provider/kv/etcd"
"github.com/traefik/traefik/v2/pkg/provider/kv/redis" "github.com/traefik/traefik/v3/pkg/provider/kv/redis"
"github.com/traefik/traefik/v2/pkg/provider/kv/zk" "github.com/traefik/traefik/v3/pkg/provider/kv/zk"
"github.com/traefik/traefik/v2/pkg/provider/nomad" "github.com/traefik/traefik/v3/pkg/provider/nomad"
"github.com/traefik/traefik/v2/pkg/provider/rest" "github.com/traefik/traefik/v3/pkg/provider/rest"
"github.com/traefik/traefik/v2/pkg/tls" "github.com/traefik/traefik/v3/pkg/tls"
"github.com/traefik/traefik/v2/pkg/tracing/datadog" "github.com/traefik/traefik/v3/pkg/tracing/datadog"
"github.com/traefik/traefik/v2/pkg/tracing/elastic" "github.com/traefik/traefik/v3/pkg/tracing/elastic"
"github.com/traefik/traefik/v2/pkg/tracing/haystack" "github.com/traefik/traefik/v3/pkg/tracing/haystack"
"github.com/traefik/traefik/v2/pkg/tracing/instana" "github.com/traefik/traefik/v3/pkg/tracing/instana"
"github.com/traefik/traefik/v2/pkg/tracing/jaeger" "github.com/traefik/traefik/v3/pkg/tracing/jaeger"
"github.com/traefik/traefik/v2/pkg/tracing/opentelemetry" "github.com/traefik/traefik/v3/pkg/tracing/opentelemetry"
"github.com/traefik/traefik/v2/pkg/tracing/zipkin" "github.com/traefik/traefik/v3/pkg/tracing/zipkin"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
const ( const (

View file

@ -4,7 +4,7 @@ import (
"testing" "testing"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/traefik/traefik/v2/pkg/provider/hub" "github.com/traefik/traefik/v3/pkg/provider/hub"
) )
func TestHasEntrypoint(t *testing.T) { func TestHasEntrypoint(t *testing.T) {

View file

@ -12,8 +12,8 @@ import (
gokitmetrics "github.com/go-kit/kit/metrics" gokitmetrics "github.com/go-kit/kit/metrics"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
"google.golang.org/grpc" "google.golang.org/grpc"
"google.golang.org/grpc/codes" "google.golang.org/grpc/codes"
"google.golang.org/grpc/credentials/insecure" "google.golang.org/grpc/credentials/insecure"

View file

@ -12,9 +12,9 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
ptypes "github.com/traefik/paerser/types" ptypes "github.com/traefik/paerser/types"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/config/runtime" "github.com/traefik/traefik/v3/pkg/config/runtime"
"github.com/traefik/traefik/v2/pkg/testhelpers" "github.com/traefik/traefik/v3/pkg/testhelpers"
healthpb "google.golang.org/grpc/health/grpc_health_v1" healthpb "google.golang.org/grpc/health/grpc_health_v1"
) )

View file

@ -12,8 +12,8 @@ import (
gokitmetrics "github.com/go-kit/kit/metrics" gokitmetrics "github.com/go-kit/kit/metrics"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/testhelpers" "github.com/traefik/traefik/v3/pkg/testhelpers"
"google.golang.org/grpc" "google.golang.org/grpc"
healthpb "google.golang.org/grpc/health/grpc_health_v1" healthpb "google.golang.org/grpc/health/grpc_health_v1"
) )

View file

@ -6,9 +6,9 @@ import (
"github.com/go-kit/kit/metrics/dogstatsd" "github.com/go-kit/kit/metrics/dogstatsd"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/logs" "github.com/traefik/traefik/v3/pkg/logs"
"github.com/traefik/traefik/v2/pkg/safe" "github.com/traefik/traefik/v3/pkg/safe"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
var ( var (

View file

@ -9,7 +9,7 @@ import (
"github.com/stvp/go-udp-testing" "github.com/stvp/go-udp-testing"
ptypes "github.com/traefik/paerser/types" ptypes "github.com/traefik/paerser/types"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
func TestDatadog(t *testing.T) { func TestDatadog(t *testing.T) {

View file

@ -12,9 +12,9 @@ import (
influxdb2log "github.com/influxdata/influxdb-client-go/v2/log" influxdb2log "github.com/influxdata/influxdb-client-go/v2/log"
influxdb "github.com/influxdata/influxdb1-client/v2" influxdb "github.com/influxdata/influxdb1-client/v2"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/logs" "github.com/traefik/traefik/v3/pkg/logs"
"github.com/traefik/traefik/v2/pkg/safe" "github.com/traefik/traefik/v3/pkg/safe"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
var ( var (

View file

@ -13,7 +13,7 @@ import (
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
ptypes "github.com/traefik/paerser/types" ptypes "github.com/traefik/paerser/types"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
func TestInfluxDB2(t *testing.T) { func TestInfluxDB2(t *testing.T) {

View file

@ -10,8 +10,8 @@ import (
"github.com/go-kit/kit/metrics" "github.com/go-kit/kit/metrics"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
"github.com/traefik/traefik/v2/pkg/version" "github.com/traefik/traefik/v3/pkg/version"
"go.opentelemetry.io/otel/attribute" "go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc" "go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc"
"go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp" "go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp"

View file

@ -15,8 +15,8 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
ptypes "github.com/traefik/paerser/types" ptypes "github.com/traefik/paerser/types"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
"github.com/traefik/traefik/v2/pkg/version" "github.com/traefik/traefik/v3/pkg/version"
"go.opentelemetry.io/collector/pdata/pmetric/pmetricotlp" "go.opentelemetry.io/collector/pdata/pmetric/pmetricotlp"
"go.opentelemetry.io/otel/attribute" "go.opentelemetry.io/otel/attribute"
) )

View file

@ -12,8 +12,8 @@ import (
"github.com/prometheus/client_golang/prometheus/collectors" "github.com/prometheus/client_golang/prometheus/collectors"
"github.com/prometheus/client_golang/prometheus/promhttp" "github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
const ( const (

View file

@ -11,9 +11,9 @@ import (
"github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus"
dto "github.com/prometheus/client_model/go" dto "github.com/prometheus/client_model/go"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
th "github.com/traefik/traefik/v2/pkg/testhelpers" th "github.com/traefik/traefik/v3/pkg/testhelpers"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
func TestRegisterPromState(t *testing.T) { func TestRegisterPromState(t *testing.T) {

View file

@ -6,9 +6,9 @@ import (
"github.com/go-kit/kit/metrics/statsd" "github.com/go-kit/kit/metrics/statsd"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/logs" "github.com/traefik/traefik/v3/pkg/logs"
"github.com/traefik/traefik/v2/pkg/safe" "github.com/traefik/traefik/v3/pkg/safe"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
var ( var (

View file

@ -9,7 +9,7 @@ import (
"github.com/stvp/go-udp-testing" "github.com/stvp/go-udp-testing"
ptypes "github.com/traefik/paerser/types" ptypes "github.com/traefik/paerser/types"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
func TestStatsD(t *testing.T) { func TestStatsD(t *testing.T) {

View file

@ -5,8 +5,8 @@ import (
"time" "time"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/traefik/traefik/v2/pkg/logs" "github.com/traefik/traefik/v3/pkg/logs"
"github.com/traefik/traefik/v2/pkg/middlewares/capture" "github.com/traefik/traefik/v3/pkg/middlewares/capture"
"github.com/vulcand/oxy/v2/utils" "github.com/vulcand/oxy/v2/utils"
) )

View file

@ -19,10 +19,10 @@ import (
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
ptypes "github.com/traefik/paerser/types" ptypes "github.com/traefik/paerser/types"
"github.com/traefik/traefik/v2/pkg/logs" "github.com/traefik/traefik/v3/pkg/logs"
"github.com/traefik/traefik/v2/pkg/middlewares/capture" "github.com/traefik/traefik/v3/pkg/middlewares/capture"
traefiktls "github.com/traefik/traefik/v2/pkg/tls" traefiktls "github.com/traefik/traefik/v3/pkg/tls"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
type key string type key string

View file

@ -22,8 +22,8 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
ptypes "github.com/traefik/paerser/types" ptypes "github.com/traefik/paerser/types"
"github.com/traefik/traefik/v2/pkg/middlewares/capture" "github.com/traefik/traefik/v3/pkg/middlewares/capture"
"github.com/traefik/traefik/v2/pkg/types" "github.com/traefik/traefik/v3/pkg/types"
) )
var ( var (

View file

@ -6,9 +6,9 @@ import (
"net/http" "net/http"
"github.com/opentracing/opentracing-go/ext" "github.com/opentracing/opentracing-go/ext"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/middlewares" "github.com/traefik/traefik/v3/pkg/middlewares"
"github.com/traefik/traefik/v2/pkg/tracing" "github.com/traefik/traefik/v3/pkg/tracing"
) )
const ( const (

View file

@ -7,8 +7,8 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/testhelpers" "github.com/traefik/traefik/v3/pkg/testhelpers"
) )
func TestNewAddPrefix(t *testing.T) { func TestNewAddPrefix(t *testing.T) {

View file

@ -9,10 +9,10 @@ import (
goauth "github.com/abbot/go-http-auth" goauth "github.com/abbot/go-http-auth"
"github.com/opentracing/opentracing-go/ext" "github.com/opentracing/opentracing-go/ext"
"github.com/traefik/traefik/v2/pkg/config/dynamic" "github.com/traefik/traefik/v3/pkg/config/dynamic"
"github.com/traefik/traefik/v2/pkg/middlewares" "github.com/traefik/traefik/v3/pkg/middlewares"
"github.com/traefik/traefik/v2/pkg/middlewares/accesslog" "github.com/traefik/traefik/v3/pkg/middlewares/accesslog"
"github.com/traefik/traefik/v2/pkg/tracing" "github.com/traefik/traefik/v3/pkg/tracing"
) )
const ( const (

Some files were not shown because too many files have changed in this diff Show more