Skip to content

Commit 9ea3690

Browse files
authored
Add suport for repositories with url encoded characters (#50)
1 parent 56da793 commit 9ea3690

File tree

4 files changed

+31
-193
lines changed

4 files changed

+31
-193
lines changed

e2e/git-auth-proxy-values.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ config: |
1717
"name": "repo",
1818
"project": "proj",
1919
"namespaces": ["tenant-1", "tenant-2"]
20+
},
21+
{
22+
"name": "repo%20space",
23+
"project": "proj",
24+
"namespaces": ["tenant-1", "tenant-2"],
25+
"secretNameOverride": "foobar"
2026
}
2127
]
2228
}

go.mod

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,9 @@ require (
2323
)
2424

2525
require (
26-
github.com/PuerkitoBio/purell v1.1.1 // indirect
27-
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
2826
github.com/beorn7/perks v1.0.1 // indirect
2927
github.com/cespare/xxhash/v2 v2.1.2 // indirect
3028
github.com/davecgh/go-spew v1.1.1 // indirect
31-
github.com/emicklei/go-restful v2.15.0+incompatible // indirect
3229
github.com/emicklei/go-restful/v3 v3.8.0 // indirect
3330
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
3431
github.com/go-openapi/jsonpointer v0.19.5 // indirect
@@ -41,20 +38,16 @@ require (
4138
github.com/golang/protobuf v1.5.2 // indirect
4239
github.com/google/gnostic v0.6.9 // indirect
4340
github.com/google/go-cmp v0.5.8 // indirect
44-
github.com/google/go-github/v39 v39.2.0 // indirect
4541
github.com/google/go-github/v41 v41.0.0 // indirect
4642
github.com/google/go-querystring v1.1.0 // indirect
4743
github.com/google/gofuzz v1.2.0 // indirect
48-
github.com/googleapis/gnostic v0.5.5 // indirect
4944
github.com/josharian/intern v1.0.0 // indirect
5045
github.com/json-iterator/go v1.1.12 // indirect
5146
github.com/leodido/go-urn v1.2.1 // indirect
5247
github.com/mailru/easyjson v0.7.7 // indirect
5348
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5449
github.com/modern-go/reflect2 v1.0.2 // indirect
5550
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
56-
github.com/onsi/ginkgo v1.14.1 // indirect
57-
github.com/onsi/gomega v1.19.0 // indirect
5851
github.com/pkg/errors v0.9.1 // indirect
5952
github.com/pmezard/go-difflib v1.0.0 // indirect
6053
github.com/prometheus/client_model v0.2.0 // indirect

0 commit comments

Comments
 (0)