Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for openapi_v2 (0.24 sec)

  1. CHANGELOG/CHANGELOG-1.27.md

    - Switched kubectl explain to use OpenAPIV3 information published by the server. OpenAPIV2 backend can  still be used with the `--output plaintext-openapiv2` argument ([#116390](https://github.com/kubernetes/kubernetes/pull/116390), [@alexzielenski](https://github.com/alexzielenski)) [SIG API Machinery, CLI 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)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    					costErrorMsg := fmt.Sprintf("contributed to estimated rule cost total exceeding cost limit for entire OpenAPIv3 schema")
    					allErrs = append(allErrs, field.Forbidden(expensive.Path, costErrorMsg))
    				}
    
    				costErrorMsg := getCostErrorMessage("x-kubernetes-validations estimated rule cost total for entire OpenAPIv3 schema", celContext.TotalCost.Total, StaticEstimatedCRDCostLimit)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	if s.openAPIV3Config == nil {
    		// SSA is GA and requires OpenAPI config to be set
    		// to create models.
    		return nil, errors.New("OpenAPIV3 config must not be nil")
    	}
    	pathsToIgnore := openapiutil.NewTrie(s.openAPIV3Config.IgnorePrefixes)
    	resourceNames := make([]string, 0)
    	for _, apiGroupInfo := range apiGroupInfos {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				// total limit is exceeded
    				forbidden("spec.validation.openAPIV3Schema"),
    			},
    		},
    		{
    			name: "skip CEL expression validation when OpenAPIv3 schema is an invalid structural schema",
    			opts: validationOptions{requireStructuralSchema: true},
    			input: apiextensions.CustomResourceValidation{
    				OpenAPIV3Schema: &apiextensions.JSONSchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    	"k8s.io/apiserver/pkg/warning"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    )
    
    // TestValidationExpressions tests CEL integration with custom resource values and OpenAPIv3.
    func TestValidationExpressions(t *testing.T) {
    	tests := []struct {
    		name          string
    		schema        *schema.Structural
    		oldSchema     *schema.Structural
    		obj           interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    - Removed `GA`ed feature gate `TopologyManager`. ([#121252](https://github.com/kubernetes/kubernetes/pull/121252), [@tukwila](https://github.com/tukwila))
    - Removed `GA`ed feature gates `OpenAPIV3`. ([#121255](https://github.com/kubernetes/kubernetes/pull/121255), [@tukwila](https://github.com/tukwila))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top