Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for apiServices (0.24 sec)

  1. 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)
  2. CHANGELOG/CHANGELOG-1.20.md

    - Introduce api-extensions category which will return: mutating admission configs, validating admission configs, CRDs and APIServices when used in kubectl get, for example. ([#95603](https://github.com/kubernetes/kubernetes/pull/95603), [@soltysh](https://github.com/soltysh)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  3. 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)
  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. 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)
  6. CHANGELOG/CHANGELOG-1.19.md

    - Fixed a bug where aggregator_unavailable_apiservice metrics were reported for deleted apiservices. ([#96421](https://github.com/kubernetes/kubernetes/pull/96421), [@dgrisonnet](https://github.com/dgrisonnet)) [SIG API Machinery and Instrumentation]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.9.md

    * The garbage collector now supports CustomResourceDefinitions and APIServices. ([#65918](https://github.com/kubernetes/kubernetes/pull/65918), [@nikhita](https://github.com/nikhita))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top