Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for acceptedNames (0.47 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    			item = obj.(*apiextensionsv1.CustomResourceDefinition)
    		}
    
    		allResources.Insert(item.Status.AcceptedNames.Plural)
    		allResources.Insert(item.Status.AcceptedNames.Singular)
    		allResources.Insert(item.Status.AcceptedNames.ShortNames...)
    
    		allKinds.Insert(item.Status.AcceptedNames.Kind)
    		allKinds.Insert(item.Status.AcceptedNames.ListKind)
    	}
    
    	return allResources, allKinds
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    			Name:               crd.Status.AcceptedNames.Plural,
    			SingularName:       crd.Status.AcceptedNames.Singular,
    			Namespaced:         crd.Spec.Scope == apiextensionsv1.NamespaceScoped,
    			Kind:               crd.Status.AcceptedNames.Kind,
    			Verbs:              verbs,
    			ShortNames:         crd.Status.AcceptedNames.ShortNames,
    			Categories:         crd.Status.AcceptedNames.Categories,
    			StorageVersionHash: storageVersionHash,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    	crClient, err := c.crClientGetter.GetCustomResourceListerCollectionDeleter(crd)
    	if err != nil {
    		err = fmt.Errorf("unable to find a custom resource client for %s.%s: %v", crd.Status.AcceptedNames.Plural, crd.Spec.Group, err)
    		return apiextensionsv1.CustomResourceDefinitionCondition{
    			Type:    apiextensionsv1.Terminating,
    			Status:  apiextensionsv1.ConditionTrue,
    			Reason:  "InstanceDeletionFailed",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// acceptedNames are the names that are actually being used to serve discovery.
    	// They may be different than the names in spec.
    	// +optional
    	AcceptedNames CustomResourceDefinitionNames `json:"acceptedNames" protobuf:"bytes,2,opt,name=acceptedNames"`
    
    	// storedVersions lists all versions of CustomResources that were ever persisted. Tracking these
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. prow/config/calico.yaml

                          type: string
                      type: object
                    type: array
                type: object
            type: object
        served: true
        storage: true
    status:
      acceptedNames:
        kind: ""
        plural: ""
      conditions: []
      storedVersions: []
    ---
    # Source: calico/templates/kdd-crds.yaml
    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				invalid("spec", "names", "listKind"), // kind == listKind
    				invalid("status", "acceptedNames", "plural"),
    				invalid("status", "acceptedNames", "singular"),
    				invalid("status", "acceptedNames", "kind"),
    				invalid("status", "acceptedNames", "listKind"), // invalid format
    				invalid("status", "acceptedNames", "listKind"), // kind == listKind
    				invalid("spec", "versions"),
    				invalid("spec", "version"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	allErrs := field.ErrorList{}
    	allErrs = append(allErrs, ValidateCustomResourceDefinitionNames(&status.AcceptedNames, fldPath.Child("acceptedNames"))...)
    	return allErrs
    }
    
    // ValidateCustomResourceDefinitionNames statically validates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/gateway-api-crd.yaml

                - ancestors
                type: object
            required:
            - spec
            type: object
        served: true
        storage: true
        subresources:
          status: {}
    status:
      acceptedNames:
        kind: ""
        plural: ""
      conditions: null
      storedVersions: null
    ---
    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    									},
    								},
    							},
    						},
    					},
    					"acceptedNames": {
    						SchemaProps: spec.SchemaProps{
    							Description: "acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec.",
    							Default:     map[string]interface{}{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  10. api/openapi-spec/swagger.json

          "description": "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition",
          "properties": {
            "acceptedNames": {
              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames",
              "description": "acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec."
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top