Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for CRD (0.31 sec)

  1. pkg/kube/kclient/clienttest/crd.go

    	if !ok {
    		return
    	}
    	fmg := fmc.Resource(gvr.CustomResourceDefinition)
    	fmd, ok := fmg.(metadatafake.MetadataClient)
    	if !ok {
    		return
    	}
    	obj := &metav1.PartialObjectMetadata{
    		TypeMeta:   crd.TypeMeta,
    		ObjectMeta: crd.ObjectMeta,
    	}
    	if _, err := fmd.CreateFake(obj, metav1.CreateOptions{}); err != nil {
    		if kerrors.IsAlreadyExists(err) {
    			_, err = fmd.UpdateFake(obj, metav1.UpdateOptions{})
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

    Istio Automation <******@****.***> 1717709502 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  3. manifests/charts/base/crds/crd-all.gen.yaml

    Istio Automation <******@****.***> 1717709502 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/gateway-api-crd.yaml

    # Generated with `kubectl kustomize "https://github.com/kubernetes-sigs/gateway-api/config/crd/experimental?ref=v1.1.0"`
    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      annotations:
        api-approved.kubernetes.io: https://github.com/kubernetes-sigs/gateway-api/pull/2997
        gateway.networking.k8s.io/bundle-version: v1.1.0
        gateway.networking.k8s.io/channel: experimental
      creationTimestamp: null
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/deployment/proxy-config-crd.yaml

    Ben Leggett <******@****.***> 1714764582 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller.go

    }
    
    func (s *specCache) update(crd *apiextensionsv1.CustomResourceDefinition) {
    	s.crdCache.Store(cached.Static(crd, generateCRDHash(crd)))
    }
    
    func createSpecCache(crd *apiextensionsv1.CustomResourceDefinition) *specCache {
    	s := specCache{}
    	s.update(crd)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    	if OverlappingBuiltInResources()[schema.GroupResource{Group: crd.Spec.Group, Resource: crd.Spec.Names.Plural}] {
    		// Skip deletion, explain why, and proceed to remove the finalizer and delete the CRD
    		apiextensionshelpers.SetCRDCondition(crd, apiextensionsv1.CustomResourceDefinitionCondition{
    			Type:    apiextensionsv1.Terminating,
    			Status:  apiextensionsv1.ConditionFalse,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. 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,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. pkg/kube/kclient/crdwatcher.go

    // The user may have opted into using an experimental CRD, but not to experimental usage *in Istio* so this isn't acceptable.
    func minimumVersionFilter(t any) bool {
    	// Setup a filter
    	crd := t.(*metav1.PartialObjectMetadata)
    	mv, f := minimumCRDVersions[crd.Name]
    	if !f {
    		return true
    	}
    	bv, f := crd.Annotations[consts.BundleVersionAnnotation]
    	if !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. bin/update_crds.sh

    fi
    
    echo "# Generated with \`kubectl kustomize \"https://github.com/kubernetes-sigs/gateway-api/config/crd/experimental?ref=${GATEWAY_VERSION}\"\`" > "${API_TMP}/gateway-api-crd.yaml"
    if ! kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd/experimental?ref=${GATEWAY_VERSION}" >> "${API_TMP}/gateway-api-crd.yaml"; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 14:28:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top