mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	manually fix openapi-gen
This commit is contained in:
		@@ -20,17 +20,17 @@ import (
 | 
			
		||||
	"bytes"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"reflect"
 | 
			
		||||
	"sort"
 | 
			
		||||
	"strings"
 | 
			
		||||
	"unicode"
 | 
			
		||||
 | 
			
		||||
	"github.com/emicklei/go-restful"
 | 
			
		||||
	restful "github.com/emicklei/go-restful"
 | 
			
		||||
	"github.com/go-openapi/spec"
 | 
			
		||||
 | 
			
		||||
	"k8s.io/apimachinery/pkg/apis/meta/v1"
 | 
			
		||||
	"k8s.io/apimachinery/pkg/runtime"
 | 
			
		||||
	"k8s.io/apimachinery/pkg/runtime/schema"
 | 
			
		||||
	"k8s.io/apiserver/pkg/util/trie"
 | 
			
		||||
	"sort"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
var verbs = trie.New([]string{"get", "log", "read", "replace", "patch", "delete", "deletecollection", "watch", "connect", "proxy", "list", "create", "patch"})
 | 
			
		||||
@@ -139,7 +139,11 @@ func friendlyName(name string) string {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func typeName(t reflect.Type) string {
 | 
			
		||||
	return fmt.Sprintf("%s.%s", t.PkgPath(), t.Name())
 | 
			
		||||
	path := t.PkgPath()
 | 
			
		||||
	if strings.Contains(path, "/vendor/") {
 | 
			
		||||
		path = path[strings.Index(path, "/vendor/")+len("/vendor/"):]
 | 
			
		||||
	}
 | 
			
		||||
	return fmt.Sprintf("%s.%s", path, t.Name())
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// NewDefinitionNamer constructs a new DefinitionNamer to be used to customize OpenAPI spec.
 | 
			
		||||
 
 | 
			
		||||
@@ -24,7 +24,7 @@ import (
 | 
			
		||||
	"reflect"
 | 
			
		||||
	"strings"
 | 
			
		||||
 | 
			
		||||
	"github.com/emicklei/go-restful"
 | 
			
		||||
	restful "github.com/emicklei/go-restful"
 | 
			
		||||
	"github.com/go-openapi/spec"
 | 
			
		||||
 | 
			
		||||
	"k8s.io/apimachinery/pkg/openapi"
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user