feat: adds conformance test gateway api

This commit is contained in:
Michael 2024-01-22 15:30:05 +01:00 committed by GitHub
parent f57cee578f
commit 5e0855ecc7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 333 additions and 15 deletions

View file

@ -35,7 +35,11 @@ import (
"gopkg.in/yaml.v3"
)
var showLog = flag.Bool("tlog", false, "always show Traefik logs")
var (
showLog = flag.Bool("tlog", false, "always show Traefik logs")
k8sConformance = flag.Bool("k8sConformance", false, "run K8s Gateway API conformance test")
k8sConformanceRunTest = flag.String("k8sConformanceRunTest", "", "run a specific K8s Gateway API conformance test")
)
const tailscaleSecretFilePath = "tailscale.secret"