Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ForAllNamespaces (0.27 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    	root := fmt.Sprintf("/apis/%s/%s/%s", b.group, b.version, b.plural)
    
    	if b.namespaced {
    		routes = append(routes, b.buildRoute(root, "", "GET", "list", "list", sampleList).Operation("list"+b.kind+"ForAllNamespaces"))
    		root = fmt.Sprintf("/apis/%s/%s/namespaces/{namespace}/%s", b.group, b.version, b.plural)
    	}
    	routes = append(routes, b.buildRoute(root, "", "GET", "list", "list", sampleList))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		}
    		if strings.Contains(action.Path, "/{name}") || action.Verb == "POST" {
    			requestScope = "resource"
    		}
    		if action.AllNamespaces {
    			requestScope = "cluster"
    			operationSuffix = operationSuffix + "ForAllNamespaces"
    			namespaced = ""
    		}
    
    		if kubeVerb, found := toDiscoveryKubeVerb[action.Verb]; found {
    			if len(kubeVerb) != 0 {
    				kubeVerbs[kubeVerb] = struct{}{}
    			}
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top