File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ require (
12
12
github.com/prometheus/client_golang v1.13.0
13
13
github.com/spf13/afero v1.9.2
14
14
github.com/stretchr/testify v1.8.0
15
- github.com/xenitab/pkg/gin v0.0.1
15
+ github.com/xenitab/pkg/gin v0.0.2
16
16
github.com/xenitab/pkg/kubernetes v0.0.1
17
17
go.uber.org/zap v1.23.0
18
18
golang.org/x/sync v0.1.0
Original file line number Diff line number Diff line change @@ -337,8 +337,8 @@ github.com/ugorji/go/codec v1.2.7/go.mod h1:WGN1fab3R1fzQlVQTkfxVtIBhWDRqOviHU95
337
337
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f /go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU =
338
338
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 /go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ =
339
339
github.com/xeipuuv/gojsonschema v1.2.0 /go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y =
340
- github.com/xenitab/pkg/gin v0.0.1 h1:85RUANrNRpLKjWAk9uXA9+5lYBRc8DWepJIUvNaVtbw =
341
- github.com/xenitab/pkg/gin v0.0.1 /go.mod h1:kRbEKpXQSO2STn7eBT5aFNO2l4+l0/7KZabBBQ3V+co =
340
+ github.com/xenitab/pkg/gin v0.0.2 h1:krt9Cx83tDHs69NISfrIVvkwlUGoKY/yWe4/+QWY5/Y =
341
+ github.com/xenitab/pkg/gin v0.0.2 /go.mod h1:kRbEKpXQSO2STn7eBT5aFNO2l4+l0/7KZabBBQ3V+co =
342
342
github.com/xenitab/pkg/kubernetes v0.0.1 h1:2N7Cr42hzCWHTEcSfMspoWAHPbo+oVkT6UMnYfYgNyM =
343
343
github.com/xenitab/pkg/kubernetes v0.0.1 /go.mod h1:nXz0/VH9iY0G3fZo9Dg5suOu6p5lztn8Y+Og3+FJmFU =
344
344
github.com/yuin/goldmark v1.1.25 /go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74 =
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ type Server struct {
19
19
}
20
20
21
21
func NewServer (logger logr.Logger , addr string , authz * auth.Authorizer ) * Server {
22
- router := pkggin .Default (logger )
22
+ router := pkggin .Default (logger , "proxy" )
23
23
router .GET ("/readyz" , readinessHandler )
24
24
router .GET ("/healthz" , livenessHandler )
25
25
router .NoRoute (proxyHandler (authz ))
You can’t perform that action at this time.
0 commit comments