Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for apiServices (0.24 sec)

  1. api/discovery/apis__apiregistration.k8s.io__v1.json

      "groupVersion": "apiregistration.k8s.io/v1",
      "kind": "APIResourceList",
      "resources": [
        {
          "categories": [
            "api-extensions"
          ],
          "kind": "APIService",
          "name": "apiservices",
          "namespaced": false,
          "singularName": "apiservice",
          "storageVersionHash": "InPBPD7+PqM=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 27 19:53:45 UTC 2023
    - 730 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. cluster/addons/metrics-server/metrics-apiservice.yaml

    apiVersion: apiregistration.k8s.io/v1
    kind: APIService
    metadata:
      name: v1beta1.metrics.k8s.io
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      service:
        name: metrics-server
        namespace: kube-system
      group: metrics.k8s.io
      version: v1beta1
      insecureSkipTLSVerify: true
      groupPriorityMinimum: 100
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 18:46:08 UTC 2019
    - 388 bytes
    - Viewed (0)
  4. pkg/controlplane/controller/crdregistration/crdregistration_controller_test.go

    			}
    		})
    	}
    }
    
    type fakeAPIServiceRegistration struct {
    	added   []*apiregistration.APIService
    	removed []string
    }
    
    func (a *fakeAPIServiceRegistration) AddAPIServiceToSync(in *apiregistration.APIService) {
    	a.added = append(a.added, in)
    }
    func (a *fakeAPIServiceRegistration) RemoveAPIServiceToSync(name string) {
    	a.removed = append(a.removed, name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 02 17:48:26 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apimachinery/pkg/api/meta/testrestmapper/test_restmapper.go

    	{Group: "apiserver.k8s.io", Kind: "AdmissionConfiguration"}: true,
    
    	{Group: "audit.k8s.io", Kind: "Event"}:  true,
    	{Group: "audit.k8s.io", Kind: "Policy"}: true,
    
    	{Group: "apiregistration.k8s.io", Kind: "APIService"}: true,
    
    	{Group: "metrics.k8s.io", Kind: "NodeMetrics"}: true,
    
    	{Group: "wardle.example.com", Kind: "Fischer"}: true,
    }
    
    // hardcoded is good enough for the test we're running
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 09:07:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // 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
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind responseKind = 2;
    
      // scope indicates the scope of a resource, either Cluster or Namespaced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top