Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for apiservice (0.29 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// APIs may return other objects types at their discretion, such as error conditions, requests for alternate representations, or other operation specific behavior.
    	// This value will be null or empty if an APIService reports subresources but supports no operations on the parent resource
    	ResponseKind *v1.GroupVersionKind `json:"responseKind,omitempty" protobuf:"bytes,2,opt,name=responseKind"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apidiscovery/v2beta1/types.go

    	// APIs may return other objects types at their discretion, such as error conditions, requests for alternate representations, or other operation specific behavior.
    	// This value will be null or empty if an APIService reports subresources but supports no operations on the parent resource
    	ResponseKind *v1.GroupVersionKind `json:"responseKind,omitempty" protobuf:"bytes,2,opt,name=responseKind"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. pkg/apis/apidiscovery/types.go

    	// APIs may return other objects types at their discretion, such as error conditions, requests for alternate representations, or other operation specific behavior.
    	// This value will be null or empty if an APIService reports subresources but supports no operations on the parent resource
    	ResponseKind *v1.GroupVersionKind
    	// scope indicates the scope of a resource, either Cluster or Namespaced
    	Scope ResourceScope
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. prow/config/metrics/metrics.yaml

          priorityClassName: system-cluster-critical
          serviceAccountName: metrics-server
          volumes:
          - emptyDir: {}
            name: tmp-dir
    ---
    apiVersion: apiregistration.k8s.io/v1
    kind: APIService
    metadata:
      labels:
        k8s-app: metrics-server
      name: v1beta1.metrics.k8s.io
    spec:
      group: metrics.k8s.io
      groupPriorityMinimum: 100
      insecureSkipTLSVerify: true
      service:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 20:51:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top