Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for apiServices (0.61 sec)

  1. CHANGELOG/CHANGELOG-1.16.md

        * Added metrics aggregator_openapi_v2_regeneration_count, aggregator_openapi_v2_regeneration_gauge and apiextension_openapi_v2_regeneration_count metrics counting the triggering APIService and CRDs and the reason (add, update, delete).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.18.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 Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.27.md

    ### Bug or Regression
    
    - Fix OpenAPI v3 not being cleaned up after deleting APIServices ([#120108](https://github.com/kubernetes/kubernetes/pull/120108), [@tnqn](https://github.com/tnqn)) [SIG API Machinery and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    		iName := groups[i].Name
    		jName := groups[j].Name
    
    		// Default to 0 priority by default
    		iPriority := priorities[iName]
    		jPriority := priorities[jName]
    
    		// Sort discovery based on apiservice priority.
    		// Duplicated from staging/src/k8s.io/kube-aggregator/pkg/apis/apiregistration/v1/helpers.go
    		if iPriority == jPriority {
    			// Equal priority uses name to break ties
    			return iName < jName
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/validation/validation.go

    	} else {
    		// this matches the APIService group field validation
    		if len(gv.Group) > 0 {
    			if errs := utilvalidation.IsDNS1123Subdomain(gv.Group); len(errs) > 0 {
    				allErrors = append(allErrors, field.Invalid(fldPath.Child("apiVersion"), gv.Group, strings.Join(errs, ",")))
    			}
    		}
    		// this matches the APIService version field validation
    		if len(gv.Version) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              "group": "apiregistration.k8s.io",
              "kind": "APIService",
              "version": "v1"
            }
          }
        },
        "/apis/apiregistration.k8s.io/v1/apiservices/{name}": {
          "delete": {
            "consumes": [
              "*/*"
            ],
            "description": "delete an APIService",
            "operationId": "deleteApiregistrationV1APIService",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    			}
    		}
    	}
    
    	return allErrs
    }
    
    func validateServiceExternalTrafficFieldsUpdate(before, after *core.Service) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	if apiservice.NeedsHealthCheck(before) && apiservice.NeedsHealthCheck(after) {
    		if after.Spec.HealthCheckNodePort != before.Spec.HealthCheckNodePort {
    			allErrs = append(allErrs, field.Forbidden(field.NewPath("spec", "healthCheckNodePort"), "field is immutable"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  8. CHANGELOG/CHANGELOG-1.12.md

    ## Other Notable Changes
    
    ### SIG API Machinery
    
    - `kubectl get apiservice` now shows the target service and whether the service is available ([#67747](https://github.com/kubernetes/kubernetes/pull/67747), [@smarterclayton](https://github.com/smarterclayton))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.7.md

    * Make logdump support kubemark and support gke with 'use_custom_instance_list' ([#51834](https://github.com/kubernetes/kubernetes/pull/51834), [@shyamjvs](https://github.com/shyamjvs))
    * Fixes an issue with APIService auto-registration affecting rolling HA apiserver restarts that add or remove API groups being served. ([#51921](https://github.com/kubernetes/kubernetes/pull/51921), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.22.md

    There is no mitigation from this issue.  Cluster admins should take care to secure aggregated API servers and should not grant access to mutate `APIService`s to untrusted parties.
    
    **Affected Versions**:
      - kube-apiserver v1.25.0
      - kube-apiserver v1.24.0 - v1.24.4
      - kube-apiserver v1.23.0 - v1.23.10
      - kube-apiserver v1.22.0 - v1.22.14
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
Back to top