File tree 1 file changed +5
-0
lines changed
pkg/cmd/server/kubernetes
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -429,9 +429,14 @@ func DefaultOpenAPIConfig() *openapicommon.Config {
429
429
op := r .Operation
430
430
path := r .Path
431
431
//TODO/REBASE this is gross
432
+ // +1
432
433
if strings .HasPrefix (path , "/oapi/v1/namespaces/{namespace}/processedtemplates" ) {
433
434
op = "createNamespacedProcessedTemplate"
435
+ } else if strings .HasPrefix (path , "/apis/template.openshift.io/v1/namespaces/{namespace}/processedtemplates" ) {
436
+ op = "createNamespacedProcessedTemplateV1"
434
437
} else if strings .HasPrefix (path , "/oapi/v1/processedtemplates" ) {
438
+ op = "createProcessedTemplateForAllNamespacesV1"
439
+ } else if strings .HasPrefix (path , "/apis/template.openshift.io/v1/processedtemplates" ) {
435
440
op = "createProcessedTemplateForAllNamespaces"
436
441
} else if strings .HasPrefix (path , "/oapi/v1/namespaces/{namespace}/generatedeploymentconfigs" ) {
437
442
op = "generateNamespacedDeploymentConfig"
You can’t perform that action at this time.
0 commit comments