mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
Merge pull request #1678 from jsnider-mtu/bug/1668
Bug Fix #1668; Fix API path
This commit is contained in:
commit
0a7f3e091b
2 changed files with 6 additions and 2 deletions
|
@ -127,9 +127,9 @@ func (a *APIPath) String() string {
|
|||
var paths []string
|
||||
if a.Namespace != "" {
|
||||
if a.Name == "" {
|
||||
paths = []string{a.Root, a.Group, a.Version, a.ResourceType, "namespaces", a.Namespace}
|
||||
paths = []string{a.Root, a.Group, a.Version, "namespaces", a.Namespace, a.ResourceType}
|
||||
} else {
|
||||
paths = []string{a.Root, a.Group, a.Version, a.ResourceType, "namespaces", a.Namespace, a.Name}
|
||||
paths = []string{a.Root, a.Group, a.Version, "namespaces", a.Namespace, a.ResourceType, a.Name}
|
||||
}
|
||||
} else {
|
||||
if a.Name != "" {
|
||||
|
|
|
@ -21,4 +21,8 @@ func Test_Paths(t *testing.T) {
|
|||
f("/api/v1/namespace/{{ request.namespace }}/", "/api/v1/namespace/{{ request.namespace }}")
|
||||
f("/api/v1/namespace/{{ request.namespace }}/ ", "/api/v1/namespace/{{ request.namespace }}")
|
||||
f(" /api/v1/namespace/{{ request.namespace }}", "/api/v1/namespace/{{ request.namespace }}")
|
||||
f("/apis/gloo.solo.io/v1/namespaces/gloo-system/upstreams", "/apis/gloo.solo.io/v1/namespaces/gloo-system/upstreams")
|
||||
f("/apis/gloo.solo.io/v1/namespaces/gloo-system/upstreams/", "/apis/gloo.solo.io/v1/namespaces/gloo-system/upstreams")
|
||||
f("/apis/gloo.solo.io/v1/namespaces/gloo-system/upstreams/ ", "/apis/gloo.solo.io/v1/namespaces/gloo-system/upstreams")
|
||||
f(" /apis/gloo.solo.io/v1/namespaces/gloo-system/upstreams", "/apis/gloo.solo.io/v1/namespaces/gloo-system/upstreams")
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue