Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for apiServices (0.3 sec)

  1. pkg/controlplane/apiserver/aggregator.go

    	apiServices := []*v1.APIService{}
    
    	for _, curr := range delegateAPIServer.ListedPaths() {
    		if curr == "/api/v1" {
    			apiService := makeAPIService(schema.GroupVersion{Group: "", Version: "v1"}, apiVersionPriorities)
    			registration.AddAPIServiceToSyncOnStart(apiService)
    			apiServices = append(apiServices, apiService)
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    )
    
    // AutoAPIServiceRegistration is an interface which callers can re-declare locally and properly cast to for
    // adding and removing APIServices
    type AutoAPIServiceRegistration interface {
    	// AddAPIServiceToSync adds an API service to auto-register.
    	AddAPIServiceToSync(in *v1.APIService)
    	// RemoveAPIServiceToSync removes an API service to auto-register.
    	RemoveAPIServiceToSync(name string)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    // by this controller if an associated CRD is deleted.
    func OverlappingBuiltInResources() map[schema.GroupResource]bool {
    	return map[schema.GroupResource]bool{
    		{Group: "apiregistration.k8s.io", Resource: "apiservices"}:             true,
    		{Group: "apiextensions.k8s.io", Resource: "customresourcedefinitions"}: true,
    	}
    }
    
    // CRDFinalizer is a controller that finalizes the CRD by deleting all the CRs associated with it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler_test.go

    			quoted = strconv.Quote(etag)
    		}
    		req.Header.Set("If-None-Match", quoted)
    	}
    
    	handler.ServeHTTP(w, req)
    
    	bytes := w.Body.Bytes()
    	return w.Result(), bytes
    }
    
    // Add all builtin APIServices to the manager and check the output
    func TestBasicResponse(t *testing.T) {
    	manager := discoveryendpoint.NewResourceManager("apis")
    
    	apis := fuzzAPIGroups(1, 3, 10)
    	manager.SetGroups(apis.Items)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. api/discovery/aggregated_v2.json

                    "api-extensions"
                  ],
                  "resource": "apiservices",
                  "responseKind": {
                    "group": "",
                    "kind": "APIService",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "apiservice",
                  "subresources": [
                    {
                      "responseKind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. api/discovery/aggregated_v2beta1.json

                    "api-extensions"
                  ],
                  "resource": "apiservices",
                  "responseKind": {
                    "group": "",
                    "kind": "APIService",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "apiservice",
                  "subresources": [
                    {
                      "responseKind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

            "x-kubernetes-group-version-kind": {
              "group": "apiregistration.k8s.io",
              "kind": "APIService",
              "version": "v1"
            }
          }
        },
        "/apis/apiregistration.k8s.io/v1/apiservices/{name}": {
          "delete": {
            "description": "delete an APIService",
            "operationId": "deleteApiregistrationV1APIService",
            "parameters": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.29.md

    - Fixed OpenAPI v3 not being cleaned up after deleting `APIServices`. ([#120108](https://github.com/kubernetes/kubernetes/pull/120108), [@tnqn](https://github.com/tnqn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    - OpenAPI V2 will no longer publish aggregated API server OpenAPI for group versions that do not match the APIService specified group version. ([#123570](https://github.com/kubernetes/kubernetes/pull/123570), [@Jefftree](https://github.com/Jefftree))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. pkg/proxy/serviceport.go

    }
    
    func newBaseServiceInfo(service *v1.Service, ipFamily v1.IPFamily, port *v1.ServicePort) *BaseServicePortInfo {
    	externalPolicyLocal := apiservice.ExternalPolicyLocal(service)
    	internalPolicyLocal := apiservice.InternalPolicyLocal(service)
    
    	var stickyMaxAgeSeconds int
    	if service.Spec.SessionAffinity == v1.ServiceAffinityClientIP {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top